You are not logged in.

Search results

Search results 41-53 of 53.

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, February 3rd 2009, 10:01am

Author: maXim

SQLITE 3 support

I found this wrapper: http://www.ch-werner.de/javasqlite/. Provides no error! Someone knows how to manage it properly in Jabaco? Massimo

Tuesday, February 3rd 2009, 9:46am

Author: maXim

Serial Port

Hi Pier Andrea, I found the RXTX library (http://rxtx.qbang.org/wiki/index.php/Main_Page), there are many functions and commands to manage any port... Unfortunately I do not know well Java for make integration in Jabaco and thus are not able to obtain excellent results . However, the testing continues ... Massimo P.S. please excuse my bad english .

Friday, January 30th 2009, 3:39pm

Author: maXim

ENCOURAGE AND SUPPORT JABACO FINANCIALLY

Hi Frank, I fully agree and I am available for any reasonable proposal! For this it is very important to publish (and kept updated) an effective documentation. In this condition there could be the possibility to organize the representation of Jabaco in Italy (technical support, seminars, gatherings of developers, translations, etc.), provided that Manuel is in agreement . Massimo

Wednesday, January 28th 2009, 2:21pm

Author: maXim

InputBox

Hi OlimilO, very good solution and good explanation!

Sunday, January 25th 2009, 2:43pm

Author: maXim

db2000 gpIPa [g]et [p]ublic [I]nternet [P]rotocol [a]ddress

Who has a website could manage the db2000 gpIPa requests through a webpage (.SHTML) like the following: Source code 1 2 3 4 5 6 7 8 9 10 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>GET YOUR IP (shtml)</title> </head> <body> Your Public IP:&nbsp; <!--#echo var="REMOTE_ADDR"--> </body> </html> (SHTML sample on-line) Even with IIS just one line of code (VBScript) in an ASP page is enough to resolve the IP address: Source code 1 2 3 4 5 6 7 8 9 10 ...

Saturday, January 24th 2009, 7:16pm

Author: maXim

db2000 gpIPa [g]et [p]ublic [I]nternet [P]rotocol [a]ddress

db2000 gpIPa [g]et [p]ublic [I]nternet [P]rotocol [a]ddress A simple way to detect the public IP, this is a solution already seen in other environments but is the first time with Jabaco!

Friday, January 23rd 2009, 8:15pm

Author: maXim

Jabaco output strength against decompile? (Jabaco app for commercial use question)

Hi Alfer, http://www.drjava.de/obfuscator/ http://www.plentyofcode.com/2007/08/java-decompilers-and-obfuscators.html http://www.yworks.com/en/index.html ProGuard seems interesting... Best Regards, Massimo

Friday, January 23rd 2009, 9:25am

Author: maXim

db2000 TXT2PDF

Hi Manuel, You will certainly know that the syntax of the script of the documents PDF allows to manage references both to inside link in the same document and in external documents as in the example: Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ... 14 0 obj << /A << /S /URI /Type /Action /URI (http://www.jabaco.org/wiki/Label#Differences_to_VB6) >> /Border [ 0 0 0 ] /Rect [ 388.482 532.5044 414.5953 544.5044 ] /Subtype /Link /Type /Annot >> endobj ... ... however to do this a procedure is ...

Thursday, January 22nd 2009, 5:49pm

Author: maXim

db2000 TXT2PDF

db2000 TXT2PDF db2000 Txt2PDF really is a small and simple procedure that takes care of converting a text file in another PDF compatible (Portable Document Format). In internet there are similar solutions and more efficient but here the aim was to test the ability of Jabaco and propose examples to novices who approach for the first time to this development environment. To who wants to deepen the specifications of the files PDF I advise to read the document: http://www.adobe.com/devnet/acrobat/pd...

Tuesday, January 20th 2009, 6:31pm

Author: maXim

db2000 RCC ([R]esistor [C]olor [C]ode)

db2000 RCC ([R]esistor [C]olor [C]ode) db2000 RCC is a simple procedure to detect the ohms value from the bands color of a resistance. They are given three different versions: with and without array of controls and with external files support. The link to project download is contained in the attached file below...

Friday, January 16th 2009, 4:03pm

Author: maXim

Control Arrays

Hi Henning, I hope for a lot that also in Jabaco is possible to manage the arrays of controls as in VB6. I propose a temporary solution, is not very elegant (for nothing!) but... Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 ..... Public Sub Command1_Click() CommandEx 1 End Sub Public Sub Command2_Click() CommandEx 2 End Sub Public Sub Command3_Click() CommandEx 3 End Sub ..... Sub CommandEx(Index As Integer) MsgBox "the button " & CStr(Index) & " has been pressed!" Sele...

Thursday, January 15th 2009, 4:20pm

Author: maXim

MID statement

Hi frankp, I have encountered the same problem. While waiting for the improvement and completion of the Mid function, I have resolved as follows: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ..... ..... Dim xStr ..... xStr = "ABCDEFG" xStr = MidEx(xStr, 4, "H") MsgBox xStr ..... ..... Public Function MidEx(xString1 As String, xPosition As Integer, xString2) As String Dim StrL As String Dim StrR As String If xString1 = "" Then xString1 = " " If xPosition <= 0 Then xPosition = 1 StrL...

Thursday, January 15th 2009, 2:05pm

Author: maXim

Open Files?

Hi e-nomad, what follows is the method recommended by Manuel: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 Dim ff As VBFileHandler ' write ff = Open("c:\test.dat", Random, ReadAndWrite, Shared) Call write(ff, "Hello world in DataFile") Call Close(ff) 'read ff = Open("c:\test.dat", Random, ReadAndWrite, Shared) MsgBox readline(ff) Call Close(ff) Best Regards, maXim

WoltLab Burning Board