Search:

Type: Posts; User: AtomRiot

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    11,275

    i have never had this issues but there is a KB...

    i have never had this issues but there is a KB for it.

    http://support.microsoft.com/kb/313666

    sorry to only be posting links but once again i have never seen this issue.
  2. Replies
    6
    Views
    11,275

    http://www.codeguru.com/cpp/controls/controls/list...

    http://www.codeguru.com/cpp/controls/controls/lists,treesandcombos/article.php/c2291/
  3. Replies
    2
    Views
    3,672

    so your trying to read in a CSV file and then do...

    so your trying to read in a CSV file and then do the OLE DB stuffs?


    http://www.csharphelp.com/archives/archive132.html
    http://msdn2.microsoft.com/En-US/library/aa288452(VS.71).aspx
  4. Replies
    8
    Views
    3,357

    for going the ftp route ...

    for going the ftp route

    http://www.madskristensen.dk/blog/Simple+FTP+File+Upload+In+C+20.aspx
  5. Replies
    8
    Views
    3,357

    well chances are you will have to upload it via...

    well chances are you will have to upload it via some http since most web sites do not have direct write access to the files you can view.
  6. Replies
    8
    Views
    3,357

    did you try to read it in and store it, then...

    did you try to read it in and store it, then alter it, then use StreamWriter to write it back?
  7. Replies
    2
    Views
    1,777

    yeah the resolution was to use the controls...

    yeah the resolution was to use the controls Capture property rather than using a bool. the new code looks like



    private void button1_MouseDown(object sender, MouseEventArgs e)
    {
    ...
  8. Replies
    3
    Views
    1,559

    http://www.google.com/search?hl=en&q=send+email+c%...

    http://www.google.com/search?hl=en&q=send+email+c%23&btnG=Google+Search

    http://www.google.com/search?num=100&hl=en&newwindow=1&safe=off&q=c%23+read+file+tutorial&btnG=Search

    have any more...
  9. Replies
    1
    Views
    8,717

    I encapsulated mine to check the button that...

    I encapsulated mine to check the button that returned but otherwise i tried your code and it works fine for me. Although, I do use Image rather than BackgroundImage





    DialogResult dResult =...
  10. Replies
    7
    Views
    2,018

    ok, i see. You just dont want the GUI portion to...

    ok, i see. You just dont want the GUI portion to do everything for you. You want to handle everything past the creation of the form.

    in that case, i would make a test project and just drag some...
  11. Replies
    7
    Views
    2,018

    well thats what i was confused about, you want to...

    well thats what i was confused about, you want to start with an empty form so you run the app and then have stuff appear later?
    or you just want to manually add all the controls in the code...
  12. Replies
    2
    Views
    2,178

    you can create a public function in form2 to do...

    you can create a public function in form2 to do whatever you want so you can call it and send it whatever, like if you have a label in form 2 you could create a public SetLabel(string) function in...
  13. Replies
    7
    Views
    2,018

    like on a timer? or just from user interaction? ...

    like on a timer? or just from user interaction?

    like if you have only one button on your form, then when clicked it would create text boxes or other buttons? something like this?

    the easiest...
  14. Replies
    2
    Views
    1,777

    Crazy loss of focus issue (i think)

    ok, i have a button that i am dragging around. this much i can handle, but then i thought i would put it on a panel (like change the parent attribute) until the time came to use it and then when the...
  15. Replies
    11
    Views
    1,459

    http://www.google.com/search?num=100&hl=en&newwind...

    http://www.google.com/search?num=100&hl=en&newwindow=1&safe=active&q=c+file+io+tutorial&btnG=Search
  16. Replies
    4
    Views
    2,982

    Thanks KONI for that infinitely productive and...

    Thanks KONI for that infinitely productive and enlightening response.

    Brane, you want a button from one form moved to another?

    like an example, my ok button from my main form moved to the...
  17. Thread: Want to learn

    by AtomRiot
    Replies
    6
    Views
    2,778

    well, in working for a company that makes...

    well, in working for a company that makes software that you most likely use (indirectly), i can say that 90% of our stuff is c++ because it is services and things that are aimed at performance.
    ...
  18. Thread: Want to learn

    by AtomRiot
    Replies
    6
    Views
    2,778

    http://www.amazon.com/Microsoft-Visual-NET-Core-Re...

    http://www.amazon.com/Microsoft-Visual-NET-Core-Reference/dp/0735612900/ref=sr_1_13/105-9598872-1061262?ie=UTF8&s=books&qid=1179841173&sr=1-13

    this book is what I used when I was first starting...
  19. Replies
    3
    Views
    8,265

    forgot to add a link. here is an example...

    forgot to add a link.

    here is an example online i found for c#. It is not my example because as i have said, i have not messed with it in c# but i downloaded it and it compiled and used my little...
  20. Replies
    3
    Views
    8,265

    Another library I have used quite a bit in C++ is...

    Another library I have used quite a bit in C++ is the "Video For Windows" library. I have not used it in c# but I am sure its not too different. It was very flexible in c++ though and you didn't have...
  21. Replies
    3
    Views
    8,265

    in your for loop try putting in a...

    in your for loop try putting in a PictureBox.Refresh(); and see if it redraws it.


    for( ;; ) // Loop forever
    {
    UpdateLiveImage(); //Continually grab image and dispaly on form
    ...
  22. Thread: Windows Forms

    by AtomRiot
    Replies
    2
    Views
    2,114

    well if you were concerned about having multiple...

    well if you were concerned about having multiple forms running, you could store things in different panels and then just bring the panel you want to use to front when its time.

    I am not...
  23. how to see if a control is in a specific spot

    Hey, is there a way that i can take, for example, a panel or picture box or group box and check to see if another control has been moved into that area?

    I know I can use the location of it but i...
  24. Replies
    1
    Views
    3,704

    ok, i figured out something that works. I...

    ok, i figured out something that works.

    I added this to the OnPaint method in the class before i start defining a region


    Graphics gfx = e.Graphics;
    gfx.Clear(this.BackColor);


    It works...
  25. Replies
    1
    Views
    3,704

    Custom buttons and OnPaint Issues

    Ok, so i am creating a custom shaped button and I am overriding the OnPaint method in the class and using regions within it to get the shape i wanted. this is is my over rode OnPaint


    protected...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4