CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Adovid

Search: Search took 0.03 seconds.

  1. Thread: Tiled Ellipse

    by Adovid
    Replies
    5
    Views
    1,152

    Anti Aliasing?

    Anti Aliasing?
  2. Thread: Tiled Ellipse

    by Adovid
    Replies
    5
    Views
    1,152

    You mean something like this? p1.x =...

    You mean something like this?


    p1.x = Form1.MousePosition.X - Form1.ActiveForm.Location.X - 110
    p1.y = Form1.MousePosition.Y - Form1.ActiveForm.Location.Y - 135

    I used this to draw an elipse...
  3. [edit: code was here, but removed because someone...

    [edit: code was here, but removed because someone else beat me to it ;).]

    what Cgcomp did Worked fine for me.

    Still I don't understand why you would wan't to do that. It would be better to have...
  4. Replies
    3
    Views
    1,140

    Me too. Programs that were working fine the...

    Me too.

    Programs that were working fine the first time I ran them are now giving me this error after I reopen them.

    Mine was with filling a data table.
  5. Replies
    8
    Views
    886

    Thanks, I don't even know why I didn't think to...

    Thanks, I don't even know why I didn't think to use Option Strict On when I was testing that :blush:...
  6. Replies
    8
    Views
    886

    "I am pretty sure if you do not use "New" the...

    "I am pretty sure if you do not use "New" the computer treats it like a variable that can hold any object of that class and also any child of of that class(I think)."
    When I said that, I mean't it...
  7. Replies
    6
    Views
    674

    oh I see, all you need to do is put a...

    oh I see, all you need to do is put a ['code']['/code'] and then paste your code in between those. Dont put he ' of course :P.

    I edited and added that little bit. Hope it helps.
  8. Replies
    6
    Views
    674

    IT makes it so hard to see without the ['code]...

    IT makes it so hard to see without the ['code] >.< ['/code'].

    dt is the datatable
    string is the string you are going to concatinate with itself to make your line for output to the sequential...
  9. Replies
    8
    Views
    886

    Yea New is for actually creating objects from...

    Yea New is for actually creating objects from classes.

    Dim Object as Class will only tell vb to designate the area.

    With that statement you will actually have to use another statement:
    ...
  10. An introduction to Programming using Visual Basic...

    An introduction to Programming using Visual Basic .net
    Fifth Edition
    David I. Schneider


    Best book on the market for beginners imo. It comes with a cd with vb.net problems that are simple and...
  11. You mean an exception? Bugs are made by...

    You mean an exception? Bugs are made by programmers, exceptions are made by microsoft :P.
  12. Replies
    9
    Views
    7,927

    The StretchImage setting will reduce or enlarge...

    The StretchImage setting will reduce or enlarge the picture to fit the picture box control.
  13. Replies
    8
    Views
    780

    Use arrays too; they can save lots of time.

    Use arrays too; they can save lots of time.
  14. Replies
    5
    Views
    641

    To attach an image you can either do it using the...

    To attach an image you can either do it using the "Attach File" option when making a post or you can use a picture already on the net using the command.

    Example:

    [img...
  15. Replies
    3
    Views
    808

    Can't you use a structure? That way each...

    Can't you use a structure? That way each dimension represents a different variable type.


    Structure WordsNumbers
    Dim word as string
    Dim number as integer
    end structure
    Then you can...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured