You are not logged in.

Search results

Search results 61-80 of 436.

Dear visitor, welcome to Jabaco - Community. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Tuesday, March 18th 2014, 12:45pm

Author: theuserbl

How to set my language in order to read?

Quoted from "jbExplorer" But I'm still confused, as to how your source is actually displaying unicode characters. It doesn't. I have only written the source in the webbrowser as comment. I have also seen, that all characters of thai are replaced with "?". But I thought at this time, that I haven't the right font installed and thai-people, who have the font installed, could see it. Since this thread I know, that the font is installed on my computer, too. But Jabaco have not on all parts support ...

Monday, March 17th 2014, 11:38am

Author: theuserbl

How to set my language in order to read?

Quoted from "Theera" "Translate Jabaco into yout native langauge" it helps me to change only userinterface,but can't helps this problem. However,I have translated some my native language(still not finished). If you have all translated, please upload it, so that it can be uploaded to svn, so that other users in thailand, could using the language-filke, too. Quoted from "Theera" My problem is not about how to coding for translation,but it 's about Jabaco directly. Why doesn't it display Thai char...

Sunday, March 16th 2014, 10:12pm

Author: theuserbl

How to set my language in order to read?

Quoted from "jbExplorer" I'm having a similar problem, displaying characters in the ide, and can't figure out how theuserbl did it. I haven't done it. I have only written the "happy holidays"-code in the forum with the help of the google-translater, in the hope, that it will work in Jabaco. The reason, why the menu of Jabaco supports unicode and the textarea of Jabaco not, is which components they are. Jabaco 1.5.2 is written in VisualBasic 6 with some external DLLs, which are written in Visual...

Sunday, March 9th 2014, 12:04pm

Author: theuserbl

How to get rid of this problem

Quoted from "Theera" I've test the sample project which attached with Jabaco(Fractal.jba). I have error code about End Command. Thats correct. The Fractal-program was written for Jabaco 1.4.0. But in the time to version 1.5.2 the compiler changed a little bit, so that an "End" alone, no longer works. Problem is, that the compiler have to find out between "End" (the function), "End Sub", "End Function", "End If", "End Select", etc. But with "End" in the Fractal-Example is meant the function "End...

Thursday, February 13th 2014, 5:20pm

Author: theuserbl

Something is happening

Here you can see the differences: A forum post in the forum of 2009: [ http://web.archive.org/web/2009043020151…8-inputbox.html ] The same in 2012 (and for example two days ago): [ http://web.archive.org/web/2012070711555…8-inputbox.html ] And how it looks now: [ www.jabaco.org/board/108-inputbox.html ] Greatings theuserbl

Thursday, February 13th 2014, 3:42pm

Author: theuserbl

Something is happening

Something is happening. There is some activity of Manuel. Ok, the last Jabaco version is still from 2009. But possible it will be changed the next time. Yesterday (and possible today, too) he have updated the software of this forum. Do you have recognized it? Look at the user-profile of any member. There are some changes there. And now you can easily navigate to your favorites and so. And in the forum the thread-opener of every thread is marked with a star: The changes are small. But they are im...

Monday, February 3rd 2014, 12:16am

Author: theuserbl

Me.Controls - Collection

Nice. Quoted For some reason for ComboBox and Slider Control names are not being retrieved. They are accessible though! I don't know why. Because toString() gives out, what is in the toString() function defined and not what the name of the object is. But the function have to output a good description, because that is, what is expected, if toString() is called. For CommandButton it is this one: [ http://code.google.com/p/jabacoframework…svn128&r=90#114 ] and for ComboBox it is this one: [ http://...

Saturday, January 25th 2014, 2:29am

Author: theuserbl

RE: RE: Framework Update - ComboBox / ListBox .AddItem Speed improvement and new features

Quoted from "theuserbl" Google sees Google Drive as follower of it. But as you can see, it is not possible to download it there direct, by posting a direct link. So I am still searching for a new place for hosting the binary files.... Done. Have found a new home for the binaries at Bitbucked. At [ http://www.jabaco.org/wiki/Latest_JabacoFramework_Binary ] it links direct to it. Before that it looks like [ http://www.jabaco.org/w/index.php?title=…inary&oldid=372 ] Greatings theuserbl

Saturday, January 25th 2014, 2:01am

Author: theuserbl

RE: Framework Update - ComboBox / ListBox .AddItem Speed improvement and new features

Quoted from "Dani" for testing: Very nice. Quoted Jabaco Source 1 2 3 Public Sub Command1_Click() Call ComboBox.DropDown() End Sub You have forgotten the "1". This will work correct. : Jabaco Source 1 2 3 Public Sub Command1_Click() Call ComboBox1.DropDown() End Sub Quoted I am pretty sure theuserbl will provide a compiled Jabaco.jar as soon as he has got the time to do so! Done. But as I have mentioned at [ http://www.jabaco.org/board/p3735-listbo…x.html#post3735 ] it is no longer possible to ...

Sunday, January 12th 2014, 4:51pm

Author: theuserbl

h2 database - DATABASE_EVENT_LISTENER

Das Problem ist wieder einmal die Form_Load()-Methode. Mach es mit einem Button und es geht: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 1...

Sunday, January 12th 2014, 3:53am

Author: theuserbl

h2 database - DATABASE_EVENT_LISTENER

Ok, hier ist das Programm nun vollständig zu Jabaco portiert: Module1: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 ' This method is called when executing this sample application from the ' command line. ' ' @param args the command line parameters Public Sub main(ByJava args() As String) Dim myArgs() As String myArgs = args ' [Your Source] Dim c As New Class1 c.test End Sub Und das KlassenModul Class1: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 ...

Saturday, January 11th 2014, 7:57pm

Author: theuserbl

h2 database - DATABASE_EVENT_LISTENER

Hi! Habe bisher nur ein Teil des Programms, das Du von http://code.google.com/p/h2database/sour…ess.java?r=4647 hast portiert: Module1: Jabaco Source 1 2 3 4 5 6 7 8 9 Public Sub main(ByJava args() As String) Dim myArgs() As String myArgs = args ' [Your Source] Dim c As New Class1 c.test End Sub Klassendatei Class1: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 ...

Friday, January 3rd 2014, 8:46pm

Author: theuserbl

Using External Jars without including them in the Jabaco project

More information about JarClassLoader: Seems that the unloadClass()-method don't work correct. But possible that it depends on the ClassLoader itself, which JarClassLoader is based on. I have now read in the internet and as answer from the author of JarClassLoader, that changing a class in one JCL-instance is not possible. What I mean with it: For example, you have three external jar-files: - mygui-1.2.jar - mynet-0.4.jar - mydb-1.1.jar All jars are loaded with JarClassLoader (or if you doing it...

Friday, January 3rd 2014, 2:26am

Author: theuserbl

Using External Jars without including them in the Jabaco project

Quoted from "jbExplorer" Thanks for removing the log requirements, will give it a try. I have now added a compiled version of JCL version2 from github. It is at the beginning without the logging, but on the other side, it is itself a lot of bigger. On github stands, that version 2 is faster, have more functions and so on. So, here is version 2. The jar-file in the the zip-file, because it is not possible to upload a jar-file in this forum. Greatings theuserbl

Thursday, January 2nd 2014, 10:59pm

Author: theuserbl

Using External Jars without including them in the Jabaco project

Ok, it is really normal reflection. Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 Public Sub main(ByJava args() As String) Dim myArgs() As String Dim jclWhatThe As JarClassLoader Dim oWhatThe As Object myArgs = args System.out.println( "Here we go..." ) System.out.println( "Creating instance of JarClassLoader" ) jclWhatThe = New JarClassLoader() System.out.println( "Adding the jar" ) jclWhatThe.add( "WhattheWorld.jar" ) System.out.println...

Thursday, January 2nd 2014, 10:13pm

Author: theuserbl

Using External Jars without including them in the Jabaco project

Here jcl without logger. in JclWithoutLogger.zip are three files - JclMod.jar (like the original jcl.jar, but without debug output and so without Apache Logger) - JclModDebug.jar (like the original jcl.jar, without Apache Logger) - JclModSrc.jar (the source of JclModDebug.jar. JclMod.jar have the same source, only public static boolean DEBUG is in all calsses set to false) So, the big logger, isnt needed. Greatings theuserbl

Thursday, January 2nd 2014, 4:42pm

Author: theuserbl

Using External Jars without including them in the Jabaco project

Great. It is fantastic! Thanks for the link. It is a small nice library, where the jar-file isn't too big with 17'311 bytes. But it makes use of log4j which is in version 1.2.17 a 489'883 byte jar-file Seems that the logging part have to be removed from jcl. Currently I am looking, how your example program can be used for reflection: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 Public Sub main(ByJava args() As String...

Tuesday, December 31st 2013, 4:10am

Author: theuserbl

Happy New Year 2014!

Happy New Year 2014! And again I want to come up, with a new statistic. Again, it is a little bit before 2014, but there will be not changing much in the last hours. The date of registration and the number of people who registred in this date: 2008: 59 ( 2%) 2009: 653 (22%) 2010: 617 (21%) 2011: 444 (15%) 2012: 325 (11%) 2013: 830 (28%) You wonder, that in this year comming so much new member? I wondered, too. Have a look at the added JabacoStats.pdf. There are the number of new registered perso...

Friday, December 13th 2013, 1:57am

Author: theuserbl

Detect Operating System

Quoted from "Tegwin15" Yes I saw that article thank you but the syntax is very different.. I need the syntax for VB not Java Here is a port of the program, to which Dani linked to: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 Private OS As String = LCase(System.getProperty("os.name")) Public Sub Command1_Click() Dim s As String s = OS + vbNewLine If isWindows() Then s = s + "This is Windows" Elseif isMac() The...

Sunday, December 8th 2013, 4:49pm

Author: theuserbl

JBGrid / Spinner - Update - with SpinnerModels

Binary of the updated Framework is uploaded: [ http://www.jabaco.org/wiki/Latest_JabacoFramework_Binary ] Greatings theuserbl

WoltLab Burning Board