You are not logged in.

Search results

Search results 181-200 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.

Saturday, January 12th 2013, 2:18pm

Author: Dani

Add program to startup?

Hey there, just found this post, it is in German but I am sure you will get the idea http://www.jabaco.org/board/p2315-regist…=print#post2315 Dani

Thursday, January 10th 2013, 3:04pm

Author: Dani

Framework Update - Spinner Properties, TabStrip, Tabs

Hey there, thanks theuserbl, I was counting on you I figured it is better to have the framework *.jars in one place!! Dani

Thursday, January 3rd 2013, 1:01am

Author: Dani

Framework Update - Spinner Properties, TabStrip, Tabs

Hey there, I have updated the framework a bit. With the Spinner Controll please keep in mind, that most properties have to be set AFTER setting a custom model! In general many properties are very laf dependent so make sure you test on your target system... TabStrip Added Property TabLayout() -> setTabLayoutPolicy for ScrollTab or WrapedTab Provided a Fix for an issue to make Get SelectedIndex() in MouseUp() Event Mac OS X compatible. Commented it out in the framework; just gives you an idea how ...

Friday, December 28th 2012, 4:29pm

Author: Dani

Vorstellung Desi / Bauteildatenbank / das Jabaco-Projekt

Hallo theuserbl, schön, daß Du es Dir angeschaut hast! Als ich daran saß ist mir wiedermal aufgefallen, was man doch noch so alles am Framework basteln könnte; aber wie Du selbst schon geschrieben hast, es ist wirklich immer alles ein Zeitfaktor... Quoted Wenn es sich hingegen im ext-Verzeichnis befindet, wird es als standardmäßige Systemdatei angesehen und landet nicht in der Jar-Datei. Zumindest nicht, wenn man Java in "Programme" hat und nicht in "Program Files", auf das Du die Einbindung bez...

Friday, December 28th 2012, 10:35am

Author: Dani

Vorstellung Desi / Bauteildatenbank / das Jabaco-Projekt

Hallo Desi, ich hab mal ein kleines H2 Datenbank Beispielprojekt zusammenkopiert! index.php?page=Attachment&attachmentID=334 index.php?page=Attachment&attachmentID=335 Unter [url]http://www.h2database.com/html/main.html kannst Du die aktuelle H2 Version runterladen.[/url] Dann aus dem Zip Archiv die Datei h2-2012-11-30.zip\h2\bin\h2-1.3.170.jar in Deinen lokalen Java Installationspfad kopieren: - e.g.: 'C:\Program Files\Java\jre7\Lib\ext\h2-1.3.170.jar' Nun noch die Pfadangaben zum Projekt und z...

Thursday, December 27th 2012, 11:17am

Author: Dani

SQL Creating a complete database in code.

Hey there, when you start your seach from here searching 'jdbc' returns 66 hits! Dani

Wednesday, December 26th 2012, 10:50am

Author: Dani

Vorstellung Desi / Bauteildatenbank / das Jabaco-Projekt

Hallo Desi, willkommen hier im Forum! Auf der Suche nach einer Alternative zu VB6 mit der Vorgabe plattformunabhängiges Zielprogramm und Basic Syntax bin ich vor ein paar Jahren zufällig auf Jabaco gestoßen. Ich war und bin ziemlich beeindruckt von Jabaco. Wie Du schreibst ist es so Quoted ...kompakt, so mächtig, so angenehme Syntax, so aufgeräumt und leider, leider ist auch dies voll zutreffend Quoted Das einzige, was mich nun echt wurmt, ist dass die letzte Version offenbar schon über drei Jah...

Sunday, December 23rd 2012, 7:51pm

Author: Dani

Create Jabaco Menu / Jabaco ToolBar / PopUp Menu

Hey there, I'd like to share a little code example on how to get a Components' RightClick, PopUp Menu or Context Menu 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 Public Sub Form_Load() 'ComponentPopUpMenu Dim List1PopupMenu As VB#VBMenuGroup = Me.MenuBar.createMenuGroup(Nothing, "ListPopUp", "ListPopUp", False) Dim List1PopupMenuItem1 As VB#VBMenuItem = Me.MenuBar.createMenu(List1PopupMenu, "List1PopupMenuItem1", "insert row", True, ActionaddGif) Dim List1P...

Wednesday, December 5th 2012, 6:58pm

Author: Dani

Command1/Text1 Enabled = False - not the expected behaviour

Hey there theuserbl, Quoted The default colors for every control is defined in the file Jabaco.xml in the Jabaco-directory. that is a great tip I did not know. Thanks! Quoted I would prefer, if Manual would add a System color called "Nothing" or "None", so that this happens, that no color will be set. And I would prefer, if for all controls as default the "Nothing" or "None" would be set. ...exactly my thoughts! I started playing with that... I think that would be a good and flexible approach. I...

Wednesday, December 5th 2012, 3:33pm

Author: Dani

Command1/Text1 Enabled = False - not the expected behaviour

