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

Search:

Type: Posts; User: John G Duffy

Page 1 of 80 1 2 3 4

Search: Search took 2.99 seconds.

  1. Replies
    3
    Views
    827

    Re: Creating Constants at CompileTime

    Thanks,
    That's not quite what I am looking for. I need to imbed the compile date and time within the compiled program so I can display it at run time
  2. Replies
    3
    Views
    827

    Creating Constants at CompileTime

    I am trying to create a Constant at compile time so I can display the compile date at run time. I have tried with no success to use some of the few available compile time directives. Any one know if...
  3. Replies
    9
    Views
    2,963

    The EventVB_H.dll appears to be a >NET addition....

    The EventVB_H.dll appears to be a >NET addition. It is not on my system either. For VB6, download my sample program and enjoy.
  4. Replies
    0
    Views
    644

    Writing to CD-Rw and Windows XP

    I have my version of a Backup program in which it scans C-Drive and copies archived files to a CD-R. This program depends on the CD-R being formatted and in Write status. I use Easy CD Creator to...
  5. Replies
    1
    Views
    795

    I do this all the time. 5 minutes after the Post...

    I do this all the time. 5 minutes after the Post I figured it out.
    '
    For what its worth, here is the solution.
    '
    rs1.Open _
    "Select * from tasklist,Projects,ClientList " & _
    ...
  6. Replies
    1
    Views
    795

    SQL Query problem

    I have an Access data base with Three tables
    '
    Table 1 is Customer Information
    Table 2 is Project Information
    Table 3 is Task information

    Table 3 contains pointers into Table1 and 2

    Table 1...
  7. DateReport and Three Tables (Access DataBase)

    I have a need to generate a simple report using DataReport and DataEnvironment. The Data base has three tables and I have been successful in relating two of the tables but not the third. Here is my...
  8. Replies
    8
    Views
    3,684

    Sorry about that bad URL posting. It should read...

    Sorry about that bad URL posting. It should read
    '
    http://www.Planet-Source-Code.com/vb
  9. Replies
    8
    Views
    3,684

    BigE, not quite sure what you mean by regular...

    BigE,
    not quite sure what you mean by regular computers. I used that sample on my small Home Network and it lists every computer on it (4 of them).

    You might try browsing ...
  10. Replies
    4
    Views
    1,127

    I think you are talking about the...

    I think you are talking about the ChangeIconDialog API. Here is a sample. The Sample needs a command button an label and a textbox


    Option Explicit
    Private Declare Function SHChangeIconDialog...
  11. Replies
    2
    Views
    855

    Use the Print command instead of Write....

    Use the Print command instead of Write.
    Something like


    Print #filenumber,outputlist

    Go to Help and look up the "Print # Statement" for an explanation and example
  12. The drive serial number is the manufacturer hard...

    The drive serial number is the manufacturer hard coded serial number. The volume serial number is the user supplied alpha numeric string.
    I have encloses a sample program that will display bunches...
  13. Replies
    1
    Views
    3,239

    There is a bunch of addins on...

    There is a bunch of addins on Http://www.Planet-Source-Code.com/vb
    Just search on AddIN or Add-IN etc
  14. Replies
    4
    Views
    1,088

    An EXCEL spreadsheet that is.

    An EXCEL spreadsheet that is.
  15. Replies
    4
    Views
    1,088

    Excel Rows ansd columns

    Is there a way to detect the number of IN USE rows and columns in a spreadsheet?
  16. Replies
    4
    Views
    9,401

    Don't need it right now but was interested for...

    Don't need it right now but was interested for setting up a sample program that would do everything probmatically instead of having to write instructions or comments in the sample.
    '
    Thanks again
    ...
  17. Replies
    4
    Views
    9,401

    JVBD02, Thanks that was it. Do you know of...

    JVBD02,

    Thanks that was it.
    Do you know of a way to set this at runtime?
  18. Replies
    4
    Views
    9,401

    MSChart - Grid Lines

    Anyone know how to get rid of the grid lines of a simple 2Dline chart?
    Below is a simple example I am trying to use but need to get rid of the grid lines. The example works just fine for what I...
  19. Replies
    1
    Views
    782

    Http://www.Planet-Source-Code.com/vb has some...

    Http://www.Planet-Source-Code.com/vb has some code repositories also check out http://www.vbcodelibrary.co.uk/
  20. Replies
    1
    Views
    780

    The version of the dll is contained in the system...

    The version of the dll is contained in the system registry. You will need to read The registry to determine which is installed.
    There are several examples of reading the System registry on this...
  21. Replies
    2
    Views
    903

    Following is an example of opening and reading a...

    Following is an example of opening and reading a Access Database table.
    You will need to make several modifications to get it to work with your DataBase. Review the comments and make adjustments as...
  22. Replies
    7
    Views
    1,296

    To REDIM an array anywhere within a Form declare...

    To REDIM an array anywhere within a Form declare it in the General Declarations section of the form.
    '
    If you wish to access the array from outside the form you can declare it Public or stuff it...
  23. Replies
    1
    Views
    951

    What Popup menu are you talknig about?

    What Popup menu are you talknig about?
  24. Replies
    1
    Views
    947

    Post the code that is failing. It may help us to...

    Post the code that is failing. It may help us to determine what is wrong
  25. Replies
    2
    Views
    852

    Use the LINE INPUT statement instead. Here is a...

    Use the LINE INPUT statement instead. Here is a quote from the Help file


    The Line Input # statement syntax has these parts:

    Part Description
    filenumber Required. Any valid file number. ...
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured