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

Search:

Type: Posts; User: mborchers

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    5,575

    Re: Doing CTRL-ALT-DEL

    Although, come to think of it, any program doesn't have to "send" CTRL-ALT-DEL, it merely has to invoke the "Windows Security" box. If it is known how to invoke that box, who cares about...
  2. Replies
    7
    Views
    5,575

    Re: Doing CTRL-ALT-DEL

    Terminal Services doesn't allow me to do a CTRL-ALT-DEL 'across the wire'. The key combination activates the local terminal's security box.

    I've tried fiddling with the settings of terminal...
  3. Replies
    7
    Views
    5,575

    Doing CTRL-ALT-DEL

    Hi guys,

    Within Visual Basic, how do I send "CTRL-ALT-DEL"? All I want to do is bring up the Windows Security box, but SendKeys doesn't permit the combination...

    Any code appreciated!

    Best...
  4. Replies
    0
    Views
    480

    Set remote time & vbadmincode

    Hi all,

    Firstly, has anyone seen some VB code that allows an administrator to set his W2K server's time remotely?

    Also, I seem to recall a site called vbadmincode had samples of this kind of...
  5. Replies
    4
    Views
    1,228

    Re: Disable 'shift' key

    Hi,

    The program receiving the shift key state is MS-Access's "Password required" dialog box.

    My program looks up Active Directory to see who belongs to which security group, and (using...
  6. Replies
    4
    Views
    1,228

    Re: Disable 'shift' key

    The program receiving the shift key state is MS-Access's "Password required" dialog box.

    My program looks up Active Directory to see who belongs to which security group, and (using MS-Access...
  7. Replies
    4
    Views
    1,228

    Disable 'shift' key

    Hi all,

    Another tricky question - tell me, is it possible to disable the "shift" keys? Reason I ask is because I'm starting an MS-Access database in the background and I have to open a password...
  8. Replies
    2
    Views
    699

    Re: Retrieve file associations

    Thanks for that!

    What I've tried (and ended up using) is this:-

    Retrieve from the registry the the (default) entry for
    HKLM\Software\Classes\.MDB files

    It will return "Microsoft.Access.11"...
  9. Replies
    2
    Views
    699

    Retrieve file associations

    Hi all,

    Without jumping through hoops, is there an easy way to retrieve (programmatically) what executable will be run for any given file extension? I've found many ways to create an association,...
  10. Replies
    2
    Views
    537

    Thanks! That worked a treat!

    Thanks! That worked a treat!
  11. Replies
    2
    Views
    537

    Time offset query

    Hi all,

    I'm running two labels:-

    One has the current local time updated by a timer

    The second label needs to display <local-time> minus an offset ie: 10 hours.

    How do I subtract 10 hours...
  12. Forecolor attribute individual character?

    Hi all (again!),

    Is it possible to change the forecolor of individual letters in a Rich Textbox? Suppose, for example, the user types "The cat in the hat". My program, interrogating the word...
  13. Replies
    2
    Views
    1,607

    Thanks Threadl! That did the trick!

    Thanks Threadl! That did the trick!
  14. Replies
    2
    Views
    1,607

    Convert string to hex value

    Hi,

    I'm saving the forecolor and backcolor of my labels to a text file as hex values...

    print #1, "lbl1.fc=" & Hex(label1.forecolor)
    print #1, "lbl1.bc=" & hex(label1.backcolor)

    Therefore,...
  15. Replies
    0
    Views
    483

    SHFileOperation question

    Hi guys,

    Is it possible to have SHFileOperation *continue* to copy files even if it encounters a file it cannot copy?

    Quite often, I find it necessary to copy the contents of a user's hard...
  16. Replies
    1
    Views
    526

    Encrypted files copied to remote PC

    Hi guys,

    I have a central server that runs encryption to secure the file contents. On occasion, an authorised user may request the server copy archived files to his/her computer for local...
  17. Hi TinBum, I did initially toy with the idea...

    Hi TinBum,

    I did initially toy with the idea of shelling, but then I'd have to "WaitForCompletion", make sure the DOS box closes, etc.

    The name function works brilliantly!

    I grabbed some...
  18. It's the little things...

    OldName = "C:\MYDIR\OLDFILE": NewName = "C:\YOURDIR\NEWFILE"

    Name Oldname as NewName

    Moves the file and renames it...

    Thanks for reading it though!

    Mark
  19. File move, rename in as few steps as possible

    Hi guys,

    I have a situation where I may need to move files owned by a user.

    For example, user "fred" may own the following files in the "FR" directory:-

    \FR\FRED44-010103-1947.ZIP...
  20. Replies
    2
    Views
    3,076

    That worked awesomely! I never even knew there...

    That worked awesomely! I never even knew there was a "HitTest" method!

    Live and learn...

    Thanks for the answer!

    Mark
  21. Replies
    2
    Views
    3,076

    Listview double-click delete row

    Hi guys,

    I have a listview with three columns.

    A user may double-click a row to remove that row from the listview (and all rows below move up to take the deleted row's place).

    Problem is, if...
  22. Replies
    1
    Views
    642

    IP Server - detecting dead connection

    Hi all,

    I'm developing an IP client/server program for transferring files. It's all working (surprisingly!) well, except for:-

    If a client is uploading a file, and that connection is...
  23. Replies
    2
    Views
    664

    Ahhh, perhaps my question was unclear. (I have...

    Ahhh, perhaps my question was unclear. (I have figured it out...)

    Start Word.

    New blank document.

    Insert... Object...

    I added a control called "Barcode".
  24. Replies
    2
    Views
    664

    Access an object in Word from VB

    Hi all,

    I have created a Word XP document, and in to that document I have inserted 16 barcode objects. They have all the usual properties as seen in Visual Basic.

    How do I access the Barcode...
  25. Always dial my default connection setting

    Hi all,

    I'm writing a program using Catalyst's CSRAS32.OCX to simplify the use of RAS.

    The OCX has an annoying habit of changing the "Always dial my default connection" setting to "Dial...
Results 1 to 25 of 27
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured