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

Search:

Type: Posts; User: iangoldby

Page 1 of 3 1 2 3

Search: Search took 0.15 seconds.

  1. Telling Explorer to display a different folder?

    I'm looking for a way to tell an instance of Explorer that is already running to change directory and display a different folder (of my choice).

    My guess is that there is probably a PostMessage()...
  2. Replies
    5
    Views
    16,028

    John (and Graham), Thanks very much for your...

    John (and Graham),

    Thanks very much for your replies. I think I understand it now. I guess this is very closely related to the 'smart pointer' templates that are available for C++. I had this idea...
  3. Replies
    5
    Views
    16,028

    The compile won't have that: error C2803:...

    The compile won't have that:

    error C2803: 'operator *' must have at least one formal parameter of class type

    Also, operator -> must be a member function according to the spec.
  4. Replies
    5
    Views
    16,028

    Overloading -> and * operators

    I have a strange problem with overloading the -> and * operators. I'm trying to do this to make dereferencing a pointer to the class intrinsically safe. I think the problem is the same in both cases,...
  5. Thanks for your help. I had hoped I could do it...

    Thanks for your help. I had hoped I could do it without introducing yet another function. (C++ seems to love having a plethora of 3-line functions...)

    Anyway, that works and solves the problem, so...
  6. Can I convert int to CString in an initialization list?

    An abstract base class constructor is declared as

    Base::Base(CString name);

    The derived class constructor takes an integer as its parameter. This needs to be converted to, e.g., "Node 15" if...
  7. Finally found a solution myself. If you...

    Finally found a solution myself.

    If you already have a connection to the remote machine with a particular user name and password, then the pipe will try to use the same user name and password....
  8. Open remote pipe with specific username and password?

    I want to open a named pipe on a remote NT workstation from my own workstation. But the user that I am currently logged in as doesn't exist on the remote workstation. So I want to open the pipe with...
  9. Open remote pipe with specific username and password?

    See this thread.
  10. Replies
    0
    Views
    504

    Read space in anonymous pipe?

    I have an anonymous pipe, created with CreatePipe(). I want to know how the process that is writing to it can discover in advance whether the write it is about to do will block or not. Or to put it...
  11. Replies
    3
    Views
    806

    Re: Change drive letter of CDROM

    I've only used NT, so I don't know. Sorry.
  12. Replies
    3
    Views
    806

    Re: Change drive letter of CDROM

    I don't know how to do it using the Windows API, but do you already know how to do it with th Disk Administrator?

    (Start->Programs->Administrative Tools (Common)->Disk Administrator). This is for...
  13. Replies
    0
    Views
    685

    Memory reverse lookup problem

    I'm looking for an algorithm (any language) to deal with the following problem:

    I have an emulator for an obscure control system. Global variables are stored in a contiguous region of memory. When...
  14. Re: Open a file which automatically opens addtional 2 files

    The other files can't be automatically opened, but it's easy to do what you want nevertheless.

    Once the file dialog returns with the file name of the *.bmp file, just create two more strings,...
  15. Replies
    1
    Views
    633

    Re: Window Services And Api

    Have you checked that this entry point exists in the actual dll you are using? You can look by right-clicking on the dll (make sure it really is the one VB is loading and not another one with the...
  16. Replies
    4
    Views
    653

    Re: Quick navigation to functions

    I had thought that only worked for C++ code, but you are quite right. Now all I need is some way of getting it to display only the functions in the window I have foremost...
  17. Replies
    4
    Views
    653

    Re: Quick navigation to functions

    That's one possibility, but only useful when the function name is already displayed somewhere on the screen. I wanted a pop-up menu listing them all, if possible.
  18. Replies
    4
    Views
    653

    Quick navigation to functions

    Visual Studio editor:

    Is there any way (or add-in) that will give me a pop-up menu of function names in a source file (like in Metrowerks Codewarrior), so that I can jump directly to where that...
  19. Replies
    1
    Views
    1,011

    Re: Creating ISO9660 Image File(URGENT PLEASE)

    ISO9660 is a file system format, not a file format. Your best bet is to search for information on the UNIX program called mkisofs, which is used to create an ISO9660 image file in preparation to...
  20. Replies
    0
    Views
    481

    HTML help 'next' & 'previous' buttons

    You will be familiar with the 'Next' and 'Previous' buttons in the MSDN help browser that enable you to move through pages in the manuals sequentially. (As distinct from the forward and back...
  21. Replies
    0
    Views
    547

    Toolbar icon background problem

    I'm using the toolbar wizard in VB6 to modify a bog-standard toolbar in my application.

    When I add an icon with a transparent background, the background stays transparent until the first time I...
  22. Replies
    7
    Views
    1,172

    Re: link list in vb

    I'm not sure what you mean 'no built-in linking mechanism'. A collection has mechanisms for adding new objects and for iterating through the list. Isn't this what a linked list is supposed to do?
    ...
  23. Replies
    7
    Views
    1,172

    Re: link list in vb

    The easiest thing is to use a 'collection'. Although the documentation doesn't say so, it appears that 'collections' are essentially linked lists by a different name.
  24. Replies
    1
    Views
    2,443

    Re: Hide caret in Rich Text Box

    Anyone?
  25. Replies
    1
    Views
    2,443

    Hide caret in Rich Text Box

    How can I hide the caret in a rich text box? The box is used to present scrolling information to the user, and the user should not expect to be able to type anything into it.

    I tried the Win API...
Results 1 to 25 of 52
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured