|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
|
|
#1
|
|||
|
|||
|
Datagrid help or Flex grid help
I was wondering if anyone knew of any information on these two topics that could help on how to set them up to be used and which one would be better to use.
Thanks for any information you could provide.
__________________
Jay Rye :Cool: |
|
#2
|
||||
|
||||
|
You can find both of these on the msdn site and by googling for them.
I personally don't use a data grid that often except when dealing with resultsets from a database, but for logging and reporting I use a flex grid. |
|
#3
|
|||
|
|||
|
I will try this I need to add information to a datagrid unless there is a way to make a form continuos without using the grid.
Well thanks for the help. |
|
#4
|
||||
|
||||
|
Are you using this with a database or just through some other input?
|
|
#5
|
|||
|
|||
|
I am using an SQL Database. What I am trying to do is.
I have a form that has two datacombo boxes that gives a list of items. What I need the user to be able to select these two Items and then enter Issue Numbers into a Field below. That is why I am trying to use the datagrid to make this happen. The user should be able to enter these numbers without going to a different form. There could be as many as 200 issue at a time and there could only be 1-10 so that is what I am trying to do I hope this will help. Thank you for helping me so much. |
|
#6
|
||||
|
||||
|
So you are using the datagrid as a recording instrument, not a display instrument?
|
|
#7
|
|||
|
|||
|
Yes that is what I am trying to do.
|
|
#8
|
||||
|
||||
|
Well, you have to do something like have a add new button and say you have a bound data grid control called DBGrid1
you could do something like: Code:
Private Sub Command1_Click()
DBGrid1.MoveLast
DBGrid1.SetFocus
DBGrid1.AllowAddNew = True
DBGrid1.Columns(0).AllowFocus = True
End Sub
|
|
#9
|
|||
|
|||
|
I will try this and see if it works.
Thanks. |
|
#10
|
|||
|
|||
|
I tried the code you sent and in the drop down window I do not get the same information that you put in your code.
Such as Datagrid1.Movelast in the dropdown menu movelast is not a selection It is also not allowing me to set the datasource as well. So none of the other information is working. Do you have any suggestion that might help. Thanks again |
|
#11
|
||||
|
||||
|
what is the exact kind of control that you are using?
|
|
#12
|
|||
|
|||
|
I am using a datagrid to do this
|
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > Visual Basic Programming > Datagrid help or Flex grid help |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|