Search:

Type: Posts; User: marniel647

Page 1 of 7 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    817

    Re: Data Grid View not displaying data :(

    Can you post your code here so we can check.?
  2. Replies
    3
    Views
    1,018

    Re: Incorrect Syntax near @Parameter

    Thanks Kebo. i miss those ")" in both of my Update statement.

    But i'm still having a problem with the conversion in this line. It said that "Conversion Failed when converting date time from...
  3. Replies
    3
    Views
    1,018

    Incorrect Syntax near @Parameter

    I already been looking in the net for the solution but none of them seems to work. I want to insert a data in my database but it always have an error of incorrect syntax near @AdditionalNotes. I'm...
  4. Replies
    4
    Views
    685

    VS 2010 Re: Trouble getting data from database

    You're missing a ' (Single quote) in your statement. As Sir geek Suggest i think you must learn how to use parameter.
  5. Replies
    3
    Views
    941

    Re: VB.NET Tools Missing

    Maybe your are only in the general? :)
  6. Replies
    3
    Views
    712

    VS 2010 Re: Get data from a website and show it

    Yeah if you now what the code behind the site then you can get the name. just get the element ID of the name.
  7. Replies
    25
    Views
    2,120

    VS 2010 Re: Data connection

    Try to check again the connection maybe the connection string is wrong. I always get my connection string in this way

    open the data source tab
    click add new source
    and click next and when you...
  8. Replies
    17
    Views
    1,726

    Re: How Do You Grab An Element and download it

    So do you want to download a picture or a file in a website?
  9. Replies
    6
    Views
    918

    VS 2010 Re: Post data on a Flash-form of a website

    You must know the code behind the flash. and also the controls that is use in the flash and after that you can use WebBrowser class or the webrequest.

    If you cannot find the code of the flash. If...
  10. Replies
    8
    Views
    1,111

    VS 2010 Re: Access functions from a class?

    try to create a new instance of your class which is MyClass

    IniBot = new MyClass
  11. Re: Binding XML File to DatagridView

    By The Way i just figured it out I have the use the Column Twice in my LoginDB so i just set a new loginDB with a Username and password Column i gonna close this thread. :)
  12. [RESOLVED] Binding XML File to DatagridView

    Hi guys i'm having a problem in binding XML file to datagridview i have a XML file and read it using dataset and then i bound dataset to datagridview but it does not output in the grid and it does...
  13. Replies
    10
    Views
    1,200

    Re: Try....Catch Help

    You can add Finally Statement in your Try and catch block as Dday said.
  14. Replies
    1
    Views
    3,710

    Re: Click Listboxes and the UI freezes

    Can we See your code. Maybe your code is causing the UI to freeze. Maybe some Routine is running in the background and cannot continue another Statement to run until it finish.
  15. Replies
    7
    Views
    1,095

    VS 2010 Re: Help with my first function!

    If you wanna get only the username just change your Select Query to just Username don't put the email and mobile.
  16. Replies
    11
    Views
    1,413

    Re: Won't Work :[

    You can visit the Regex Library in my sig if you're having problem in regex
  17. Replies
    3
    Views
    695

    VS 2010 Re: condition of the file

    You can try

    OpenFileDialog.filter = "Text Files (*.txt)|*.txt"

    if you want to filter only text files.
  18. Replies
    26
    Views
    2,885

    VS 2010 Re: Getting connection error

    Based on your screenshot it looks like the path of your sql connection is wrong try to check the connection string.
  19. VS 2010 Re: updating sql server after changing datagridview

    I always put the open connection after my query or before i invoke the ExecuteNonQuery, etc of the command class in ADO but still the same when using SQL. so i suggest that you put the...
  20. Re: How to implentate a databse in my project ?

    No error prompt when you try to drop the Fields into the form?
  21. Replies
    18
    Views
    2,315

    Re: Switch Statement

    Yeah i agree also to JMC you cannot learn if you don't know what is the reason why do you use that code.? You must know how controls/class work. If you want to learn you must ask for suggestion not...
  22. Re: hello.. i need a problem to call data and view using listview

    It is better if you use parameters in your query. You can follow the Retrieve and save DATA in my sig.
    Also you cannot compare string to integer. you can removethe (i > 0 ) and the dim i as string....
  23. Replies
    1
    Views
    1,431

    VS 2010 Re: add password to table adapter

    try to change the database connection. The Connection from the table adapter is come from your SQL or OLEDB Connection. Try to change it with the connection string that has the password.
  24. Replies
    14
    Views
    1,548

    Re: Not Responding

    Try to use multithreading in your Application
  25. Replies
    7
    Views
    944

    Re: Code Converter?

    Can you elaborate some info on your problem. What code is the Input and what is the output.
  26. VS 2010 Re: DOWNLOAD MANAGER were to star how to implement it

    Ok just try to start the project and if you got error we will try to help you. :)
  27. Replies
    4
    Views
    774

    Re: Need help Creating this program!!

    Yeah we don't tolerate creating that kind of program.
  28. VS 2010 Re: DOWNLOAD MANAGER were to star how to implement it

    You can Study about WebRequest it can download files even you dont use a webbrowser.
    Also you must learn Multithreading so you can download files 3 or more files at the same time.
  29. Replies
    3
    Views
    739

    VS 2010 Re: Webbrowser questions

    You can use webRequest for more info you can read thru MSDN.
  30. Replies
    1
    Views
    3,245

    Re: Crystal Reports for VB2010

    What Sap Did you install the full.? What package did you install?
  31. Replies
    4
    Views
    644

    VS 2008 Re: Display form with last setting

    I just wanna try this Jm want you to add a condition in your project settings. and then you can accessed that in your code by using My.Setting.UseLargeSize = true or false and then you can use the...
  32. VS 2010 Re: Failed to update access databse.

    Try to put = after the StockNumber in your query.
  33. Re: hello.. i need a problem to call data and view using listview

    Maybe you can read in this site it's all about connecting vb.net to my SQL
    http://www.dreamincode.net/forums/topic/115753-use-vbnet-to-connect-to-mysql/

    i dont use mysql so i just search it. but...
  34. Re: hello.. i need a problem to call data and view using listview

    If you want to call data into database you can use a SQL query like this :


    Dim command As New OleDb.OleDbCommand("Select Role FROM LoginDB where [Username] = @Username", con)

    and you can...
  35. Replies
    9
    Views
    1,134

    Re: Cannot Recreate Controls in My form

    Thanks for the Reply Guys i can now recreate the controls but even i put a text in the textbox control it does not retrieve the text in the textbox.

    also When i click the "No" in the messagebox in...
  36. VS 2010 Re: Trouble gathering information using Datareader and DataGridView

    try to remove the () in ADT and in your where clause..
  37. Replies
    12
    Views
    1,181

    Re: Move data to new table

    I suspect you have no ID field in your database try to change that to the field that contain your ID and try it again.
  38. Re: hello.. i need a problem to call data and view using listview

    maybe in this word "FillListView" is the problem it is not declare.
  39. Re: Please Help - Macro Converts, but forgets to add final letter.

    I think you must post it in a Office Development Section.
  40. VS 2010 Re: Trouble gathering information using Datareader and DataGridView

    You don't have any query that's why it output an error put a query in strSQL
Results 1 to 40 of 261
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width