You are not logged in.

Search results

Search results 21-40 of 88.

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, December 4th 2012, 12:58pm

Author: fomaxrge

how can i check if insert or update is done?

does anybody have any idea how to do it? I appreciate any help.

Friday, November 30th 2012, 3:13pm

Author: fomaxrge

call end problem

Your solution worked fine! The error was "COMPILER_ERROR" and marked the word END only this occurred. Thank you very much!

Thursday, November 29th 2012, 5:19pm

Author: fomaxrge

call end problem

Hi again i need your opinion please. Do you know WHY sometimes "call end" occur problem when compiling. Some times there is no problem.

Friday, November 23rd 2012, 4:33pm

Author: fomaxrge

Handle combobox only with double click

Hi again! After many tries that did not work i am asking your help again. Does anybody know how to handle my combobox ONLY with double click?

Thursday, November 22nd 2012, 9:51pm

Author: fomaxrge

JBGrid scoll to first and last row

I will try you solutions. Thank you very much for your help. It is good that you are here, all of you, and help as. Thanks again.

Thursday, November 22nd 2012, 12:25pm

Author: fomaxrge

JBGrid scoll to first and last row

Hi again, is there someone that can help me? I have a JBGrid with a scroll bar. I also have a button called top and one called bottom. How can i enable first row when i press TOP and how can i move to last when i press BOTTOM? Thanks in advanced!

Monday, November 19th 2012, 4:45pm

Author: fomaxrge

combobox in a jbgrid cell

Dani my solution to hide the combobox is something like this... Jabaco Source 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 Public Sub Form_Load() ComboBox1.Visible = False ComboBox1.CanGetFocus = false ComboBox1.Enabled = false End Sub Public Sub JBGrid1_Click() If JBGrid1.Col = 1 Then ComboBox1.Visible = True ComboBox1.CanGetFocus = True ComboBox1.Enabled = True End If End Sub

Monday, November 19th 2012, 3:59pm

Author: fomaxrge

combobox in a jbgrid cell

bad luck for me because that was the way i have started to work. Now i have made a lot of code with the other way. I have search option work perfect, Also Delete and Insert... BUT now that i have to make the update option the things are very very bad on me. Do you have any idea to handle my combo with double click?

Thursday, November 15th 2012, 4:36pm

Author: fomaxrge

combobox in a jbgrid cell

Dani even thought i have tried to put my combobox behind my grid when the program runs i see them again

Thursday, November 15th 2012, 10:59am

Author: fomaxrge

combobox in a jbgrid cell

Hi Dani! Quoted from "Dani" about the 'DblClick()' ...you mean in the 'cboList'? Yes Dani in the cbolist i mean because all the other columns i edit on double click and i want to handle it with double click too. Is it easy?

Wednesday, November 14th 2012, 4:41pm

Author: fomaxrge

combobox in a jbgrid cell

Hi again i wonder is it possible to handle my combobox with double click instead of click. I tried but it doesn't work on me. Also it would perfect if someone knows how can i hide my combobox (before i put it in my JBGrid i do not want to show in on my form) is it possible? Thank you!

Wednesday, November 7th 2012, 4:58pm

Author: fomaxrge

how can i check if insert or update is done?

how can i check if my INSERT or UPDATE query is done? for example Jabaco Source 1 2 3 4 5 6 7 8 9 10 Order.executeUpdate("INSERT INTO esoda_exoda (poso, katigoria) VALUES ("poso","katigoria"") if done then msgbox "insert" else msgbox "no insert" end if Thanks in advanced!

Monday, November 5th 2012, 11:02am

Author: fomaxrge

combobox in a jbgrid cell

Thank you Dani for your precious help i think that i did what i was looking for. I am testing it now. Thanks again.

Thursday, November 1st 2012, 3:47pm

Author: fomaxrge

combobox in a jbgrid cell

Have a good month Dani! i tried to find a way to print selected value of combobox2 whenever it change but i did not succeed. i am trying to do something like this... public sun combobox2_change() JBGrid1.Editable = jbEditOnClick JBGrid1.Parent.getColumnModel().getColumn(4).setCellEditor(New javax#swing#DefaultCellEditor(ComboBox3)) Set Data = Order.executeQuery("SELECT * FROM katigories WHERE katigories = combobox2 GROUP BY ipokatigories ORDER BY ipokatigories") Do While Data.next() MsgBox JBGri...

Wednesday, October 31st 2012, 3:23pm

Author: fomaxrge

combobox in a jbgrid cell

Dani can you please help me how to do something like this... Public Sub Form_Load() ComboBox1.AddItem("first entry") ComboBox1.AddItem("second entry") ComboBox1.AddItem("third entry") End Sub Public Sub ComboBox1_Change() MsgBox("your selection is " + ComboBox1.Parent.getItemAt(ComboBox1.ListIndex)) End Sub

Wednesday, October 31st 2012, 3:02pm

Author: fomaxrge

combobox in a jbgrid cell

hi dani i tried to add this.... Public Sub ComboBox1_Click() ComboBox1.Parent.setSelectedIndex(-1) End Sub and even thought it keeps the first selected value when i click on the cell i see it empty how can i see when i click on it... test Yes No

Wednesday, October 31st 2012, 12:01pm

Author: fomaxrge

combobox in a jbgrid cell

Yes it solved my problem... JBGrid1.Parent.getColumnModel().getColumn(2).setCellEditor(New javax#swing#DefaultCellEditor(ComboBox1)) thank you very much! 1.---------------------------------------------------------- is there a way to open the combobox without auto selected the first item? for example if i have... Public Sub Form_Load() JBGrid1.Editable = jbEditOnClick ' JBGrid1.SelectionMode = flexSelectionByRow Dim ComboBox1 As javax#swing#JComboBox = New javax#swing#JComboBox ComboBox1.AddItem(...

Tuesday, October 30th 2012, 5:03pm

Author: fomaxrge

combobox in a jbgrid cell

as i see this code occurs the problem on me... JBGrid1.Parent.getColumnModel().getColumn(2).setCellEditor(New DEFAULTCellEditor(ComboBox1))

Tuesday, October 30th 2012, 4:37pm

Author: fomaxrge

combobox in a jbgrid cell

could you please send me the example in zip because i did what exactly you told me but i am still having "COMPILE_ERROR"

WoltLab Burning Board