Search results for query: *

  1. B

    Textbox contents dissapear

    I have a textbox that is bound. No problems with this, but if I enter the box, hit enter, whatever I entered disappear from the textbox. I have no code on this either, so I dont see how It can be a coding problem. i need whatever i put in that box to stay there then add to my db
  2. B

    Obtain row number (not primary key)

    How do I get the row number like if I have 5 records 1 John 2 Jacob 3 Angela 4 Holly 5 Matt if Angela is called how do I get the row number of 3. Now 3 is not my primary key, just the row number. How would I go about coding this. I am using a data adapter, dataset, and a data reader...
  3. B

    Passing in 2 dates and sort

    How can I pass in two dates one say 05/16/2005 and the other 05/24/2005 and it gives me all the data in between the dates. I setup a parameter and assigned it to the group header in which it will sort it by. Didn't work, Thanks for any help
  4. B

    Modifying Data after Find

    OK my next problem is this. I am using a find feature that when I put in a stock number it goes to the number and brings up the info on it. This is how I am doing it. #Region "Finding Stock" Private Sub btnFind_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  5. B

    Directory Dialog Box

    Ive been looking online for a Directory Dialog Box. I'm on Vb.Net 2003 V1 and I have the File Open Dialog. Is there any way of coding it so it selects a directory instead. Thanks,
  6. B

    Writing zeros to DB

    I have a text box that when the form loads the text box displays: $0.00 The user can then put in a value or leave it the way it is. If they leave it the way it is then it doesnt write 0 to the database, it just leaves it blank. In order for my Crystal Report to work I need it to be 0 if the...
  7. B

    AutoDetect on ComboBox

    If I have a combo box that has say 4 values: Apple Banana Carrot How Can i make it so If I hit A then Apple will and B then Banana will appear in the box. I would assume I would have to use some ASCII values to compare the letter hit to the first letter of each of the 4 Values. Just need...
  8. B

    DatePicker and DB

    Hey everyone, I have a datepicker and I want it to write the current date to the database unless I click on it and pick another date. So by default I want the current date to write to the DB. Since today is the 18th I will use that as an example. If I want the datepicker to use 05/18/2005...
  9. B

    Crystal Report not showing new records

    This is a crystal report problem so im not sure if this goes into this forum. When I first created this form that keeps trck of vehicles there was already data in a database. So I went to go display some info on a Crystal Report and it worked fine. Now if I add new records to the database it...
  10. B

    Index of record

    I have a paramerized textbox that the user enters in a number. Now this number is not the index number. How can i get the index number of the number they put in the textbox....
  11. B

    Obtaining Index of a number

    I have a paramerized textbox that the user enters in a number. Now this number is not the index number. How can i get the index number of the number they put in the textbox....
  12. B

    Text changing

    I have 3 text boxes, and i coded them to get the value of each text box and in a currency format. What I am trying to do is when I click inside of the first box i want it to stay the currency format, and let me enter the number i want to. Then when i tab out of that box into another i want the...
Back
Top