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 SkipVought 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. tokool

    Hide title bar

    Hi All, i am ausing CreateWindow() with the style WS_VISIBLE | WS_OVERLAPPEDWINDOW along with a "Title". I would like to make this title bar dissappear at a later time, during the running of the window(when an event is called). How can i make the title bar dissappear, is there some...
  2. tokool

    Query Strin in HTML

    can't i extract the query string in a .html page.
  3. tokool

    Query Strin in HTML

    I have opend a .html file to which i have passed a Quey string. How can i display the values passed in the query string in the html page. For eg: i have the following page: http://www.xyz.com/day_of_the_month.htm?lname=asdf&fname=m I have a day_of_the_month.htm file where i would like to...
  4. tokool

    Device Driver...

    Thanx, Basically what i want to know is, how does the Kernal know which Device Driver to look into when the UserMode appication requests a device to perform some operation. Eg: If the user program gives a command to the kernal to draw a circle on the screen, the kernal will locate the device...
  5. tokool

    Device Driver...

    Hi All: I have an elementary question regarding Device Drivers. It goes something like this: If i have two Device Drivers installed for the two different hardware, which perform the same tasks. How can i get the system to choose one hardware over the other. Eg: I have two monitors connected to...
  6. tokool

    Machine does not start

    Hi all: I am faced with a problem which i do not seem to figure out. The machine i am trying to fix does not seem to start. What i mean to say is that when i press the power button, the machine starts and hangs in the opening screes before it detects any of the devices. It only displays the...
  7. tokool

    Machine hangs after about a minute

    Hi all: i, just recently put togather a AMD 1.2Ghz Duron processor with a 20Gb HDD 96Mb ram(which i intend to extend to 128MB). i installed win2k on the machine and when i startup n enter windows, the system hangs after approx 2 minutes of normal use. After which i have to press...
  8. tokool

    screen capture: 24bit color Vs 256 color

    The method GetScreenBitmap() is used to capture the screen. There are some redundant operations performed in the method, which u can ignore or modify.... #define DibWidth(pDib) (((BITMAPINFOHEADER *)pDib)->biWidth) #define DibHeight(pDib) (((BITMAPINFOHEADER *)pDib)->biHeight) #define...
  9. tokool

    screen capture: 24bit color Vs 256 color

    Is there any piece of code that i could get that would help solve my problem. And true, i am not handling any kinda paletts in my code.
  10. tokool

    screen capture: 24bit color Vs 256 color

    Hi all: I have a piece of code which captures the screen and saves it as a bitmap file. When i use 32 and 24 bit color it works fine, however..when i set the display to 256 colors, it gives me a blank screen...why????? Appriciate the help. Thanks, Preetham.
  11. tokool

    Command line

    Where in the registry can i find the command line for some of the executables. For Eg: When i double click on a *.eml file on my desktop, windows by default opens the Outlook Express Mail Window. Where does it get the command from and what options does it take to open either the Outlook...
  12. tokool

    Environment Strings

    Hi, %HOMEDRIVE%%HOMEPATH% gives me the path to my home dir: C:\Documents and Settings\Administrator If i want to retrive the path to All Users: C:\Documents and Settings\All Users what should me Environment String be.. Thanks, Preetham.
  13. tokool

    I use FindFirstFile() and FindNextF

    I use FindFirstFile() and FindNextFile() to browse thru a directory containing shortcut(.ink) how can i resolves the attributes of a shortcut file. Thanks, Preetham.
  14. tokool

    Shellexecute Vs CreateProcess

    I get the input which is a file name. I would like to open it using its windows default program(like when i get a abc.txt file, id like to execute it in Notepad). After opening the application, i need to get a handle to the window. I can do this by enumeratig the windows calling...
  15. tokool

    get the handle to the window

    Yees, but i need to get a handle to the Window the application has opened. How can i get the window handle from the application handle or the DDE handle.
  16. tokool

    file extension to application mapping

    Where can i get the mapping of the File Extension to its default application from the registry
  17. tokool

    get the handle to the window

    I am using ShellExecuteEx() to create a process. How can get the handle to the window that it opened. Atleast, is there a way to get the thread ID, so that i can call the EnumThreadWindows proc. I have to use ShellExecute, not CreateProcess, as i do not have the name of the .exe, i only have...
  18. tokool

    Problem with Drag n Drop

    I have created a window usign CreateWindow() and would like to Drag a File from Explorer and Drop it onto the window. Upon Dropping, i would like a MessageBox() to open which gives the Name of the file that i Dragged. How can i do this. Currently i have the code below, which does not work...
  19. tokool

    screen capture

    Mike, i am having a problem sending messages to the application. In the code u sent me, i create a mirror of Calc.exe, and when any key event occurs over the mirror, i send it to the application. But it does not show at the application. I am using the below function to send a message to the main...
  20. tokool

    Help in counting elements in array

    #include<iostream> #include <string> #include <fstream> using namespace std; struct sndex{ char code[4]; int freq; }; struct sndex sx[15]; void addDatEntry(char* param); void main(){ //Since the max num of structs in Arr are 15 for(int i =0; i<15; i++) {...

Part and Inventory Search

Back
Top