You are not logged in.

Search results

Search results 141-160 of 325.

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.

Friday, July 19th 2013, 8:44pm

Author: Dani

Listbox (Checkbox)

Hey there, I tried with Jabaco200910070500.jar from http://www.jabaco.org/framework.html and Jabaco200910010500.jar The earlier version works fine! So somewhere around rev49, rev50 or rev51 of the framework something has been changed that affects the ListBox CheckBox!! Dani

Thursday, July 18th 2013, 9:40pm

Author: Dani

JbGrid Issues

Hey there, you are right Jabaco returns different values: 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 Dim Ret As Single Ret = Int(5 / 7) Debug.Print Ret ' JB 1.0 VB 0 Ret = Fix(5 / 7) Debug.Print Ret ' JB 0.0 VB 0 Dim Ret1 As Integer Ret1 = 5 / 7 Debug.Print Ret1 ' JB 0 VB 1 Dim MyNumber As Integer MyNumber = Int(99.8) ' JB 100 VB 99 Debug.Print MyNumber MyNumber = Fix(99.8) ' JB 99 VB 99 Debug.Print MyNumber MyNumber = Int(-99.8) ' JB -100 VB -100...

Thursday, July 18th 2013, 9:13am

Author: Dani

example of insert, delete, update with jabaco please

Hey there, see here: http://www.jabaco.org/board/p3663-databa…e.html#post3663

Thursday, July 18th 2013, 9:13am

Author: Dani

Database sample App - SELECT / INSERT / UPDATE / DELETE

to connect to a mysql database use something like this: Source code 1 2 java#lang#Class.forName("com.mysql.jdbc.Driver") conn = DriverManager.getConnection("jdbc:mysql://localhost/database", "username", "password") should work I have not tested it!!

Thursday, July 18th 2013, 9:11am

Author: Dani

Database sample App - SELECT / INSERT / UPDATE / DELETE

I have provided a full database sample app in the German section of this forum: Vorstellung Desi / Bauteildatenbank / das Jabaco-Projekt Since not everybody will find it there I am posting it here again! It is just a H2 database with a little GUI wrapped around it. Most of the code will be the same for using a different database like mysql sqlite access ... index.php?page=Attachment&attachmentID=360 H2ArtikelDB.zip It demonstrates how to connect to a database and the main methods: - SELECT - INP...

Wednesday, July 17th 2013, 9:45pm

Author: Dani

JbGrid Issues

Oh, and be sure to backup your existing Jabaco.jar!!!!!!!

Wednesday, July 17th 2013, 9:44pm

Author: Dani

JbGrid Issues

Hey there, I think you are not using the latest Jabaco-rev105.jar I fixed this issue awhile ago You can download the latest Framework .jar file here: https://code.google.com/p/jbaindi/downloads/list it is provided by theuserbl! Just rename it to Jabaco.jar and replace the existing Jabaco.jar in your Jabaco installation path. If you want to read more about compiling your own read here: http://www.jabaco.org/board/p3440-how-to…k.html#post3440 for testing use this code: Jabaco Source 1 2 3 4 5 6 7 ...

Tuesday, June 25th 2013, 10:04am

Author: Dani

Split Screen in IDE - I am an optimist

Hey there, I am missing the split screen ability of VB's editor window. So for the next version I would love to have that. [img]http://www.jabaco.org/board/index.php?page=Attachment&attachmentID=354&h=58c365b8e62e81b9c33a2682cc3eb36d5e388e58[/img] I am an optimist! Thanks Manuel, Dani index.php?page=Attachment&attachmentID=354 EDIT: There is an image button on the forums message editor .. how do I add an image to my post? Whats the url?

Friday, June 21st 2013, 9:08pm

Author: Dani

Val function incompatible with VB6

Hey there theuserbl, it has been a while... Quoted I don't think, that such an localization makes sense. I agree and I wasn't aware that Jabaco Source 1 CDbl("123.04") ' VB = 12304 / JB = 123.04 is a localisation, so thanks for letting me know. Actually I am not after ther localization I just wanted to point out the differences of Jabacos' conversion functions compared to VB. I like the Jabaco implementation better in this case. We are always after compatibility though especially when porting a ...

Friday, June 21st 2013, 10:50am

Author: Dani

Val function incompatible with VB6

Hey there, well I guess this still has not been taken care of... 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 Public Sub Form_Load() cdblWert CDbl("123,04") ' VB = 123,04 / JB = 0.0 cdblWert CDbl(123.04) ' VB = 123,04 / JB = 123.04 cdblWert CDbl("123.04") ' VB = 12304 / JB = 123.04 cintWert CInt("123,04") ' VB = 123 / JB = 0 cintWert CInt(123.6) ' VB = 124 / JB = 124 cintWert CInt("123.04") ' VB = 12304 / JB = 123 clngWert CLng("123,04") ' VB ...

Tuesday, March 19th 2013, 9:13am

Author: Dani

Not clear on how to execute a compile Jabaco program

...for the common Java / VB User Controls and Functions, Yes! The Jabaco compiler does the real VB => Java syntax mapping.

Monday, March 18th 2013, 6:25pm

Author: Dani

Not clear on how to execute a compile Jabaco program

how to compile the framework ... http://www.jabaco.org/board/p3440-how-to…k.html#post3440

Monday, March 18th 2013, 6:13pm

Author: Dani

Not clear on how to execute a compile Jabaco program

Hey there, http://www.jabaco.org/wiki/Jabaco_Framework The Framework is a softwarewrapper that provides a Visual Basic like syntax for Java components and functions. It is a layer between Java and Jabaco! The Jabaco Usercontrols and Functions are provided by the Framework. Have a look at the Framework source, you will find many solutions for standard programming tasks and it will open your eyes about Jabaco... https://code.google.com/p/jabacoframework/source/browse/# Dani PS: The Framework is op...

Monday, March 18th 2013, 2:57pm

Author: Dani

Not clear on how to execute a compile Jabaco program

Hey there, in the Jabaco Ide to compile your app to a .jar file you have to open the File menu and hit MakeProject. A dialog will open where you have to choose the destination path and whether you want to compile to an .exe or a .jar Remember this location and you will find your compiled programm there! The .class files you mentioned are probably temporary files Jabaco creates while compiling, I am not sure. About the Framework files: You will find many threads about that in this forum! You can ...

Thursday, March 7th 2013, 11:05am

Author: Dani

Retrieving Website HTML

Hey there, I found this somewhere on the board... 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 Option Explicit 'Import java#io Private Sub Command1_Click() Dim a As String Dim b As java#net#URL Dim conn As java#net#URLConnection Dim c As java#io#InputStream Dim d As java#io#InputStreamReader Dim e As java#io#BufferedReader Dim f(1000) As String Dim n As Integer Dim outputStream As New java#io#BufferedWriter(New java#io#FileWriter("C:\tempfile.txt...

Friday, February 15th 2013, 12:40pm

Author: Dani

JBGrid - .Parent.print()

Hey there theuserbl, Quoted ... class NewTablePrintable extends TablePrintable ... OK so I would have to write a Java SubClass to avoid the doublicate names of the Imported class.files in Jabaco! Quoted OOPJava.pdf sehr schöner Aufsatz... That is pretty much what the whole Jabaco Framework is about! Thanks for helping, Dani

Friday, February 15th 2013, 8:42am

Author: Dani

JBGrid - .Parent.print()

Hey there theuserbl, as I wrote above in this thread, this is all I changed in the class Quoted g2d.drawRect(0, 0, clip.width, hclip.height + clip.height); BUT: I had to change all the Imports because otherwise Jabaco would throw errors on TablePrintable because it would only refer to Quoted javax#swing#TablePrintable and not to my own Quoted #TablePrintable ...so if you have a Project with bot classes Jabaco throws Errors! So I had to be more specific with the Import section of the new version ...

Wednesday, February 13th 2013, 2:23pm

Author: Dani

JBGrid - .Parent.print()

Hmm, I have just tested putting the TablePrintable.class file in a .jar file and importing that to my Project. The problem is that Jabaco also automatically imports: Jabaco Source 1 javax#swing#TablePrintable so I have both referenced to my Project now and Jabaco Source 1 2 3 4 5 6 7 Public Function getPrintable(ByVal printMode As javax#swing#JTable$PrintMode, _ ByVal headerFormat As MessageFormat, _ ByVal footerFormat As MessageFormat) As java#awt#print#Printable Debug.Print "override getPrinta...

Wednesday, February 13th 2013, 10:36am

Author: Dani

Imported .class file does not load when reopening Jabaco

Hey there, thats very valueable information THANKS

Wednesday, February 13th 2013, 10:33am

Author: Dani

JBGrid - .Parent.print()

Hi, I have Java 1.7.0_03, so thanks a lot. Makes me a bit more independent Quoted It is everytime better to use the full path. then you are on the safe side. More than ever, if the class name existing more then one time. ... Don't know, what you mean. That is exactly what I meant... I don't know how to use the full path to my TablePrintable.class file in my programs' directory. I thought this would refer to my Projects Path, how else would I refer to the full path? Jabaco Source 1 Import #TableP...

WoltLab Burning Board