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

Search:

Type: Posts; User: RobDog888

Page 1 of 29 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    2
    Views
    2,116

    Re: Using GPIO Pins, need to write driver?

    Thanks for the reply. Yes that is what Ive been finding that there is very little help and info out there.

    I have an Advantech, Phidgits and somewhere around here we may have the Ardrino. Ive even...
  2. Replies
    2
    Views
    2,116

    Using GPIO Pins, need to write driver?

    Has anyone had any experience with using General Purpose Input Output pins on 3rd party boards?

    The board will be proprietary but we are prototyping based on a few possible dev boards like...
  3. Replies
    2
    Views
    826

    Re: implementing code frm dotnet to vb

    You will want to post your code so we can evaluate it for VB6 conversion/compatibility.
  4. Replies
    2
    Views
    2,122

    Re: Favourite posts

    You can also just add the link to your favorites or bookmark it.

    There is a Favorites plugin for vB but with the given size and dual databases here on CG it may not be a desired addition.
  5. Thread: outlook 2007

    by RobDog888
    Replies
    8
    Views
    1,522

    Re: outlook 2007

    No matter what you do, they can always track it back to you. Sure, someways require more work and effort but still do-able.

    If your worried about it being tracked back to you then perhaps dont...
  6. Replies
    2
    Views
    784

    Re: excel values become null [VS 2005]

    Those are correct settings so it reads all rows for its guess at the data types.
    What version of Excel is the file? pre-2007 or 2007+?
  7. Replies
    19
    Views
    36,319

    Re: VB6 Color Palette Control / List Box

    Hi Neil,

    Its really easy to add the Color Property Page to your UserControl. The last part to do is populate the colors.

    In your UserControl there is a PropertyPages property which when you...
  8. Thread: CR viewer

    by RobDog888
    Replies
    4
    Views
    2,619

    Re: CR viewer

    If you have created the parameters in your CR already then just use in your VB6 code the Parameters collection to specify and set their values.

    ...
  9. Replies
    2
    Views
    2,922

    Re: Outlook 429 error

    You are Early Binding since you have declared your object variables as a specified type and not as "Object".

    Here is my code integrated with yours.

    Ps, if you declare your object variables as...
  10. Thread: Vista Aero

    by RobDog888
    Replies
    7
    Views
    5,336

    Re: Vista Aero

    Remember that the Aero theming is not available in Vista Home Basic or Windows 7 Starter editions
  11. Replies
    3
    Views
    1,169

    Re: Text1 to excel

    You can use either of these technioques to determine the last used row/cell. It best to go from the bottom up as if you go from the top down it may not be the last used cell as it only looks at empty...
  12. Replies
    81
    Views
    9,995

    Re: 2009 MVP Global Summit

    I'm back home. Really great meeting all you CG guys! We definately have to do it again next year. Oh and double the Vodka for all!!! :lol:
  13. Replies
    1
    Views
    800

    Re: server does not exist

    The connectionstring is incorrect or you do not have permissions to access it. Check out http://connectionstrings.com and make sure your windows username has the appropriate permissions to logon and...
  14. Replies
    23
    Views
    2,729

    Re: We want your opinion - Improving Codeguru

    Blogs :sick: I know its an upcoming release of vBulltin but CG is a more professional site and do you really want to turn it into a myspace type site?
  15. Thread: vb.net api

    by RobDog888
    Replies
    3
    Views
    717

    Re: vb.net api

    In casae you want to open the word doc and make modifications on it, I also replied with code on your VBF thread. :)

    http://vbforums.com/showthread.php?t=479949
  16. Replies
    11
    Views
    1,118

    Re: Word to Powerpoint

    Im back David. I tried this too but as I needed example pages to test it out but I should be able to write something for it tomorrow. Its 1:30am and too tired.

    I did some testing the other day...
  17. Replies
    8
    Views
    2,855

    Re: An article sugestion

    That would be more of a Tutorial rather then an Article.

    An article doesnt usually explain every single step or line of code as its geared more towards the novice programmers and above.
  18. Re: Disable Min,Max and X button in MDI child form

    Probably because they dont want the child forms to be closed or resized seeing that it may allow acess to other child forms either out of turn or create issues in the program if they change child...
  19. Re: Disable Min,Max and X button in MDI child form

    This will work for the 'x' button and the min/max system menu items of the child form but the titlebar buttons on the child form still seem to function.

    The EnableMenuItem API didnt work either...
  20. Replies
    4
    Views
    1,322

    Re: MHT and e-mail attachments

    If an image is embedded in the body of an email it will have a "cid:" tag in the src property of the img html tag.


    <IMG alt="" hspace=0
    src="cid:062138107@12072007-31E7" align=baseline ...
  21. Replies
    3
    Views
    3,031

    Re: Reset MS Access autonumber

    Just performa Compact and Repair on your database and that will reset all autonumber fields to the next available number in tables with records in them and it will reset the autonumber to 0 in tables...
  22. Replies
    4
    Views
    1,322

    Re: MHT and e-mail attachments

    Perhaps a bit more info is needed.

    Is this a email that is sent directly from IE or is it sent from Word?
    Wouldnt the MHT document only contain embedded images as that is the default action of...
  23. Replies
    1
    Views
    1,213

    Re: FullPath property

    If you open the vbproj file, you can verify that all the paths are relative to the project folder. Also, if you use source code control you will have to change the path to the project in VSS too.
    ...
  24. Re: VBA - changing encoding of the imported CSV file

    If the output csv file is containing the "?" in its data then its your source program's issue of it not supporting unicode characters or some other issue. But once its written to the text file csv it...
  25. Replies
    2
    Views
    9,410

    Re: Disable "X" button on forms in VB6

    This will disable the 'x' close button by removing the system menu Close item.
    Also removes the menu separator for asthetics.

    Always provide a way for the form to be closed.


    Option Explicit...
Results 1 to 25 of 710
Page 1 of 29 1 2 3 4





Click Here to Expand Forum to Full Width

Featured