You are not logged in.

Search results

Search results 1-20 of 325.

Tuesday, September 12th 2017, 3:37pm

Author: Dani

Jabaco as portable app

see also here: ### HowTo - virtualize portable Jabaco with integrated Java - runs independendly from you systems Java ###

Tuesday, September 12th 2017, 3:36pm

Author: Dani

Jabaco doesn't work anymore with Java 8 version 60

see also here: ### HowTo - virtualize portable Jabaco with integrated Java - runs independendly from you systems Java ###

Tuesday, September 12th 2017, 3:33pm

Author: Dani

### HowTo - virtualize portable Jabaco with integrated Java - runs independendly from systems Java ###

Hey there, since Jabaco does not run on systems with up to date Java I picked up the idea of using cameyo to virtualize Jabaco. I took it a bit further and integrated Java 7u79 into the cameyo package. Since I granted full system access I did not encounter any limitations running the virtualized Jabaco/Java package. The resulting file is about 115 MB and deflates to HD on startup. It does contain your Jabaco license. It smoothly runs aside Java 8 on my machine. It is portable ;-) Tested on Windo...

Monday, December 26th 2016, 7:15pm

Author: Dani

Single Array Returning Double

Hey there, I don't know if it is intentionally meant or a mistake, but I found this in the VBA tree of the framework: svn\Framework\src\VBA\VBArray.java Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 ... public static VBArraySingle createVBArray(float[] val) throws Exception { return (new VBArray(val)); } ... public VBArray(float[] val) throws Exception { setBound(0, val.length-1, false); for (int i = 0; i <= val.length-1; i++) setValueDbl(i, val[i]); } ... public void setValueDbl(int Index, doubl...

Wednesday, July 27th 2016, 2:37pm

Author: Dani

Click() or DblClick() event not fired on some controls

