You are not logged in.

Search results

Search results 1-7 of 7.

Wednesday, July 13th 2011, 4:13pm

Author: emil

Error: Java.lang.NoSuchMethodError

I solved this problem by uninstalling the 6.26 JRE and installing the jre-6u20-windows-i586.exe. The problem with the 6.26 apeared only on some machines (2 of 7 tested Windows XP and Windows 7 systems), on others it went fine...cant explain why. So i will disallow any Java updates at the concerned Machines until a better solution has been found.

Tuesday, July 12th 2011, 10:16am

Author: emil

Fehlermeldung bei Deklaration "Dim MyRes as ResultSet" !?!?

Quoted from "DeKalle" Danke Dir, habs rausgefunden. Sag Mal, gibt es denn keine TabStop Eigenschaft und auch kein Form_Close() Ereigniss? Implements java#awt#Event#WindowListener führt zu einer Fehlermeldung: ist also auch kein Weg

Monday, July 11th 2011, 3:15pm

Author: emil

CLEAN JGRID

Post your code for better help.

Monday, July 11th 2011, 3:11pm

Author: emil

JBGrid Click event

I had simelar trouble: a click on a JBGrid row higher then 12 did not do anything. With your help and these lines it works: Quoted Source code 1 2 3 4 5 Implements java#awt#Event#MouseListener Public Sub JBGrid1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) Debug.Print "Mouse Down " & JBGrid1.Parent.getSelectedRow & ";" & JBGrid1.Parent.getSelectedColumn End Sub and JBGrid1.SelectionMode = flexSelectionFree JBGrid1.Editable= jbNotEditable 'und diese Zeile ist besonders...

Saturday, July 9th 2011, 11:16am

Author: emil

CLEAN JGRID

Sugestion: Source code 1 2 3 4 5 6 7 8 9 Public Sub JBGrid_clear(Grid as JBGrid) rows=Grid.Rows Grid.Rows=0 Grid.Rows=rows End Sub Public Sub Command1_Click() JBGrid_clear(yourJBGrid) End Sub Hope this helps around.

Saturday, July 9th 2011, 12:51am

Author: emil

Funny Workaround for Form_Resize

Source code 1 2 3 4 5 6 7 8 9 10 11 12 13 Public Sub Timer1_Timer() 'Interval=1000 Widht1=CLng(Form1.Width) If Widht2 <> Widht1 Then Form_serize Widht2=CLng(Form1.Width) End If End Sub Public Sub Form_serize() frmCSV.Width=clng(Form1.Width)-23 Tabelle.Width=frmCSV.Width-16 'and other things that should be done on resize End Sub

Thursday, July 7th 2011, 10:37am

Author: emil

Euro (€) Character Question

Hallo, little Question: How can i write an Euro Character out from Jabaco ? It only shows "?" .Maybe this Question is already answered, please tell me. The code below is only as example, problems occured on a bigger project; compiled to a jar file "€" is not supported on windows, on linux "äüßö "etc. too. Is it up to the encoding ? Have i to tell Jabaco about the charset ? Source code 1 2 3 4 5 6 7 8 9 'Type an EURO Character (€) and hit cmd1 'look at the saved file Dim file As VBFileHandler Pub...

WoltLab Burning Board