Search:

Type: Posts; User: jammin17

Search: Search took 0.05 seconds.

  1. Replies
    4
    Views
    676

    Re: [2005] datagridview problems

    It is a bound grid....just upon load, it takes about 45 seconds to load....not sure why. If I figure out why it is loading so slow, it will probably fix the update as well.

    jam
  2. Replies
    4
    Views
    676

    [2005] datagridview problems

    Guys, I have been working hard on a program using a datagridview with an access database. This thing loads SOO slow and updates to the database are just as slow......any ideas how to use anything to...
  3. Replies
    5
    Views
    758

    Re: Silly Silly Timer......

    Anyone?
  4. Replies
    5
    Views
    758

    Re: Silly Silly Timer......

    Now, wait a second, I have this delay routine that uses Timer,which is called in Command2_Click but I am assuming that is not my Timer1 control....could their be a conflict there? This is the only...
  5. Replies
    5
    Views
    758

    Re: Silly Silly Timer......

    This is what I basically have happening, but Click2 is an infinite loop, so it never finishes that specific end if statement. But it does recall startthetimer within the loop.
  6. Replies
    5
    Views
    758

    Silly Silly Timer......

    Guys I can't seem to figure this issue out with this timer. I hope someone can shed some light.

    This seems to work fine and I can call this routine (startthetimer) over and over, it will...
  7. Replies
    0
    Views
    575

    [2005] listbox scroll event

    I have a listbox with information I am pulling from. Upon every scroll on the listbox, I want the code to run with the selected value in the listbox by using the horizontal scroll bar on the right. ...
  8. Re: [2005] Connectionstring at runtime w/wizard?

    Yup, you can fill it at any time after the string is set. I set ours up to change databases any time the actual file is changed. This makes it much easier on a network install to deal with.

    jam
  9. Re: [2005] Simple edit statement for editing a cell in datagridview

    This worked for me...

    DataGridView1.CurrentCell.Value = "somevalue"


    jam
  10. Re: [2005] Connectionstring at runtime w/wizard?

    InventoryTableAdapter.Connection.ConnectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source = " & TextBox1.Text
  11. Re: [2005] Connectionstring at runtime w/wizard?

    Could I get an example?

    jam
  12. Re: [2005] Connectionstring at runtime w/wizard?

    No way to do it programmitically?

    jam
  13. [2005] Simple edit statement for editing a cell in datagridview

    Can anyone help with the syntax of a simple edit statement for editing a cell in a datagridview?

    Thanks, I can't seem to find the answer, been looking all day.

    jam
  14. [2005] Connectionstring at runtime w/wizard?

    How do you set your connectionstring at runtime if you use the wizard to set up your database?

    jam
  15. Re: [2005] Any way to sort a datagridview upon load if bound?

    Ok, but what is the difference in saving to the datagridview and updating the datatable with that information or updating the datatable period....an edit is an edit, as long as it gets updated, it...
  16. Re: [2005] Any way to sort a datagridview upon load if bound?

    How do you set your connectionstring at runtime if you use the wizard to set this up?

    jam
  17. Re: [2005] Any way to sort a datagridview upon load if bound?

    Ah, thank you. I did finally find the sort property to cure the sort issue just a minute ago. Thank you for all your help.

    I am working on trying to query this datagrid and select the actual...
  18. Re: [2005] Any way to sort a datagridview upon load if bound?

    i used the wizard, so I dont see this code.

    jam
  19. Re: [2005] Why so long to load a datagridview?

    I built it and it loads quicker on the executable, I guess it doesn't like to load fast upon debug. I am working off of the bound version now, seems to load a tad quicker.

    jam
  20. Re: [2005] Any way to sort a datagridview upon load if bound?

    I dont see exactly where I am supposed to code this within this form with the bound datatable. ??
  21. [2005] Any way to sort a datagridview upon load if bound?

    Is there a way to sort a datagridview if you have a bound database upon load?

    jam
  22. Re: [2005] Why so long to load a datagridview?

    i tried it bound as well, about the same time, 50 seconds. I did a preview when binding the database to the grid and it only took about 10 seconds.....why is this sooo slow?

    jam
  23. [2005] Why so long to load a datagridview?

    I have 21,116 records loading from an access db loading into an datagridview upon load. Here is the code I am using below to do so. Why is it taking 50 seconds to load this database into...
  24. Replies
    3
    Views
    634

    Re: [2003]DataGrid Woes oh what fun....

    The first example worked, thank you very much. It sorted to the column I needed perfectly.

    I think I see what I am doing....I am querying the table instead of the datagrid so the sorts are not...
  25. Replies
    19
    Views
    1,169

    Re: 2005 compared to 2003

    Thanks for the input. What about the webbrowser control, like in vb6. I noticed you could add it, but the problem is that it will not work with IE7. Does 2005 have a newer version of this for the...
  26. Replies
    19
    Views
    1,169

    Re: 2005 compared to 2003

    Where is the best place to get a copy?
  27. Replies
    19
    Views
    1,169

    2005 compared to 2003

    What makes this a better alternative? I have 2003 now, I am hoping the datagrid controls are better at least....
    :afrog:

    jam
  28. Replies
    3
    Views
    634

    [2003]DataGrid Woes oh what fun....

    Guys, I am have some serious issues with the datagrid in vb.net 2003. I need some help. I have a datagrid that is currently working with an access database we have. The problem we have is that...
  29. Replies
    0
    Views
    339

    Verifying images on the internet...

    Guys, I hope you can help. I have a site on the net, and I am writing some code to check to see if the image exists on our site. If it does I do some tasks and if it does not, I do some other...
  30. Re: Another Webbrowser control question for input.

    I have a web page I am signing in on..... user password and then submit....
    Once you have authenticated yourself, then you go to the upload page. When I submit the username and password, it goes...
  31. Re: Another Webbrowser control question for input.

    Thanks everyone....that worked great!!!!....I was not aware of the Sendkeys function. This is the first time I have used it. The upload function worked fine!

    I do have one more issue though.......
  32. Re: Another Webbrowser control question for input.

    For some reason, it did type it in the box, but upon submit, it did not submit it...it did not see the text for some reason.

    jam
  33. Another Webbrowser control question for input.

    I am trying to input a filename into a web form and submit it...the html for the page shows this...

    <input name="UploadFileName" type="file" size=30>

    This statement:
    ...
  34. Replies
    134
    Views
    610,816

    Re: Webbrowser Control Tip and Examples

    Is there any way to fill an input box type = "file" with a filename to upload automatically in the webbrowser? I can't seem to get this to work. I can fill in everything else and click submit, but...
Results 1 to 34 of 34



Click Here to Expand Forum to Full Width