You are not logged in.

Search results

Search results 141-160 of 277.

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.

Wednesday, September 16th 2009, 11:17am

Author: OlimilO

Language mix

Hi friends, I must admit I myself also had Stefans idea. But when I was thinking more and more about it, I came to the conclusion that in fact it's not such a good idea. Actually it is a huge amount of work to implement an IDE for a programming language. During the programming process the developer needs benefits like: a) automatic code completion, intellisense b) automatic code checking, parsing the code during programming and telling whats wrong with it. until now Jabaco has a) but still nothi...

Monday, September 14th 2009, 11:30pm

Author: OlimilO

Environ

Hi @ll i read here System that the getEnv-function is marked as deprecated. We could also use the function getProperty. 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 Dim Text1 As TextBox Public Sub Form_Load() Text1 = New TextBox Text1.FontName = "Courier New" Text1.FontSize = 10 Text1.Visible = True Me.add Text1 ShowProperties End Sub Public Sub ShowProperties() Dim keys As java#util#Enumeration = System.getProperties.keys Dim keyL...

Monday, August 24th 2009, 10:36am

Author: OlimilO

Generate controls at runtime

Add the button to the form Jabaco Source 1 Me.add NewC

Sunday, August 23rd 2009, 9:35pm

Author: OlimilO

TabStrip does not work

Hi Stefan, in Jabaco Version 1.5.0 unfortunately there is in fact a problem with Tabstrips, the problem is even bigger: already instantiated usercontrol-objects get deleted if you open your project again later. But you can see TabStrips working, because you also made a mistake: between point 2 and point 3 you must place the usercontrol from the Tools-bar to your Form. go this way: 1. in Formdesigner dragdrop a TabStrip on Form1. 2. in projectexplorer, for every tab Add one UserControl to your pr...

Saturday, August 22nd 2009, 9:34pm

Author: OlimilO

installproblem

Your problem has nothing to do with Java i guess, it is simply an ActiveX problem. I am wondering if others do also have this problem. I tried to attach the file to the post but the file size is limited to 160kb only. The compressed file Codejock.zip is about 417kb. You could try to find this file on the net. regards OlimilO

Saturday, August 22nd 2009, 9:12pm

Author: OlimilO

Passing parameters via Call statement in VB6

Hi Blue Blazes, maybe reading this could be helpful for you: ByRef in VB and in Jabaco Concerning ByRef strings please do not use "String" use StringBuilder or StringBuffer instead. Or simply return the String from a Function. regards OlimilO

Friday, August 21st 2009, 9:48pm

Author: OlimilO

Launching Jabaco

Hi, I really do not know what was going wrong with your installation. Maybe one of the controls was not registered, or the msxml-installation went wrong? but you could do all of this with a simple batch-job try the following: * in your Jabaco-folder create a new file RegCom.bat: Source code 1 2 3 4 5 6 7 8 9 10 11 12 regsvr32.exe ATLShmem.dll regsvr32.exe Codejock.ocx regsvr32.exe Codejock.DockingPane.Unicode.v13.1.0.ocx regsvr32.exe Codejock.CommandBars.Unicode.v13.1.0.ocx regsvr32.exe Codejock...

Thursday, August 20th 2009, 2:07pm

Author: OlimilO

@Manuel Forum Button <JBC> Description = "Insert/format Jabaco Code"

Hello Manuel, the Forum has the Button to Insert Jabaco-code-tags or to format selected lines in jabaco code. But noone uses it because everyone (included myself) thinks that it only inserts a Jabaco title. this confusion is because the description of the button says: "wcf.bbcode.jabaco.title" Noone can imagine that this button is for formatting and colors in VB/Jabaco code. Could you please change the description of the button? suggestion is: "Insert Jabaco-Code" OlimilO

Monday, August 17th 2009, 10:08am

Author: OlimilO

inside Form the Form is Me

quick answer Jabaco Source 1 2 3 4 5 6 Public Sub Form_Load() 'use Me.Caption = "Caption" 'instead 'Form1.Caption = "Caption" End Sub

Sunday, August 16th 2009, 10:16pm

Author: OlimilO

Summertime

