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. maldini1010

    Create Window with fixed position

    Hi, I have actually found a solution, Not a so nice one, but a it works, What I did is i removed the caption bar at the top. Therefore through a mouse no action can be takin on the window. I used the following. DWORD dwStyle = GetWindowLong(hWnd, GWL_STYLE); dwStyle &= ~(...
  2. maldini1010

    Create Window with fixed position

    This might help? I just want my app to create a window fullscreen which it would be imposible to (move with a mouse, resize with a mouse or close with a mouse, even by double cliking on the bar where the caption of the window is written ). Baically, only the keyboard should be able to perform...
  3. maldini1010

    Create Window with fixed position

    Hi, In order to override the onmove function. I wrote a function afx_msg void onMove(int, int ); which basically does nothing in my class --> class CMainFrame : public CFrameWnd Is that what you mean cause it does not seem to work. Thanks maldini
  4. maldini1010

    Create Window with fixed position

    Hello, I would like to create a window which cannot be moved by the user. (By cliking and holding the top of the window). CREATESTRUCT cs Maximaze/Minimaze/Close button. cs.lpszName = "My Window"; cs.style = WS_OVERLAPPED | WS_HSCROLL ; Does anyone know how to do this. Thanks...
  5. maldini1010

    StretchDIBits

    Hi, I am having problems with the StretchDIBits function. The w->length contains the size of the jpeg. And the w->p contains a pointer to the begining of the jpeg data. Nothing displays onto the screen just a white box. Any Help would be really appriciated. HDC dc = BeginPaint( hwnd, &ps )...
  6. maldini1010

    Ip from the Mac Address

    Hi Guys, I am looking for a way to snif the ip address of a network camera. I have its Mac address. The camera is on the network and i can access it from any browser, just by placing the ip address in the browser. Now i have written some code to capture and stuff from the camera. But in my...

Part and Inventory Search

Back
Top