You are not logged in.

Search results

Search results 21-38 of 38.

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, June 30th 2013, 2:16am

Author: IAO

Array performance test in Java

Hello to all.. Hi mr. theuserbl: Days ago, I asked myself: Is it possible to make Java programs with the framework jabaco.jar? You have given me the answer. Thanks for sharing the code. I continue studying arrays. Best wishes... .

Saturday, June 29th 2013, 4:31am

Author: IAO

Testing with MsComm32.ocx and JaCoB (RESOLVED)

Hi... If somebody need java code, I put here. Remember load library jacob.jar Source code 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 import com.jacob.activeX.*; import com.jacob.com.*; /*** This class uses the the Jacob tech to use and interact with a Com component in a java application */ public class ReadDLL { public static void main(String[] args) { ActiveXComponent MSComm1 =...

Saturday, June 29th 2013, 3:52am

Author: IAO

Some programs to share

Hi... I was angry because JavaComBridge (jacob) not reading an unregistered DLL. I found Jawin, and loaded inpout32.dll. Jawin <==Download here. put jawin.dll in /windows/system32 put inpout32.dll in /windows/system32 put jawin.jar in jabaco project folder and press F1 to load library. copy/paste Form1 jabaco Use this program in combination with proLeerLPT(above) to monitor the output LPT Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 Option Explicit Import org#jawin#COME...

Saturday, June 29th 2013, 1:11am

Author: IAO

Help to translate a line code java to jabaco

Hi... Is a bit confusing to me, but I will analyze everything. Thanks mr. theuserbl. nice days to all.. .

Thursday, June 27th 2013, 5:06am

Author: IAO

Testing with MsComm32.ocx and JaCoB (RESOLVED)

Helloooooo I'm a lucky man. I think it is working well. I am very happy. I thought I was going to take a month to finish this. 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 Option Explicit Import com#jacob#activeX#* Import com#jacob#com#* Private Sub Form_Load() Dim oMSComm As ActiveXComponent Set oMSComm = New ActiveXComponent("MSCOMMLib.MSComm.1") Dim MSComm1 As Dispatch Set MSComm1 = oMSComm.getObject() Dim a As String Dim b As String Dim c As String a = Disp...

Thursday, June 27th 2013, 2:45am

Author: IAO

Testing with MsComm32.ocx and JaCoB (RESOLVED)

Hi to all.... I'm starting to do tests with the MScomm32 and JaCoB (Java to COM Bridge). I put here a small advance. I continue testing. Only this seems to work. Copy jacob.jar and jacob-1.17-M2-x86.dll to project folder. mscomm32.ocx in /windows/system32 and registered witn regsvr32 command Press F1 to add jacob.jar to project. Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 Option Explicit Import com#jacob#activeX Import com#jacob#com Private Sub Form_Load() Dim MSComm1 As ActiveXComponent Set MSComm...

Thursday, June 27th 2013, 2:07am

Author: IAO

Framework Update - Spinner Properties, TabStrip, Tabs

Hi... I could see a new javaco-rev. jabaco-rev105.jar It's hard to know where they are. Here is the link. Quoted http://www.jabaco.org/board/p3547-instr-instrrev-different-results-compared-to-vb6.html#post3547 thanks again mr. theuserbl.

Monday, June 24th 2013, 2:30pm

Author: IAO

Some programs to share

Hi to all...Inpout32.dll LPT reader and writer This was my first program made in VB6. I translated it to Jabco. I wanted to use the library RXTX, but it was very easy to move to Jabaco. I was too lazy to use rxtx. I wanted to do this with Jacob (java com bridge), but it was easy to move to Jabaco. I did not need Jacob. Some notes are in Spanish. sorry! Inpout32.dll file not mine, I found it on the internet 10 years ago. Entries made with '*** VB6: indicate original code in VB6. Jabaco Source 1 2...

Saturday, June 15th 2013, 1:43am

Author: IAO

Framework Update - Spinner Properties, TabStrip, Tabs

Hi to all.. Thanks mr. theuserbl. jabaco-rev103.jar with this version works better some programs that do not work. I copy to Jabaco folder, and rename it to "jabaco.jar" it work well. many thank you very much

Friday, June 14th 2013, 2:53pm

Author: IAO

Some programs to share

Hi.... above on the second publication, Jabaco program with rxtx receiving from hyperterminal. Here code: Form1 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 12...

Friday, June 14th 2013, 1:47am

Author: IAO

Help to translate a line code java to jabaco

Hi to all.. Thank you for your reply mr. theuserbl. You cleared many doubts in my mind. I thought that "InputStream", was part of "gnu.io" (RXTX) I have to study more. Jabaco is a bit more difficult than BV6, but jabaco is more powerful. Thank you very much for your reply. .

Thursday, June 13th 2013, 3:33am

Author: IAO

Help to translate a line code java to jabaco

Hi... I need help. I want to translate this line of java code to Jabaco code. Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 '***Java: InputStream toin; Dim toin As InputStream '***Java: Byte[] buffer = New Byte[1024]; Dim buffer As Byte = New Byte(1024) '***Java: int len = -1; Dim len1 As Integer = -1 '***Java: while ((len = this.toin.read(buffer)) > -1 ) <====HERE I HAVE THE PROBLEM translate Do While ((len1 = toin.read() And Buffer) > -1) <====Exception: java/lang/NullPointerException .... .... ...

Friday, June 7th 2013, 10:19pm

Author: IAO

IDE size and background color

Hello to all... When you have some time. If this is possible. 1 - The IDE not open full page. Open window type. No full window. 2 - IDE background color black. I hope you can understand me... Thanks in advance..... Happy days to all.... .

Friday, June 7th 2013, 3:04am

Author: IAO

Some programs to share

Hi... Calculate Capacitor Remember that I am not an expert programmer. I changed my VB6 code to Jabaco. This working fine. You can improve it. I have to make some improvements. I hope you can enjoy it. .

Friday, June 7th 2013, 2:57am

Author: IAO

Some programs to share

Hi....RXTX serial port rs232 and Jabaco Receive Very difficult for me. The program is not perfect. The program works but I have to improve a lot. The main idea of receiving data, it works fine. Remember: You should read this post first, before running the program. Link rxtx Jabaco solution Very brief explanation. 1- run the jabaco program com3 and hyperTerminal program com4 2- hoh sorry you need: "Virtual Serial Port Driver" program, to conect virtual ports com3 and com4. 3- click "Search Send" ...

Tuesday, June 4th 2013, 2:22am

Author: IAO

Color background source editor question

Hello... I can change the background color of the Source Editor? Is there a trick or method to make that change? Background = black, Letters = white Thanks in advance... .

Sunday, June 2nd 2013, 9:18pm

Author: IAO

Some programs to share

Hi to all....RXTX serial port rs232 and Jabaco Send I want to make several simple programs to share with you. I hope to continue contributing to expand the forum. You should read this post first before running the program. Link rxtx Jabaco solution When the program loads, it sends a message. When you press the button, it sends a message. I used COM3 with Jabaco program. HyperTerminal with COM4. See capture: cap1.png I made comments to the original lines of rxtx java code. This program in my comp...

Saturday, June 1st 2013, 9:01pm

Author: IAO

Option Button unselected works on vb6 .. help now in abaco?

Hi... A little late, but it worked well... Source code 1 2 Command1.Caption = "Disable" Command1.Enabled = False Do not let this project die.

WoltLab Burning Board