Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
X

Xeqtr 0

@Xeqtr 0
About
Posts
45
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Setup wizard.....Not visible
    X Xeqtr 0

    When you install VS, I guess you select "Custom installation". Run VS setup and check required checkboxs. Or install professional edition :-D

    Visual Basic csharp help question workspace

  • A RichEdit without any borders [Solved]
    X Xeqtr 0

    Look there http://msdn.microsoft.com/en-us/library/bb787873(VS.85).aspx I guess that your form style like win98. To turn on XP or later versions style, include this code:

    #if defined _M_IX86
    #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*'\"")
    #elif defined _M_IA64
    #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='ia64' publicKeyToken='6595b64144ccf1df' language='*'\"")
    #elif defined _M_X64
    #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='amd64' publicKeyToken='6595b64144ccf1df' language='*'\"")
    #else
    #pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\""
    #endif

    C / C++ / MFC announcement c++ wpf tutorial question

  • help
    X Xeqtr 0

    edmagas wrote:

    I need it urgently

    You're pretty funny. At first I don't know what is aim of project. And nobody have complete code of your future application. Ask specific question.

    C / C++ / MFC sysadmin help

  • help
    X Xeqtr 0

    One minute of googling. http://www.cs.purdue.edu/homes/dec/netbooks.html

    modified on Monday, June 21, 2010 5:39 PM

    C / C++ / MFC sysadmin help

  • Listview
    X Xeqtr 0

    Check it out. http://msdn.microsoft.com/en-us/library/x9w88sx9(VS.80).aspx

    C / C++ / MFC csharp c++ help tutorial

  • Dialog size should change to the system screen size
    X Xeqtr 0

    So the simplest way to use GetClientRect... and example

    RECT clientScrRect;
    GetClientRect(hWnd, &clientScrRect);

    Instead hWnd write HWND of your controls. Finally you got coordinates of your controls.

    C / C++ / MFC question

  • Process run as administrator
    X Xeqtr 0

    check it out http://msdn.microsoft.com/en-us/library/ms682425.aspx

    C / C++ / MFC question

  • Dialog size should change to the system screen size
    X Xeqtr 0

    What version of Visual Studio do you use? If 2010, there is another structure of default generated code. Anyways check that stdafx.h is include in your header file :-D

    C / C++ / MFC question

  • Dialog size should change to the system screen size
    X Xeqtr 0

    At first you should determine controls position and form size, then on WM_SIZE event change position of controls that will depends on width and height of your form.

    C / C++ / MFC question

  • Dialog size should change to the system screen size
    X Xeqtr 0

    By default CWnd defined in afxwin.h. You should find same definition CWnd* m_pMainWnd;

    C / C++ / MFC question

  • Help me identify this programming/scripting language!
    X Xeqtr 0

    yes it's Lua...

    IT & Infrastructure tools help question

  • Dialog size should change to the system screen size
    X Xeqtr 0

    ohh yeah, if author will use a multiple-monitor system, you're right of course :)

    C / C++ / MFC question

  • Dialog size should change to the system screen size
    X Xeqtr 0

    Small example:

    UINT width = GetSystemMetrics(SM_CXSCREEN);
    UINT height = GetSystemMetrics(SM_CYSCREEN);
    SetWindowPos(hWnd, HWND_TOP, 0, 0, width, height, SWP_NOZORDER | SWP_SHOWWINDOW);

    C / C++ / MFC question

  • run , show and application in my project and handle its forms
    X Xeqtr 0

    I think you should write hWnd of MDI form in dshow owner device.

    C / C++ / MFC question

  • run , show and application in my project and handle its forms
    X Xeqtr 0

    I think you should write hWnd of MDI form in dshow owner device.

    Managed C++/CLI question

  • Managed and UnManaged DirectX APIs.
    X Xeqtr 0

    dybs wrote:

    One thing to keep in mind is Managed DirectX is no longer in active development, and only supports up to DirectX 9.0c. If you want to access any DirectX 10 or 11 features, I would suggest using SlimDX[^].

    So what's a problem in using Unmanaged DX? Work without managed wrapping. And if you want to access to DX 10 features, not essentially to install SlimDX, in DX SDK including libraries and samples that are necessary for DX 10 features.

    Graphics graphics game-dev

  • Get hardware temperature, voltage, fan speed [modified]
    X Xeqtr 0

    So, I'm googling a lot too. I asked this question on many forums, but nobody knows how to do it, that's why I had posted here.

    Hardware & Devices hardware performance question

  • Get hardware temperature, voltage, fan speed [modified]
    X Xeqtr 0

    I think assembler insertions into C++ code can do it, but I haven't got any theories how to realise it.

    Hardware & Devices hardware performance question

  • Creating GUI
    X Xeqtr 0

    Thanks a lot, but it's not complete information.

    Graphics tutorial design

  • Creating GUI
    X Xeqtr 0

    Hi all. I want to create graphical user interface in my Direct3D application using Lua, but I cannot find good examples. If somebody knows how to do it, please show or give me simple example. Thanks for attention.

    Graphics tutorial design
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups