You are not logged in.

Search results

Search results 41-60 of 102.

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.

Sunday, August 2nd 2009, 8:51pm

Author: StefanSchnell

Twips per Pixel

Hello turkulainen, here are two functions to get pixel per twips to convert pixel to twips (multiply) and vis-a-vis (divide). 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 '-Begin------------------------------------------------------------------ '-External Functions--------------------------------------------------- Private WinAPI Function GetDC Lib "user32.dll" _ (ByVal hwnd As Long) As Long Private WinAPI Function ReleaseDC Lib "u...

Sunday, August 2nd 2009, 8:31am

Author: StefanSchnell

Klassen aus anderen Projekten importieren und löschen

Hallo Manuel, das Importieren von Klassen funktioniert mit der neuen Version. Zwei Dinge sind mir dabei aufgefallen, die Du vielleicht noch angehen könntest: 1. Von der vorherigen zu dieser Version hast Du den Header der jsrc-Dateien verändert von <?xml version="1.0" encoding="ISO-8859-1"?> in <?xml version="1.0" encoding="UTF-8"?>. Die "alten" Klassen lassen sich in die aktuelle Version nicht importieren. Vielleicht kannst Du den Import etwas flexibler gestalten, dass auch andere Zeichenkodieru...

Sunday, August 2nd 2009, 8:01am

Author: StefanSchnell

New update version available

Hello community, after the new version of Jabaco, with the new Debug class, here the updated version - renamed to DebugExt and a little modification in the interface. Cheers Stefan

Sunday, August 2nd 2009, 7:48am

Author: StefanSchnell

New advanced version of VarPtr available

Hello community, you can download a new advanced version of VarPtr here or from the attachment. Cheers Stefan

Saturday, August 1st 2009, 8:41am

Author: StefanSchnell

How to get a PID

Hi A1880, try this to get the PID: 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 '-Begin------------------------------------------------------------------- Private WinAPI Function CreateProcess Lib "kernel32.dll" _ Alias "CreateProcessA" (ByVal lpApplicationName As String, _ ByVal lpCommandLine As String, lpProcessAttributes As Long, _ lpThreadAttributes As Long, bInheritHandles As Long, _ dwCreationFlags As ...

Friday, July 10th 2009, 11:26pm

Author: StefanSchnell

How to read a MDB database?

Hello Ephestion, try the following: Press F1 and select the node sql below java in the tree, press the accept button and execute the program again. Do you add the test database to your ODBC configuration? Open control, select administration and select datasource (ODBC). You see the dialog ODBC datasource administrator and the tab User-DSN is active. In the user datasource you must see your database with the correct name - in my example Test. Look at the image in the attachment. Hope it helps. Pl...

Thursday, July 9th 2009, 1:48pm

Author: StefanSchnell

Your Poll doesn't have...

Hello Manuel, I miss ABAP - Allgemeiner Berichts-Anwendungs Prozessor - later Advanced Business Application Programming Cheers Stefan

Saturday, July 4th 2009, 8:43am

Author: StefanSchnell

How to convert ADO Database objects to Jabaco

Hello ngking, welcome at Jabaco. I am not so familiar with ADO, but so far I know is ADO a COM object. In the COM list I found the modules msado15.dll (ADODB), msadomd.dll (ADOMD) and msadox.dll (ADOX). My suggestion: One way to realize a solution to use ADO with Jabaco is to use the Java-COM-Bridge (JaCoB). Here is a example for Word® and all links you need. With JDBC you are right. For MS-SQL-Server you find a JDBC driver here and here is an older list with a lot of JDBC drivers. I do not know...

Saturday, June 27th 2009, 10:52am

Author: StefanSchnell

Noch mehr kleine Verbesserungsvorschläge

Hallo Manuel, neben den bereits genannten Punkten wünsche ich mir noch folgendes: Im Menü Projekt einen neuen Menüpunkt "Kompilieren" der das Projekt einfach nur kompiliert, das verwende ich in VB oft um Fehler vor einem Testlauf zu ermitteln. Sicherlich kann man dies auch mit F5 erreichen, dies führt jedoch immer zu einem Programmstart, wenn keine Fehler gefunden werden - Kompilieren eben nicht.Ein Fenster in dem die Inhalte der Variablen angezeigt werden, ähnlich dem "Überwachungsfenster" in V...

Thursday, June 25th 2009, 10:42pm

Author: StefanSchnell

Meine Erfahrung mit der neuen Beta 1.4.2

Hallo theuserbl, wenn Du Deine Softwareinstallationen, z.B. Jabaco, auch auf anderen Systemen ohne Installation betreiben möchtest, bietet sich Software-Virtualisierung an, siehe hier. Damit ist es auch möglich, unterschiedliche Jabaco-Versionen abwechselnd zu betreiben. Cheers Stefan

Thursday, June 25th 2009, 10:31pm

Author: StefanSchnell

Is there an error in the automatic class name completion

Hello community, hello Manuel, I check it again. I install Jabaco in a VM with a clean XP and I get the same error. Exactly the same with a Vista VM. At first I install Java6u14 and then Jabaco. I do not know what is wrong. Any ideas? Cheers Stefan Hello Manuel, is there any registry entry, an ActiveX module or anything else which can create this effect? Thanks. Cheers Stefan

Wednesday, June 24th 2009, 10:45pm

Author: StefanSchnell

How to read a MDB database?

Hello Ephestion, welcome at Jabaco. Here is another solution with the JDBC-ODBC-Bridge: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Dim ds As sun#jdbc#odbc#ee#DataSource Set ds = New sun#jdbc#odbc#ee#DataSource() ds.setDatabaseName("Test") Dim sta As java#sql#Statement Set sta = ds.getConnection().createStatement() Dim res As java#sql#ResultSet Set res = sta.executeQuery("SELECT * FROM Test") Do Until Not res.next() Debug.Print res.getString("Test1") Debug.Print res.getInt("Test2") Loop...

Wednesday, June 24th 2009, 10:30pm

Author: StefanSchnell

Is there an error in the automatic class name completion

Hello Oliver and A1880, look at the the screencast here (deleted). Thanks and cheers Stefan

Wednesday, June 24th 2009, 2:53pm

Author: StefanSchnell

Is there an error in the automatic class name completion

Hello A1880, thanks for your reply. My problem is not the code, my problem is the following: Type sun#, now Jabaco opens code completion, type jdbc#, now Jabaco opens code completion again, type odbc#, now Jabaco opens nothing. The code works well, but the code completion of the class names and methods not. Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Dim ds As sun#jdbc#odbc#ee#DataSource Set ds = New sun#jdbc#odbc#ee#DataSource() ds.setDatabaseName("Test") Dim sta As java#sql#Statement ...

Wednesday, June 24th 2009, 9:42am

Author: StefanSchnell

Is there an error in the automatic class name completion

Hello community, hello Manuel, I want to try the method java#sql#jdbc#odbc#ee.DataSource, but the automatic class name completion of the method name stops after odbc. Jabaco cannot find the class. I try this code: Jabaco Source 1 2 Dim ds As sun#jdbc#odbc#ee.DataSource Set ds = New sun#jdbc#odbc#ee.DataSource() What is wrong? Thanks for tips. Cheers Stefan

Sunday, June 21st 2009, 5:24pm

Author: StefanSchnell

New Version of JaCoB

Hello community, since June the 8th there is a new version of Java COM Bridge, you can download the package here. Cheers Stefan

Sunday, June 21st 2009, 5:01pm

Author: StefanSchnell

How to use Microsoft© Word® SpellChecking with Jabaco

Hello community, here is a small extension of the class to use Word® spell and grammar checking. 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 1...

Sunday, June 14th 2009, 6:25pm

Author: StefanSchnell

discussion: documentation & Jabaco Wiki & TOC

Hello Oliver, my suggestion for one possible structure of the explanations in the Jabaco Wiki: 1. Use (Verwendung = Erklärung des Einsatzzweckes) 2. PreConditions (Voraussetzungen) 3. Standard setup (Standardeinstellungen) 4. Activity (Aktivitäten = Durchführungsanweisungen) 5. Example (Beispiel) Cheers Stefan

Sunday, June 14th 2009, 5:56pm

Author: StefanSchnell

Another source of MASM download

Hello community, you can download an older version of MASM here. Cheers Stefan

Sunday, June 14th 2009, 11:56am

Author: StefanSchnell

How to use Opcodes with Jabaco

Hello community, opcodes are the operation codes and each code represents an instruction of a CPU, look here for further explanation. With this way it is possible to use each CPU, FPU, SIMD, MMX instruction you want. Here is a small example, how to use opcodes with Jabaco. 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 Private WinAPI Function CallProc Lib "user32.dll" _ Alias "CallWindowProcA" (ByVal lpPrevWndFunc As Long, _ By...

WoltLab Burning Board