Search results for query: *

  1. S

    Question Copying One DataGridView from form to form

    OK, so I have been programming for about 2-3 weeks total. I am not completely sure what you mean please explain.
  2. S

    Question Copying One DataGridView from form to form

    So my final goal is to take some columns from one form's datagridview (in form3) and place them into a seperate form's datagridview (form4). I started off by just trying to put all of the rows in there one-by-one. Later I will be moe picky about which rows I want. Below is the code I am using...
  3. S

    Question Multiple Forms

    Thank you for that, I opted for Method 1, so that I can have multiple versions of the form. This way the user can compare two sets of data if they want. The code for form2 now just fills the datagrid upont the forms creation. Below is is the code i used to make it an MDI application. Code...
  4. S

    Question Multiple Forms

    Background: OK, so I have two forms. Form1 is a bunch of user interface objects, Form2 is a datagridview. I want to make it so that when I click a button Page1 the program will store the user information and then create a SQL Query to fill From2. Problem: When I click the button the other...
  5. S

    Question Error reading : "date format picture ends before converting entire input string"

    By the way I have tried this code and it also gave the same error. WHERE DATE_RECORDED>=TO_DATE('" & fixed_startdate & "') And DATE_RECORDED<=TO_DATE('" & fixed_enddate & "')
  6. S

    Question Connecting to ODBC then parsing data, then viewing in datagridview

    Thank for your help. It seems to be working well now.
  7. S

    Question Error reading : "date format picture ends before converting entire input string"

    Error reading : "date format picture ends before converting entire input string" OK, so I am connecting to an ODBC, and parsing the data before it comes in. The Code works when I have just a date, but when I try to add a time I get an error. I guess the problem is that the ODBC requires a...
  8. S

    Question Binary file to txt

    Thank you for your input. I have recently come to the decision that someone must have taken the wrong data because I think the code looks right.
  9. S

    Question Binary file to txt

    OK here we go, Sorry about all of this confusion, but by the time I am don this will be the first program I ever wrote. Below is the new code I am using. It is giving me data that is 4 digits long. I am expecting this data to me no more than 3 digits long (max=999, but on the bright side of...
  10. S

    Question Binary file to txt

    Almost there OK so I tried that and it seemed to work well. The only problem now is that I expected to see negative numbers, and my output is all positive. Do you have any recommendations for that? Thank you John. CODE: Imports System.IO Public Class form1 Private Sub...
  11. S

    Question Binary file to txt

    Almost there OK, so I think I created a loop that does what I need, but the data doesnt look right for 2 reasons: 1. there is a box between every integer. 2. My signals store the data in 2 byte numbers, and Sbyte assumes they are 1 byte. how do correct these problems? Imports System.IO...
  12. S

    Question Binary file to txt

    My code So I have just been working on it for the last few hours, and this is the code that I have. The problem now is that it only retrieves the first group of data, and then stops. Should I be using a loop to retrieve the rest of the data? is so how would I set that up? Thank you very much...
  13. S

    Question Binary file to txt

    Hello, I have a Binary file that has data represented in 1604 bytes. each set of data within these groups is composed of short (2 byte) numbers. I would like to creat a vb.net program that takes this binary file then converts it to numbers, and then places it within a new text file. How would I...
  14. S

    Question Connecting to ODBC then parsing data, then viewing in datagridview

    Hey, so I am a new programmer, and I am trying to receive data from an odbc connection. I would like this data to be filtered before it comes in, and then I would like to view it in a datadgrigview. Below is some code I adapted from an example and it is getting an error that reads: ERROR...
Back
Top