You are not logged in.

Search results

Search results 1-13 of 13.

Wednesday, June 23rd 2010, 10:28pm

Author: Sbleck

Found some compilation problems when tried the SQLite sample code...

Hello, Quoted from "Manuel" I'm too late but i won't trash my sample... Quoted Do you know btw what should I include in Project/References? Nothing. Just "install" the driver by copying the files from the zip into your Java (JRE)-folder. Quoted ... the problem is that I do not know what methods and properties to fill a JBGrid with data from a Select! I'll show you a better way in future. For now you could use this sample: 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 ...

Wednesday, June 23rd 2010, 9:02pm

Author: Sbleck

About new desired features, for Jabaco...

Hello, Manuel, Quoted from "Manuel" i'm working on the next version and i'll reconcentrate on this project in near future. the next version will improve the design editor and things like that. suggestions and reports are very welcome in the community. Wanted to know if you could improve Jabaco to handle mobile development, like was mentioned before ("to support the development for mobile phone devices in Jabaco, the Jabaco compiler needs an additional compiler step: Preverify") Please send you c...

Thursday, June 17th 2010, 9:13pm

Author: Sbleck

RE: Jabaco & Java MicroEdtition (for mobile phone devices)

Hello, Quoted from "OlimilO" Hi, to support the development for mobile phone devices in Jabaco, the Jabaco compiler needs an additional compiler step: Preverify * first compile to class files, * then run a Preverify-task (for CLDC-devices) * then create the jar-archive Download Java Platform Micro Edition Software Development Kit 3.0 after installation of JavaME, the file preverify.exe can be found in the folder: C:\Java_ME_platform_SDK_3.0\bin\ regards OlimilO Could you comment/exemplify how co...

Friday, June 4th 2010, 10:02pm

Author: Sbleck

About building menus, in Jabaco...

Quoted from "A1880" Have you seen this posting? Hello, Yes, I´ve seen before posting. I used that code to understand how to build menus, in Jabaco apps. But, sincerely, preferred to have a menu builder in Jabaco, like VB had... But what I really wanted was the possibility of downloading the sample that I made reference, because if was possible to take a snapshot of that sample, maybe that source code could be put available too. Only this... Rgds, Sven

Friday, June 4th 2010, 9:54pm

Author: Sbleck

RE: Problem with the Framework

Quoted from "nbarakat" Hello All, As a new comer to jabaco, I am trying to setup the jabaco framework. I have followed instructions on the articles related to the framework. I managed to create a project in Netbeans for the VBA part of the framework, and that part seems to compile fine with the exception of a warning: ... Even though build.bat produces a jabaco.jar in the bin directory, I believe such a jar is missing the VB framework. It is also 236KB which is in line with the Jabaco2010031605...

Friday, June 4th 2010, 2:01am

Author: Sbleck

Is there any other info to install .JAR files into Mobile phones that run Java ?

Hello, I tried these steps but wasn´t the case for uploading .JAR files made with Jabaco to mobile phones, like Nokia E71. Wanted to know if another person had found some way to build a correct .JAD file and what changes should be made to the MANIFEST.MF file too, to be possible to upload these .JAR files to Nokia mobile phones. I tried these combinations (mentioned below) but currently the only problem I´m having is that some missing option wasn´t available to complete the installation: Source ...

Tuesday, June 1st 2010, 9:08pm

Author: Sbleck

VBMenuBar menu separator

Quoted from "A1880" Simply copy the source from the sample into your Jabaco IDE editor. There is nothing more needed. Or do I get your question wrong? Greetings A1880 Hello, You got my question wrong, unfortunately. In that link (http://www.jabaco.org/wiki/VBMenuBar) is a snapshot of something that could explain better how to use (and contain) the resources (images) in that example. I tried to request that example, like was possible to download others, in this forum... Rgds, Sven

Sunday, May 30th 2010, 9:31pm

Author: Sbleck

RE: VBMenuBar menu separator

Quoted from "MystikShadows" ... In the example in the following link, the menu in the screen shot has that seperator right after the Save option... http://www.jabaco.org/wiki/VBMenuBar Hello, Is there possible to put available (for download) that example, mentioned in that link ? Rgds, Sven

Sunday, May 30th 2010, 7:19pm

Author: Sbleck

Encountered the solution for END statement...

Quoted from "A1880" Jabaco does not accept a single "end" as statement. That's different to VB6. Please search this forum for "SetDefaultClose". There are numerous posts discussing this issue. ... Hello, Yes. I noted this "difference" when readed another post, right after leaving my post about this issue... Wanted to know if there could exist any other "differences" between Jabaco and VB6, like this... Maybe could be adequate to have a place where these commands could be available too, for the ...

Sunday, May 30th 2010, 3:32am

Author: Sbleck

Terminate execution

Quoted from "dolcevita" ... I tried with "Call End" instead of "End" It worked. Hello, Suprisingly, I had the same problem. Tried the "Call End solution" and was surprised again: worked ! Why should I issue one "Call End" to stop Jabaco app running ? Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 Public Sub Command1_Click() MsgBox "hello world" End Sub Public Sub Command2_Click() answer = MsgBox("Do you want to quit ?", vbExclamation + vbYesNo, "Confirm") If answer = vbYes Then Form1.Close() Call En...

Sunday, May 30th 2010, 3:07am

Author: Sbleck

Could not understand why having problems with END statement...

Hello, I´m having strange problems with Jabaco and needed some help, if possible. In a very fresh install of Jabaco, used the latest release of it (1.5.2) and used the latest release (available, I guess) of JRE (1.6.0_20). Currently, some samples are running and compiling ok, but a single END statement is giving back some unexpected results and don´t allowing me to use it to close the application. Please take a look in the snapshot I attached to this message... Any advice should be greatly appre...

Sunday, May 30th 2010, 1:41am

Author: Sbleck

Communicating between forms and with the internet in Jabaco

Hello, Yes, it´s working now... I tried in other machine to see that running. I´m looking in previous machine the code to see what could be wrong in the code, also... Tks, Sven

Saturday, May 29th 2010, 8:25pm

Author: Sbleck

What should I need to test this ?

Quoted from "Tobias" Thanks a lot! It seems to work good! Source code 1 2 3 4 5 6 7 8 Public Sub Form_Load() host = "127.0.0.1" timeOut = 3000' // 3 seconds at least int timeout = 3000; status = InetAddress.getByName(host).isReachable(timeOut) MsgBox status MsgBox System.getProperty("os.name") End Sub Now I'm a step further towards converting my old VB6 program to Jabaco! Hello, Thanks for leaving some code samples to test this interesting issue. But I wanted to know what class should I have ac...

WoltLab Burning Board