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

Search:

Type: Posts; User: cappy2112

Page 1 of 14 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    7
    Views
    936

    Re: Simple timing measurements in VBA

    Thanks to everyone who replied.
    It's starting to come back to me now
  2. Replies
    7
    Views
    936

    Simple timing measurements in VBA

    I had used VB6 up until ~2 years ago, so I've forgotten some things.

    I'm now maintaining some Excel VBA macros which is reprocessing a text file, then displays stuff about the file in a...
  3. Replies
    1
    Views
    871

    OCX32's vs DLLS

    I've found some VC source code which is for a project used to make some OCX controls for VB projects.

    I'd like to be call the functions that are in the OCX files, but from a non VB program. (like...
  4. Looking for guidance (experience) with Midi Programming

    I've found several VB projects which do various types of Midi I/O, but haven't found the information I'm looking for.

    I want to send/receive Midi System Exclusive (sysex) data, which is much more...
  5. Re: Is it legal VB to return a collection as a property from a class?

    It works for me too- thanks
  6. Thread: FileExists

    by cappy2112
    Replies
    2
    Views
    1,106

    FileExists

    How can I (gracefully ) check and handle (if it does not exist) that a file exists before opening it, without using FSO's?




    FileExists Method


    Description
  7. Is it legal VB to return a collection as a property from a class?

    I've created a collection in a class, now want to return it via a property in the class.

    The invocation (below) to return the class is giving me "Compile Error Argument not optional"

    There are...
  8. Re: Not using VB6 for 1.5 years has made me week

    This works great. Just finished implementing it
  9. Re: Not using VB6 for 1.5 years has made me weak

    OH YES, Splittttttttttttttt()!. It's all coming back, slowly now ;-)

    I use split almost daily, when I code in Python


    Thanks for the memories :-)
  10. [RESOLVED]Not using VB6 for 1.5 years has made me weak

    I'm trying to remember how to read in a text file, without using the FSO's.

    This is actually for an Excel VBA macro, and I don't want to have to install the anything on the user's system, other...
  11. Replies
    0
    Views
    3,203

    IOCTL_ATA_PASS_THROUGH examples

    Has anyone used IOCTL_ATA_PASS_THROUGH to send commands to ATA/SATA devices?

    Would someone please point me to some examples, books, or other resources?

    The MSDN doesn't seem to have any...
  12. Replies
    10
    Views
    1,889

    Re: exe without .net framework?

    Hello,

    I need to write a native app on XP. I haven't used VC since DOS days (1.52), but I do have the full MSDN and can install VC .net.

    I don' t know C++ or MFC< so I will probably have to...
  13. Looking for resources on how to write Native Applications

    Hello,

    I need to write a Windows Native Application, and I'm looking for help from someone who has done this. (speculative replies won't help) The API's available at this level are extremely...
  14. Re: Programmatically restarting Windows in Safe Mode to update firmware

    That assumes one knows where to look and what to look for.
  15. Re: Programmatically restarting Windows in Safe Mode to update firmware

    Ok- I can see it from control panel.
    I've got "Do not hide system and hidden files" specified in Explorer, but this file is still hidden.

    If I make edits to this through a program, will these...
  16. Re: Programmatically restarting Windows in Safe Mode to update firmware

    Thanks. I've tried this.
    Where is boot.ini? I did a search with explorer from the root of c, and could not find it.
  17. Programmatically restarting Windows in Safe Mode to update firmware

    I know there are API's to reboot the system,
    InitiateSystemShutdown() is just one of them.

    However, I need to update firmware in an embedded device, and there's no way I want to attempt this with...
  18. Re: How to make VB's select/case mimic C's switch/case

    I didn't see the commas in the MSDN example.

    >>Case 1 To 4, 7 To 9, 11, 13, Is > MaxNumber

    My font was too small :-)

    Thanks
  19. How to make VB's select/case mimic C's switch/case

    in C, I can do this

    number=1;
    switch(number)
    {

    case 1:
    case 2:
    case 3:
    printf("\nCase 1-2-3");
  20. Replies
    8
    Views
    1,451

    Re: What exactly is App?

    >>As for that declaration, it's asking for an Object. An object can be almost >>anything.

    I forgot to mention the customer told him that the Object is expected to be
    App- so this function must...
  21. Replies
    8
    Views
    1,451

    Re: What exactly is App?

    Also - the sub isn't being called from VB- it's called from Python, so there is no ME or text1 outside of VBland.

    He doesn't have the implemention of foo() just the declaration
  22. Replies
    8
    Views
    1,451

    Re: What exactly is App?

    Subs don't return anything.

    He hasn't seen the sub implementation, only the declaration.
    However, the person who gave him that interface should know that App is VB specific, and can't be passed...
  23. Replies
    8
    Views
    1,451

    What exactly is App?

    I have a friend who is trying to access a VB com server through an exposed sub.

    He has not used VB before, and is trying to launch & login to the app using a scripting language called Python...
  24. Replies
    1
    Views
    1,152

    Using FindWindow()

    I'm launching a COM server from a VB app,and want to make sure the COM server actually starts and is visible.

    After launching the COM server, I'm calling

    FindWindow("WindowName") but only have...
  25. How to check if a form is visible,without invoking form_load

    Is there any straightforward way from keeping form_load from being invoked, when refernecing Form.visible?

    I was surprized to find out that form_load() gets called if the form was never shown, and...
Results 1 to 25 of 327
Page 1 of 14 1 2 3 4





Click Here to Expand Forum to Full Width

Featured