on youtube Summertime Do you know the Hang? I love this song, the right music after this hot summer days 'n nights

Sunday, August 16th 2009, 11:01am

Author: OlimilO

Using ActionListener in Jabaco

Hi birosys, yes you got it! one tipp: if you add Code to your post in the Forum use this button: <JBC> then your code will be colored like in the Jabaco-IDE second: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 Option Explicit Import java#awt#Event Implements java#awt#Event#ActionListener Public Sub Form_Load() Dim jb As JButton = New JButton("Test") Me.add(jb) jb.addActionListener(Me) jb.setBounds 10,10,60,20 End Sub Public Sub actionPerformed(arg2 As ActionEvent) ' 2 examples how to ...

Thursday, August 13th 2009, 11:51pm

Author: OlimilO

Using ActionListener in Jabaco

Quoted little sample how to do it Yes of course what kind of event do you miss?

Thursday, August 13th 2009, 11:45pm

Author: OlimilO

Using ActionListener in Jabaco

Quoted or i must add every time new class file Ah ... no, you do not have to add a class file. Just implement the Listener-Interface in your Form-Class. You must do this only for events that are not implemented in the Jabaco-Framework already. For Button-Click just simply click on the button in the Form-designer then Jabaco creates the Click-event-procedure autoamtically. Just the way like VB does it.

Thursday, August 13th 2009, 11:38pm

Author: OlimilO

Drag'n'Drop, Files from Windows-Explorer into your prog (aka OLEDragDrop)

Hi, if you want to drag'n'drop files from the windows-Explorer into your program, in order to open the file you maybe do it this way in VB6: 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 'Properties: '.OLEDragMode = 1 - Automatic ' = vbOLEDragAutomatic '.OLEDropMode = 1 - Manually ' = vbOLEDropManual Private Sub Picture1_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single) AllOLEDragDrop Data End Sub Private...

Thursday, August 13th 2009, 11:14pm

Author: OlimilO

Using ActionListener in Jabaco

Quoted is there any other solution to create event classes for java components (simple way)? I am not sure if i was understanding you quite well enough to give an adequate answer. Could you please try to explain more clearly what you want to do? Do you want to add controls during run time? Until now, there is no Load-function for Control-arrays that's true. OlimilO

Thursday, August 6th 2009, 7:21pm

Author: OlimilO

Open any file associated to a program by its file extension

Hi, if you want to open a pdf-file but the path to Acrobat Reader is unknown, you could use the Desktop-Object. The Desktop-Object is a real Singleton, this means there is only one Desktop-Object for every program. Of course, because every computer has only one desktop Jabaco Source 1 2 3 4 If java#awt#Desktop.isDesktopSupported Then Dim d As java#awt#Desktop = java#awt#Desktop.getDesktop d.open(New File(aFileName)) End If Desktop also has other interesting procedures: Jabaco Source 1 2 3 4 d.br...

Wednesday, August 5th 2009, 1:00pm

Author: OlimilO

Extracting Enums out of COM, OCX, ActiveX-dll, Typelibrary

Hi, The following tiny program can extract Enum-constants out of any COM-typelibrary. It does not use Jabaco it uses VB.net. But it can be useful for creating sourcecodes towards Jabaco. I am sure there are other and more complex programs that can maybe do the same or a similar thing, e.g. search at vbaccelerator.com All what you need is a Button and a TextBox on a Form. I is not very convenient in fact it is rather primitive. What you have to do: * in VS you have to link the COM-library with th...

Monday, August 3rd 2009, 4:13pm

Author: OlimilO

Which Java IDE do you use?

Hi, which Java IDE do you use? and why? regards OlimilO

Tuesday, July 28th 2009, 2:48pm

Author: OlimilO

Bit Shifting, Array Initialising

Hi A1880, Yes i made the same mistake in the beginning: Jabaco Source 1 Public sh(0 To 15) As Integer = (...) just delete "0 To 15" it must be: Jabaco Source 1 Public sh() As Integer = (...) if the syntax would be not correct, of course there should be a message or red coloured lines etc. The Array-function in VB also delivers an array with LBound always 0, and the Ubound is defined by the amount of values. OlimilO

WoltLab Burning Board