Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. alonex

    Problems using "Excel.Application" in Vista

    Hi, I'm having problems to get active object of excel application in Vista. I'm using: System.Runtime.InteropServices.Marshal.GetActiveObject("Excel.Application") And get an exception: "System.Runtime.InteropServices.COMException (0x800401E3): Operation unavailable (Exception from HRESULT...
  2. alonex

    Multithreded file writing in VBS/ASP

    Hi, I have an ASP file that updates a file, I need to keep the updating capabilty in a multi-access environment. how can I modify my code (below) to allow multi-access (somthing similar to non blocking I/O in Java)? Thanks, Alonex My code: ========= <% if (Request.Form("user_id"))<>"" then...
  3. alonex

    wmiprvse.exe

    Hi, I have windows 2003 SP1 64bit edition. The process "wmiprvse.exe" uses more ~80% CPU. I checked for virus/spyware. I also used "Process Explorer" (from sysinternals), but did not find anything unusual. How can I troubleshoot this issue? - When I stop the service, it will come up again and...
  4. alonex

    ADODB.RecordSet in VBS

    Thanks, I double-checked the SQL command text and it's fine, using "replace" function didn't help. So my last resort is store procedure, but I'm getting an error when running the store procedure withing the VBS: (in line --> cmd.ActiveConnection = cnHeat) "Arguments are of the wrong type, are...
  5. alonex

    ADODB.RecordSet in VBS

    Hi, I'm having problems retrieving data from large SQL table (100,000+ users), some users can be found using "select" command in SQL analyzer but NOT in the VB script. Any ideas? Thanks, Alonex Excerpt of the Code: ========================== SET rsUnAcknowledged =...
  6. alonex

    ADODB.RecordSet open fails

    Hi, I'm having problems retrieving data from large SQL table (100,000+ users), some users can be found using "select" command in SQL analyzer but NOT in the VB script. Any ideas? Thanks, Alonex Excerpt of the Code: ========================== SET rsUnAcknowledged =...
  7. alonex

    Writing to a file in Win32 application

    Thank you all.
  8. alonex

    Writing to a file in Win32 application

    Hi, I'm trying to write a string to a file using win32 function "WriteFile". The file is written with partial data (4 x'c' insted of 10). What am i doing wrong? Thanks, Alonex My code: ======== const char ostream[] = "c:\\test.txt"; hFile = CreateFile(ostream,GENERIC_READ|GENERIC_WRITE...
  9. alonex

    Boot from USB external storage

    Yes, my PC supports "boot from USB devices".
  10. alonex

    Boot from USB external storage

    Hi, I have 40GB USB external device (Hammer). I'm trying to boot from it. So far I have done and failed: 1) Creating FAT (and FAT32) partition and using MKBT tool for boot sector + mark the partition as active. (when booting from "Removable device" I got 'missing operating system'...
  11. alonex

    Set WMP10 to full-screen mode

    Hi, I'm trying to open a video playlist file (WPL) within Windows Media Player 10 in a full-screen mode. The command line switch "/fullscreen" of WMP works fine for video file (mpg) but does not open WPL (I've tried "/PlayList" switch). Is there a registry key to set WMP for full-screen? Can...
  12. alonex

    Network application and Windows 2K update

    Hi, A server application (written in visual C++) which I run on Windows 2000 server stops accepting clients after few hours. The application is a gateway that listens on TCP port, it works flawlessly when only SP4 is installed (without other windows updates). It's most likely a windows update...
  13. alonex

    Hiding user input

    Thank you all, Alonex
  14. alonex

    Hiding user input

    Hi, I'm trying to hide user input (from keyboard-->using it to password)in win32 console application. I failed to manipulate getchar() and putchar() for that. Is there a way to do it in C (or C++)? Thanks, Alonex

Part and Inventory Search

Back
Top