Search results for query: *

  1. BlackByte

    decimal.parse

    Try 'step in' code, to see what value your variable holds when it is being parsed.
  2. BlackByte

    Question Get user input into array

    Its always recommended to use the generic version of a list. Dim numbers As New List(Of Integer) this prevents unboxing.
  3. BlackByte

    Question General Error - overflow

    This not the way to write an sql statement. Im sure even you have a problem reading and understanding it.
  4. BlackByte

    Question General Error - overflow

    whoah, please google 'using sql parameters in vb.net', it will prevent errors such as yours and make your code much cleaner.
  5. BlackByte

    Help with project

    where is the information coming from?
  6. BlackByte

    Save method

    oh now i remember i usually use the expression: If table.GetChanges() Is Nothing Then 'there are no changes End If
  7. BlackByte

    Question Future Date Calculation

    hey johnH, the date.AddDays(), just never seem to work the right way for me, even posted about it on this forum, i just ended up using the TimeSpan.
  8. BlackByte

    Save method

    there is a method for checking if table data has change. Just can't seem to remember it now. Look at the properties and methods of the table using the intellisense dropdown, im sure its easy to spot. i also don't think there is a need to check if there are any rows added, deleted, etc...
  9. BlackByte

    Question move picture box

    try this code its for moving a form but works with any control Moving Borderless form using Mouse
  10. BlackByte

    Dragging around the form

    look at this example, its for moving a form, but works with any control Moving Borderless form using Mouse
  11. BlackByte

    Find word in text file and write a line

    please also look at the following to learn how to format your post (especially code) for better readabilityBB Code List - Visual Basic .NET Forums
  12. BlackByte

    Find word in text file and write a line

    Instead of : Try 'warning untested code TextBox2.Text=ENew.Insert(pos,"AAAAA")
  13. BlackByte

    Data Repeater

    hi, im taking a shot in the dark here. But i think you might be looking for control.DataSource=dataset control.DisplayMember="columnName" and also; i don't get why you put the table data in the dataset then bind the repeater to the dataset, is it not possible to bind the repeater to the table...
  14. BlackByte

    Find word in text file and write a line

    Look up the following : System.IO.StreamReader() String.Contains() String.Insert() oh and alsoSystem.IO.StreamWriter() and My.Computer.FileSystem.WriteAllText() 'dont know if i got the method name correct
  15. BlackByte

    Question Future Date Calculation

    try TimeSpan Structure (System) and also do a search on google.
  16. BlackByte

    Internet Cafe Management Software

    hi, as you say you are a beginner, a web application would be a bit complicated. I would suggest a making one computer a server and having all the applications update that 1 server.
  17. BlackByte

    Question Update Command Error

    coudn't have said it any beter..
  18. BlackByte

    Help with database connection

    hi, i think your question is a little hard to answer given the lack of clarity in what its supposed to do / what you are trying to archieve. Please also explain what is the purpose of 'byt_term - 9'
  19. BlackByte

    Help with database connection

    hi i think your missing the '=' next to column_name
  20. BlackByte

    calculate bytes sent/recieved by web browser(IE)

    nyce wow nyce, what a handy trick, thanks john
Back
Top