How can I select an item from a table using the wwGenericSQLGrid?
D
Answer by
Dan Angel
If wwGenericSQLGrid is installed and configured correctly within the InTouch ActiveX container, open an InTouch quickscript and type the following code:
In order to get the selected value/item, you will need to enter:
Selection = #Grid1.GetSelectedCellValue();
You can find further information if you open the wwGenericSQLGrid.mht file that comes packaged with the wwGenericSQLGrid software. If you don't have the software, you can download it from the official web page. Also, you will need to create an account.
No, there is no PrintGrid method mentioned in the program "wwGenericSQLGrid" for Windows.
How can I select an item from a table using the wwGenericSQLGrid?
If wwGenericSQLGrid is installed and configured correctly within the InTouch ActiveX container, open an InTouch quickscript and type the following code:
#Grid1.Server = Server;
#Grid1.Database = Database;
#Grid1.UserID = UserID;
#Grid1.Password = Password;
#Grid1.Connect();
This will allow you to connect to the database. After that, if you want to get a specific value/item from a cell, type:
Selection = #Grid1.GetRowColumnValue( Row, Column);
In order to get the selected value/item, you will need to enter:
Selection = #Grid1.GetSelectedCellValue();
You can find further information if you open the wwGenericSQLGrid.mht file that comes packaged with the wwGenericSQLGrid software. If you don't have the software, you can download it from the official web page. Also, you will need to create an account.