Hey there, There are bugs concerning MouseEvents in the Jabaco framework: Some controls that allow scrolling to an invisible area (it is going to be visible once you scroll there obviously) do not fire the Click() or DblClick() event within this range! Therefore in all these controls of the Jabaco framework all occurances of: If (e.getX > 0 And e.getY > 0 And e.getX < Me.getWidth And e.getY < Me.getHeight) Then must be replaced with: If (e.getX > 0 And e.getY > 0 And e.getX < Me.Parent.getBounds...

Tuesday, December 1st 2015, 2:36pm

Author: Dani

connect to SQLite db file

Hey there, to use the above sample App with a SQLite database have a look at the following codesample. It uses the Xerial SQLite JDBC Driver. ... 'SQLite JDBC is a library for accessing SQLite databases through the JDBC API.' ... 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 Option Explicit 'Add sqlite-jdbc-3.8.11.2.jar to your Java instalation or class path... 'e.g.: 'C:\Program Files\Java\jre7\Lib\ext\sqlite-jdbc-3....

Friday, November 20th 2015, 6:28pm

Author: Dani

Database Apps With Jabaco

Hey there, how about using the search ability of this forum ... @EDIT: sorry linking to searchresults does not work! On the toplevel community page enter 'database' into the searchfield ... reveals about 172 hits! You will find a lot of advice about Jabaco and databases in this forum. and you allready got an answer here ... Datbase apps with SQlite ? So what precisely do you want to know? Dani

Sunday, October 18th 2015, 7:55pm

Author: Dani

Jabaco Framework-Code at Google Code is now read only!

Hey there, Jabaco Framework-Code at Google Code is now read only! https://code.google.com/p/support/wiki/ReadOnlyTransition https://code.google.com/p/jabacoframework/source/browse/ Dani

Sunday, October 18th 2015, 7:47pm

Author: Dani

Jabaco doesn't work anymore with Java 8 version 60

Quoted from "maurizio1946" I have now to stop working with jabaco also because it is impossible (Oracle statement) to come bck to Java 7 Hey there, on Win7 I have successfully uninstalled Java 8 and reinstalled Java 7u79. Jabaco runs fine after that! Dani

Thursday, October 1st 2015, 12:24pm

Author: Dani

Just Like Microsoft

Quoted from "maurizio1946" I see here about 3.000 Jabaco fans, let imagine 50% of them are willing to help you i.e. with € 100 each, which means about € 150.000 for your company to continue Jabaco developemnt and support. I'm in ...!

Wednesday, September 30th 2015, 7:56pm

Author: Dani

JBGrid - Update

Hey there, Quoted JBGrid1.FontName = "Tahoma" works fine for me... index.php?page=Attachment&attachmentID=462 Are you using the latest Jabaco.jar? I tested with 152! Have a look at the footer... Dani

Friday, February 6th 2015, 10:06am

Author: Dani

Picturebox

Hey there, got a private message today about the Jabaco Picturebox. Since it was a forewarded and not logged in message I don't have any other way to answer anonymously but to use the forum! People, please use the forum to ask questions that may be of value to others! @ cristian....@...oo.com.br Are you using the latest Jabaco.jar ? Find more about that in the forum... Here is a snippet of how to load a picture in the Picturebox: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 O...

Wednesday, October 22nd 2014, 11:27am

Author: Dani

H2 Database /tcpServer / Java array

Hey there, I am trying to set up a tcpServer from within a Jabaco App to remotely connect to a database file. Here is the Java code: Source code 1 2 3 4 5 6 7 8 9 10 11 'h2 server class 'https://code.google.com/p/h2database/source/browse/trunk/h2/src/main/org/h2/server/TcpServer.java 'Java: // start the server, allows To access the database remotely Import org.h2.Driver; Import org.h2.tools.Server; String args[] = {"-tcpAllowOthers", "true", "-tcpPort", "9092", "-baseDir", "C:/test"}; Server ser...

Tuesday, October 21st 2014, 7:37pm

Author: Dani

Database sample App - SELECT / INSERT / UPDATE / DELETE

Hey there, this is a sample of how to set up a simple Connection Pool with the H2 Database Sample App I posted above. It is just a rough outline, you have to adjust the code to your needs!!! 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 'Jabaco sample by Dani: 'h2 Database ConnectionPool Setup 'http://www.h2database.com/html/main.html Option Explicit Import org#h2#Driver Import org#h2#jdbcx#JdbcConnectionPool Global strQry As String Gl...

Friday, September 26th 2014, 1:11pm

Author: Dani

cancelling the Unload is not functioning

Hey there, as I mentioned above, I would prefer a solution where the VB resemblance stays untouched! So here is another approach. Use Rev 151 of the Jabaco Framework as a base and add / replace the following to AbstractForm in the framework. All other classes do not need to be changed: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 Dim myCancelUnload As Boolean Public Sub windowClosing(arg2 As WindowEvent) On Error Resume Next Me.Parent.setDefaultCloseOperation(0) Call Form_Unload() ...

Monday, September 8th 2014, 9:36am

Author: Dani

Crash with frame array

No, no... no problem, it is good to have a reminder

Saturday, September 6th 2014, 8:08pm

Author: Dani

Crash with frame array

http://www.jabaco.org/board/p3008-frame-…k.html#post3008

Saturday, September 6th 2014, 8:05pm

Author: Dani

cancelling the Unload is not functioning

Hey there, Jabaco Source 1 2 3 Public Sub Form_Unload() As Integer End Sub as generated by the Jabaco IDE throws an ERROR as mentioned above! Not very nice ... and breaks VB compatibillaty. Can we not somehow redirect to a Public Sub Form_Unload() ? Dani

Tuesday, August 19th 2014, 10:59am

Author: Dani

Java 8/JDBC-ODBC Bridge will no longer be included with the JDK?

Hey there, thanks for bringing this up! I do not have a direct answer, but this might be interesting: http://docs.oracle.com/javase/7/docs/tec…dbc/bridge.html http://stackoverflow.com/questions/14229…ridge-in-java-8 Dani PS: I am using Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") to connect to Access and I might try the mentioned Jackcess library.

Tuesday, August 19th 2014, 10:46am

Author: Dani

Database sample App - SELECT / INSERT / UPDATE / DELETE

Hey there, I don't know what that file is. I would recomment downloading the last (2014-04-05) stable H2 file: http://www.h2database.com/h2-2014-04-05.zip From that .zip file you have to extract the compiled database .jar e.g.: \h2\bin\h2-1.3.176.jar to your local Java installationpath or your Apps path: - e.g.: 'C:\Program Files\Java\jre7\Lib\ext\h2-1.3.176.jar' Hit F1 in Jabaco and add the 'C:\Program Files\Java\jre7\Lib\ext\h2-1.3.176.jar' to your project. Now adjust the path to the sample da...

WoltLab Burning Board