Forum: VB.NET Nov 30th, 2008 |
| Replies: 4 Views: 5,758 thanx guys............well the problem is, its not a new project.........some other programmer has already created the database and entered a lot of data ......so, im trying to use the same... |
Forum: VB.NET Nov 27th, 2008 |
| Replies: 10 Views: 43,512 u dont even have to create an object of the form.
just form2.show() if your calling it from another form and
Me.show() if your calling itself. |
Forum: VB.NET Nov 27th, 2008 |
| Replies: 10 Views: 1,954 for lowest
arr[0] = low
if(arr[i]<low)
low = arr[i]
come on dude i guess that was obvious... |
Forum: VB.NET Nov 27th, 2008 |
| Replies: 10 Views: 1,954 Im just talking about the logic irrespective of language. |
Forum: VB.NET Nov 26th, 2008 |
| Replies: 10 Views: 1,954 OMG why so much of work
int arr[5]
int hig
int low
high = arr[0]
for (i=1;i<5;i++)
{
if ( arr[i] > high)
high = arr[i] |
Forum: VB.NET Nov 26th, 2008 |
| Replies: 4 Views: 5,758 Doing a small project in which data from warranty cards are entered into a database ie. warranty card number, salesman name and ID, etc etc......after all the data has been entered into the database... |
Forum: VB.NET Oct 8th, 2008 |
| Replies: 3 Views: 427 so your suggesting to use SQl to validate it? My idea was load each table into a dataset->datatable and compare each row with the row object. I dunno whether its the optimum way to do it coz im not... |
Forum: VB.NET Oct 7th, 2008 |
| Replies: 3 Views: 427 Im havin a heck of a problem. I have a database with 800 tables. All the tables are the same with the same fields. Each table is a survey form. My table structure is as follows:
FPC_Code |... |
Forum: VB.NET Oct 7th, 2008 |
| Replies: 1 Views: 596 Writing programs for smart devices are the same as writing programs for any desktop application in VB. The only difference is that you have to download the SDK for the OS (Windows mobile 5,6... |
Forum: VB.NET Sep 26th, 2008 |
| Replies: 7 Views: 2,425 Yeah Yeah... Thanks a lot . I did exactly that before you posted your reply. Thanks anyways , your first post gave me a head start. Thanx a lot . appreciate it.
Now i have a different problem... |
Forum: VB.NET Sep 25th, 2008 |
| Replies: 7 Views: 2,425 The problem is that im declaring the variable cmdText2 in a calss declaration and not in a function. So when i try to use it ie.
Dim cmdText2 as String
cmdText2 = "SELECT * FROM XTABLEX"
in... |
Forum: VB.NET Sep 24th, 2008 |
| Replies: 7 Views: 2,425 Thanx....Ill try that out and let you know.. |
Forum: VB.NET Sep 24th, 2008 |
| Replies: 1 Views: 479 USE DataGridView and bind the grid with a datasource . first create a new datasource with the table you want to populate in the grid and then populate the grid with that datasource.....The... |
Forum: VB.NET Sep 24th, 2008 |
| Replies: 2 Views: 426 You cannot bind one list box to 2 data items. You will have to use two listboxes. |
Forum: VB.NET Sep 24th, 2008 |
| Replies: 5 Views: 1,590 Ur Problem is pretty simple. This is what you have to do:
When the ID is entered inot the textbox im assuming that it is saved in ur database in some column.
Your items in the Combobox have to... |
Forum: VB.NET Sep 24th, 2008 |
| Replies: 7 Views: 2,425 Im currently working on a project to build an application for Windows Mobile 6. Im just stuck with this stupid issue:
I have a SQL query string:
Dim connectionString2 As String = "Data source = "... |