473,397 Members | 2,116 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

How to enter data into VSFlexGrid at runtime

123 100+
Hi,

Can anyone tell me how to enter data into VSFlexGrid at runtime? Kindly send me coding of that.
Mar 29 '07 #1
11 4714
iburyak
1,017 Expert 512MB
The following code will fill the first 5 rows × 4 columns block of cells with numbers from 1 through 20.


[PHP]Private Sub VSFlexGrid1_Click()
With Me.VSFlexGrid1
For i = 1 To 5
For j = 1 To 4
.Row = i
.Col = j
.Cell(flexcpText, i, j) = (i - 1) * 4 + j
Next j
Next i
End With
End Sub[/PHP]
Mar 29 '07 #3
pureenhanoi
175 100+
Hi,

Can anyone tell me how to enter data into VSFlexGrid at runtime? Kindly send me coding of that.
I don't know which version of VSFlexGrid you have. But i usually use VSFlexGrid Pro 7.0.
To enter data into VSFlexGrid, you should set EditAble property to 1-flexEDKbd or 2-flexEDKbdMouse.
If that property = 2, you can click mouse on cell, and then enter data.
To enter data by code, you can use TextMatrix(row,col) method
example: VSFlexGrid1.TextMatrix(1,1) = "your data". Remember add at least one row and one col to enable enter data
Mar 29 '07 #4
Shailja
123 100+
I don't know which version of VSFlexGrid you have. But i usually use VSFlexGrid Pro 7.0.
To enter data into VSFlexGrid, you should set EditAble property to 1-flexEDKbd or 2-flexEDKbdMouse.
If that property = 2, you can click mouse on cell, and then enter data.
To enter data by code, you can use TextMatrix(row,col) method
example: VSFlexGrid1.TextMatrix(1,1) = "your data". Remember add at least one row and one col to enable enter data

Thanks. Now I am able to enter data in VSFlexGrid. After entering data into Grid, I want to save entered data into table. How to do coding of that? Kindly send me coding
Mar 29 '07 #5
vijaydiwakar
579 512MB
Thanks. Now I am able to enter data in VSFlexGrid. After entering data into Grid, I want to save entered data into table. How to do coding of that? Kindly send me coding
drive to loops one for row and another for col
adjust the qry
and execute it
Mar 29 '07 #6
pureenhanoi
175 100+
Thanks. Now I am able to enter data in VSFlexGrid. After entering data into Grid, I want to save entered data into table. How to do coding of that? Kindly send me coding
what kind of table will you save your data.
Mar 29 '07 #7
vijaydiwakar
579 512MB
Expand|Select|Wrap|Line Numbers
  1.  
  2. conn.begintrans
  3. with Flex
  4. for i=.fixedrows to .rows-1
  5. ssql="Insert into <tblname> (<filed1>,<Filed2>) values (
  6. for j=.fixedcols to .cols-1
  7. ssql=ssql & .textmatrix(i,j) & "" 
  8. if j<>.cols-1 then ssql=ssql & " , "  
  9. next
  10. ssql=ssql & " )"
  11. conn.execute ssql
  12. next
  13. end with
  14. conn.committrans
  15.  
like it
Try it
Good Luck
Mar 29 '07 #8
Killer42
8,435 Expert 8TB
Just a note to let you know, I've changed the title of the thread to something more appropriate than "help me soon".

MODERATOR
Mar 29 '07 #9
vijaydiwakar
579 512MB
've u tryed the code?
Mar 29 '07 #10
Shailja
123 100+
've u tryed the code?

I am able to enter data by setting its Editable property. Now listen my problem carefully.

I have kept only one row in grid at runtime. Now after entering one record, i want new row to be added dynamically so i can enter more data. How to do that? Plz let me know.
Mar 29 '07 #11
vijaydiwakar
579 512MB
I am able to enter data by setting its Editable property. Now listen my problem carefully.

I have kept only one row in grid at runtime. Now after entering one record, i want new row to be added dynamically so i can enter more data. How to do that? Plz let me know.
Now listen carefully
use flex.rows=flex.rows+1
for that
Mar 29 '07 #12

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Roberto Herrera | last post by:
Hello all, I am also having problems with the vsflexGrid. I can't make work the comboliste that I loaded into the vsFlexGrid Apparently the combolist is loaded, but when I make a click in the...
1
by: Shailja | last post by:
Hi, Can anyone tell me how to add new row dynamically at runtime in VSFlexGrid? I have only one row in my grid at runtime. Now after adding one row, i want second row to be dynamically add in...
1
by: Shailja | last post by:
Hi, Can anyone tell me how to set tab settings in VSFlexGrid? Control should move from one column to other. What property i need to set for that? Kindly let me know.
0
by: Shailja | last post by:
Hi, My form contains VSFlexGrid. There are 10 columns in it. I want to put combobox in each cell of column 2. I want to bind that combobox to database also. How to code that? Kindly help me. I...
3
by: Shailja | last post by:
Hi, I have kept combobox in VSFlexGrid. Now I want to make height and width of combo box to same height and width of that cell. How to do that? kindly help me soon if you know the asnwer.
4
by: Shailja | last post by:
Hi, How to lock perticular cell of VSFlexGrid. Suppose I want to lock cell of Row 1 and column 2. How to do that? Kindly let me know if u know.
1
by: Shailja | last post by:
Hi, Please go through the following code: i = VSFlexGrid.Rows i = i - 1 I am writting the statment VSFlexGrid.TextMatrix(i,0). Above statment generates an error "Type Mismatch".
0
by: Shailja | last post by:
hello, I want to lock particular cell of VSFlexGrid. How to do that? I want to lock cell (Row1, Column 2). Kindly let me know if u know the answer
1
by: Shailja | last post by:
I am using VB. I have one form in my project. I have following fields in that form 1) Bill No 2) Bill Date 3) Combobox of Customer 4) Address of Customer 5) Drug License No1 6) Drug License...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.