You are not logged in.

Search results

Search results 21-40 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.

Tuesday, August 19th 2014, 8:47am

Author: Dani

Database sample App - SELECT / INSERT / UPDATE / DELETE

Hey there, H2 itself allready comes with a management ability: http://www.h2database.com/html/quickstart.html I can also recomment Execute Query though: http://executequery.org/index.php Quoted from "spysonic" And i tried opeing the database attached with your given sample program but I There is no data there.. no matter how i try to view the Artikel.h2 database on your project sounds to me like you did not set the connection string or path right!? H2 creates an empty databasefile if that happen...

Thursday, July 31st 2014, 10:29am

Author: Dani

Right Click Menu

don't know if it still works: http://www.jabaco.org/board/13-create-ja…r.html#post3488

Wednesday, July 30th 2014, 3:18pm

Author: Dani

Scan/Detect all pictures in a folder?

Hey there, I just looked at it ! The sortout for pattern is actually missing in the framework. But theuserbl mentioned that it is only a rough implementation of a FileListBox So here comes my attempt to a pttern-sort-logic: 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 Private Sub Update_Filename_List() Me.Clear() Dim myFile As New java#io#File(myDirectory) Dim myList = myFile.listFiles Dim i, x As Integer Dim tmpString As java#lang#String D...

Monday, July 28th 2014, 2:22pm

Author: Dani

Redirecting standard output and standard error, to text boxes

Quoted from "jbExplorer" Is there a way to tag these posts, for example with keywords like 'stdout' and 'stderr'? You might try to change the Thread name -> 'Message Information' -> 'Subject' of your initial post ... I don't know if that is possible though!?

Monday, July 28th 2014, 2:18pm

Author: Dani

Scan/Detect all pictures in a folder?

Quoted my only problem now is to limit the detection to a certain file. like for example instead of detecting all files perhaps it should only detect PICTURES files with .bmp, jpg or png extensions. again: https://code.google.com/p/jabacoframewor…ileListBox.jsrc does Jabaco Source 1 Dim myPattern As String = "*.*" not work for you!? Quoted from "spysonic" by the way HOW do i post the code here? i tried several times but after submitting the reply the code structure gets displayed in lines as in...

Monday, July 28th 2014, 10:01am

Author: Dani

Scan/Detect all pictures in a folder?

Hey there, Quoted from "spysonic" i cant seems to find any answers for detecting any pictures in a certain folder. I wanted to have a simple form with a combo box. Upon starting the application It would Detect all the picture inside the folder and display the names in the dropdown. is that possible.. please I need help. have a look here: https://code.google.com/p/jabacoframewor…ileListBox.jsrc ... and I suggest digging the framework for inspiration... Dani

Monday, July 28th 2014, 9:25am

Author: Dani

Redirecting standard output and standard error, to text boxes

Hey there, nice sample on how to redirect an output stream. THANKS... BY using Quoted java/io/OutputStream as superclass for clsOutputStream you are allready overriding every generic method and property that you are addressing! So... Jabaco Source 1 2 3 4 5 6 7 8 9 10 Public Sub write( nOutputCharacter As Integer ) 'Me.writeOverridable( nOutputCharacter ) Dim cOutputCharacter As String cOutputCharacter = Chr( nOutputCharacter ) txtJBTextArea.AppendText( cOutputCharacter ) End Sub will do the job...

Friday, July 25th 2014, 2:04pm

Author: Dani

menubar creator

Quoted from "theuserbl" That problem have only exists on Win7/Win8 with the WindowsLookAndFeel. So I haven't seen it before. ... and I have not seen the bullets and checkboxes before ... NICE FIX

Thursday, July 24th 2014, 10:11am

Author: Dani

menubar creator

Hey there, very nice theuserbl THANKS... This makes things a lot easier! Why did you choose to use Java here? Also the OptionButtons do not show; but I know this a framework issue! Or do we have to put pictures as resources ... I don't remember!? index.php?page=Attachment&attachmentID=426 Dani

Thursday, July 24th 2014, 9:48am

Author: Dani

BASIC JABACO - DATABASE workarrounds

Hey there, Quoted from "spysonic" the problem occurs on the middle to last part of the jbgrid where it doesnt recognize a click. Are you using the latest framework, Jabaco.jar? See the link at the bottom of this post. Download the .zip file and extract to your Jabaco installation folder. Dani

