You are not logged in.

Search results

Search results 61-80 of 325.

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.

Friday, May 9th 2014, 7:48am

Author: Dani

.EXE disappears

Hey there, hmm, I have never heard of this one before! First off, make sure you are using the latest framework: http://www.jabaco.org/wiki/Latest_JabacoFramework_Binary extract the Jabaco.jar to your jabaco path... Did you try compiling to a .jar file only? Other than that I really don't know. It may be some administrative rights issue of your OS! Dani

Friday, May 9th 2014, 7:37am

Author: Dani

Jabaco-Tabs

Hey there, you already got tab functionality! index.php?page=Attachment&attachmentID=408 Dani

Saturday, April 12th 2014, 12:03pm

Author: Dani

Me.Controls - Collection / now available for the Jabaco Framework

Hey there, I am kind of in a hurry today so I will just outline here: inspired by theuserbls' Anchor implementation I came up with a Form.Controls Property aproach. as described here: Me.Controls - Collection I have now uploaded the code to the framework! Use it like this: Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 Public Sub Form_Load() For i = 0 To Me.Controls.size - 1 Debug.Print i & ". Control: " & Me.Controls.get(i).getClass Debug.Print i & ". Control: " & Me.Controls.get(i).toString If IsClass(...

Friday, March 21st 2014, 9:51am

Author: Dani

externe dll einbinden

Hey, Quoted Aber wie kann ich verhindern, dass der Pfad nicht fest vorgegeben wird? wenn die dll im selben Verzeichnis wie die jar liegt klappt ein Aufruf wie dieser trotzdem nicht: System.load("chilkat.dll") vorausgesetzt: a) Du kompilierst zu einem .jar file b) Deine .dll liegt im selben Verzeichnis wie das .jar file sollte dies eigentlich funktionieren: Jabaco Source 1 2 3 Public Sub Form_Load() System.load(App.Path & "\test.dll") End Sub Dani

Thursday, March 20th 2014, 8:29am

Author: Dani

externe dll einbinden

Hey, schau mal hier: Some programs to share Dani

Thursday, March 20th 2014, 8:07am

Author: Dani

How to set my language in order to read?

Hey there, Quoted - Frame does not offer to set the font in the properties works fine... index.php?page=Attachment&attachmentID=395 Dani

Sunday, March 9th 2014, 7:51am

Author: Dani

How to get rid of this problem

Delete the Quoted End use Jabaco Source 1 Exit Sub or Exit Function within Subs or Functions! Dani

Saturday, March 1st 2014, 9:01am

Author: Dani

Error JABACO (21-1) ConstantPool

Hey there, I have got Win8.1 Java 7.51 now and Jabaco is running fine. Isn't Java 8 a preliminary release? You might want to downgrade... Dani

Friday, February 28th 2014, 1:06pm

Author: Dani

Error JABACO (21-1) ConstantPool

Hey there, I am not sure about this one! You might want to try a fresh Java install on your system... Just a guess. Dani

Wednesday, February 26th 2014, 7:44am

Author: Dani

Multi-line jbgrid header

Hey there Perry, Quoted multiline headers I would say that's not a multiline header but multiple headers! Not easy to achieve since JTable does not support a second header by default. Your approach sounds fine to me. Did you look at my JBGrid sample App? attached .zip I showed how to scoll vertically. Maybe that will help with horizontally scrolling too! I will look into it but I don't have the time right now. The centered text is not a problem. You will have to create a new property '.HeaderAli...

Tuesday, February 25th 2014, 8:46am

Author: Dani

How to set column widths in JbGrid?

have a look at my little JBGrid sample app here: JBGrid / Spinner - Update - with SpinnerModels you will find the attached .zip in the last sentence of the first post... Dani -------------------------- OK, I linked it in here. @ webmaster: links should be highlighted somehow; there are two links in this post!!

Tuesday, February 25th 2014, 8:23am

Author: Dani

How to set column widths in JbGrid?

Hey there, from the top of my head you have to populate the JBGrid first and set the .ColWidth Property after that! Dani

Tuesday, February 11th 2014, 9:12am

Author: Dani

Redim Preserve

Hey there, did you see this post? http://www.jabaco.org/board/p3023-can-no…y.html#post3023 I ended up using two synchronized arrays, setting their position symultaneously. Dani

Tuesday, February 4th 2014, 11:49am

Author: Dani

Me.Controls - Collection

Ok, using the same for Dialogs is no problem! From what I read about java#awt#Component there seems to be no way to retrieve a components name given at designtime after compilation. Simply because it is only a reference for the programmer and removed at runtime! Correct me if I am wrong here. However, it is possible to uniquely identify a component within its lifecycle by its hashCode: Jabaco Source 1 Debug.Print i & ". Control: " & Me.Controls.get(i).hashCode I actually don't see why I would ne...

Monday, February 3rd 2014, 9:27am

Author: Dani

Me.Controls - Collection

Hey there theuserbl, I think my initial problem has solved itself! Source code 1 2 For some reason for ComboBox and Slider Control names are not being retrieved. They are accessible though! I don't know why. Today Jabaco Source 1 Me.Controls.get(i).getClass is returning the expected values. Yesterday form some reason the Jabaco Debuger did not return values for the ComboBox and the slider! This has happened to me before! The toString value is representing the controls' value and in my example Co...

Sunday, February 2nd 2014, 8:12pm

Author: Dani

Me.Controls - Collection

Hey there, inspired by theuserbls' Anchor implementation I came up with a Form.Controls Property aproach. In VB you can iterate through Me.Controls to determine each controls' Type. Source code 1 2 3 4 5 6 7 8 ' Visual Basic 6.0 Private Sub MyControls() For Each Control in Me.Controls If TypeOf Control Is CheckBox Then Control.Value = False End If Next End Sub You can do that with Jabaco as follows. I did not check out dialogs yet and don't know if this is reliable!? This is not fully compatible...

Friday, January 24th 2014, 3:10pm

Author: Dani

Framework Update - ComboBox / ListBox .AddItem Speed improvement and new features

Hey there, I have fixed some issues with the Jabaco ComboBox and ListBox. I made it more compatible with VB and added some functionality. You can view my changes to the framework here (rev. 128 ): https://code.google.com/p/jabacoframewor…ce/detail?r=128 ComboBox Event EditorClick() - raised on mouse click in the ComboBox 'TextBox' Event ListClick() - is only raised when a selection in the dropdownlist is made with the mouse Event DropDown() - raised on mouse or up-/down key action Call ComboBox....

WoltLab Burning Board