Hey there theuserbl, I had to come back to this! I simply do not like the 'DisabledForeColor' so I did some more testing... index.php?page=Attachment&attachmentID=330 As you can see when we are working with a JLabel compared to JBLabel in the disabled state the foreground is greyed out. But as soon as I pass a foreground color this color is also used when the control is disabled. So that is pretty much what you described above. Still the default Java setting for a disabled control has a differen...

Wednesday, December 5th 2012, 9:00am

Author: Dani

ToggleButton - how change its state

Hey there, well, this is the two button approach Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 'requires 2 ToggleButtons, second Button set visible = False Public Sub ToggleButton1_Click() Static blnLast As Boolean = False If blnLast = True Then ToggleButton2.Parent.doClick() Debug.Print "stopping thread..." Else Debug.Print "starting thread..." End If blnLast = ToggleButton1.Value End Sub does anyone come up with a single button approach? Dani

Tuesday, December 4th 2012, 4:37pm

Author: Dani

ToggleButton - how change its state

Hey there, the ToggleButton is a two-state button that stays down when you push it and is supposed to come up when you push it again! Or am I mistaken here? When using a couple of ToggleButtons they do behave like that. But a single ToggleButton stays pushed; it does not come back up by pushing it again. I tried using JToggleButton and it is the same beahaviour so I am confused. Is there any way to use a single ToggleButton like a switch? Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 '...

Wednesday, November 28th 2012, 1:29pm

Author: Dani

How to Get The Latest Jabaco Framework?

Hey there, you can download independent tools and framework builds here... https://code.google.com/p/jbaindi/downloads/list Since there are no changes in the VBA tree of the framework right now you don't need to compile the Java part of the framework. You can compile the the VB part of the framework with Jabaco itself to a .jar file. Download the latest framework files. http://www.jabaco.org/wiki/Develop_the_Jabaco_Framework In the VB folder there is a Jabaco Framework project. Open and compile ...

Tuesday, November 27th 2012, 10:58am

Author: Dani

JBGrid - ColHeaderClick() Event added to Framework

as I have stated above, when you add a JTable to a ScrollPane in Java the TableHeader behaves like JButtons do. Mouseover, Mousepressed, 3D appearance... The whole TableHeader appears much more polished index.php?page=Attachment&attachmentID=326 It would be nice to have that appearance for the JBGrid as well. And it is easy to do. BUT: I can not find a way to have icons (pictures) on the ColumnHeaders with the DefaultTableHeaderRenderer Does anybody know if/how that is possible without overridin...

Tuesday, November 27th 2012, 10:46am

Author: Dani

JBGrid - ColHeaderClick() Event added to Framework

Hey there, I was missing a ColHeaderClick() Event in the JBGrid and was tired of adding a Mouselistener to every Grid I used in my projects (mostly database frontends). So I added one to the JBGridHeader in the framework! ColHeaderClick() Event is fired by clicking on a ColumnHeader. ColHeaderIndex is set accordingly. -1 for no column -> click on blank headerspace on the right side of the columns The downside: I am not quite sure how to indicate this event visually. You can use this to indicate ...

Saturday, November 24th 2012, 10:13am

Author: Dani

Jabaco Compiled Program Distribution

Hey there, check this link... http://portableapps.com/manuals/Portable…/java.html#java edit: this is probably more what you should look at... http://portableapps.com/apps/utilities/java_portable ...and please let us know how you managed! Dani

Thursday, November 22nd 2012, 10:32pm

Author: Dani

JBGrid scoll to first and last row

Hey there, or try this Jabaco Source 1 2 3 4 5 'scroll to last row JBGrid1.Parent.changeSelection(JBGrid1.Rows - 1, 0, False, False) 'scroll to firs row JBGrid1.Parent.changeSelection(0, 0, False, False) If you don't want the rows to be selected (JBGrid1.Rows, 0, False, False) (-1, 0, False, False) Dani

Thursday, November 22nd 2012, 10:02pm

Author: Dani

Added JBGrid1.HeaderIcon(Index) As #IResource Property

Hey there, I have added a JBGrid1.HeaderIcon Property to the framework. It is an array that stores a reference to pictures added to a Jabaco projects' resources for each column of the grid. Jabaco Source 1 JBGrid1.HeaderIcon(0) = ApplicationlinkPng Also I fixed an issue where JBGrid Click() Event was not fired when row > visible row. So there is no need to add an additional mouselistener anymore. I am using rapidsvn http://rapidsvn.tigris.org/ to upload to the framework and ... ehem ... I have t...

Thursday, November 22nd 2012, 6:14pm

Author: Dani

Added Anchor() Property

Hey there, thanks, I will keep that in mind!

Wednesday, November 21st 2012, 2:54pm

Author: Dani

Added Anchor() Property

Hey there theuserbl, I am about to commit some patches to the framework. Manuel set me up with committer priveleges. I am a bit unsure about naming conventions though... The framework itself is sometimes inconsisten about that! You changed my little patch from Jabaco Source 1 Public Sub RemoveItemAt(Index As Integer) to Jabaco Source 1 Public Sub RemoveItem(v As Integer) Why not Jabaco Source 1 (Index As Integer) since for example in ComboBox.jsrc it also is Jabaco Source 1 RemoveItem(Index As I...

WoltLab Burning Board