Wednesday, July 23rd 2014, 4:12pm

Author: Dani

Is there a way to refer to a form at runtime?

have a look her at AbstractForm: https://code.google.com/p/jabacoframewor…stractForm.jsrc and this Function: 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 Private Function getParentContainer() As Container Dim comp() As java#awt#Component Dim i As Integer comp = Me.getComponents() Dim rootComp As Container For i = 0 To Ubound(comp) If comp(i).getClass.getName.equals("javax.swing.JRootPane") Then rootComp = Cast(comp(i), Con...

Wednesday, July 23rd 2014, 3:40pm

Author: Dani

Is there a way to refer to a form at runtime?

maybe he is talking about something like a 'Key Up Down Press Event' ...?

Wednesday, July 23rd 2014, 3:31pm

Author: Dani

Questions about the bottom windows, in the IDE

Quoted from "jbExplorer" but I was trying to find out if there was a way to redirect the output, before it hits that window. If you found a solution, please do share your code! Thanks Dani

Wednesday, July 23rd 2014, 10:39am

Author: Dani

Error - Exception - StackTrace

Hey there, if you want to access the StackTrace: Jabaco Source 1 2 3 4 5 6 7 'Import java#util#Arrays Dim Stack() As String, i As Integer Stack = Split(Arrays.toString(Err.getStackTrace()),",") For i = 0 To Ubound(Stack) Debug.Print Stack(i) Next i Dani

Tuesday, July 22nd 2014, 12:13pm

Author: Dani

Adding SQLITE as a Res file, possible or not?

Hey there, it would really help if you would post your code or project! You are talking about a RES file and a RES folder!!? Are you trying to put that into your .jar file? Have a look here for what is happening with you application once you start a compiled file: http://www.jabaco.org/board/1192-app-pat…ong-values.html Dani

Sunday, July 20th 2014, 3:14pm

Author: Dani

New MonthCalendar Control for the Jabaco framework

Verrückt! I wonder how come? It is on the todo list of DateTime.java though: Quoted /* Function Weekday(Date, [FirstDayOfWeek As VbDayOfWeek = vbSunday]) Function TimeValue(Time As String) Function TimeSerial(Hour As Integer, Minute As Integer, Second As Integer) Calendar Date Date$ DateAdd DateDiff DatePart DateSerial DateValue Time Time$ TimeSerial */ So we just delete the Now() function in the framework and then use our 'generic' Now() function !!! Just kidding... OlimilO has changed the Now(...

Saturday, July 19th 2014, 4:57pm

Author: Dani

New MonthCalendar Control for the Jabaco framework

by the way, the problem seems to be the Now() function: Time() ... Jabaco Source 1 2 3 4 5 6 7 8 Private Sub Command1_Click() Dim d As Date d = Time() MsgBox d & vbNewLine & _ Day(d) & " " & _ Month(d) & " " & _ Year(d) End Sub returns Source code 1 2 19.07.2014 09:23:47 19 7 2014 Dani

Saturday, July 19th 2014, 12:22pm

Author: Dani

New MonthCalendar Control for the Jabaco framework

Hey there, well, mainly I fixed all the MouseListener related bugs! That was what messed up the overall functionality. The DoubleClick sortout was not placed right. The return date (lables) does not jump randomly anymore when you select a diferent month than the initial one. The base for the date is java#util#GregorianCalendar not the Jabaco Date function. The difference to Jabaco Month() function is that java#util#GregorianCalendar .MONTH is zero based and in the Jabaco framework it starts with...

Saturday, July 19th 2014, 12:01am

Author: Dani

A working JBCalendar!

Hey there, Calendar.MONTH is zero based!!!!!!!!!!!! So here is a working Calendar Control: index.php?page=Attachment&attachmentID=418 Dani

Friday, July 18th 2014, 6:06pm

Author: Dani

New MonthCalendar Control for the Jabaco framework

Hey there, I just looked at the code again and found the bug in: 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 '########################### CreateControls Private Function CreateControls(ParentForm As UserControl, _ MListener As java#awt#Event#MouseListener, _ Count As Integer, _ Width As Integer, _ Height As Integer, _ pos0X As Integer, _ pos0Y As Integer, _ cxy As Integer, _ flip As Boolean) As Label() 'Creates an a...

WoltLab Burning Board