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
S

Surender

@Surender
About
Posts
5
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Visual Studio.NET -> ASP.NET problem
    S Surender

    I installed trial version of Visual Studio.NET and i tried doing a simple example in ASP.NET using VB.Net.Below is my problem: I have a 'button' WebForm control and a 'label' WebForm control in a aspx file.I added appropriate code inside the .vb file like when a user clicks on button then it should display hello world on the label. When i tried running the sample i could see only blank page.All i see is the Label ID.Is there any settings i need to modify inorder for the sample to run.Even i downloaded one basic sample from Microsoft site and could not be able to run the sample[I mean i could not see the web page output].

    ASP.NET csharp asp-net visual-studio help

  • Visual Studio.NET -> ASP.NET problem
    S Surender

    I installed trial version of Visual Studio.NET and i tried doing a simple example in ASP.NET using VB.Net.Below is my problem: I have a 'button' WebForm control and a 'label' WebForm control in a aspx file.I added appropriate code inside the .vb file like when a user clicks on button then it should display hello world on the label. When i tried running the sample i could see only blank page.All i see is the Label ID.Is there any settings i need to modify inorder for the sample to run.Even i downloaded one basic sample from Microsoft site and could not be able to run the sample[I mean i could not see the web page output].

    Visual Studio csharp asp-net visual-studio help

  • CRichEditCtrl question?
    S Surender

    I am little new to GUI programming and especially CRichEditCtrl class. How can i implement the below using CRichEditCtrlView: For example in Wordpad if i open a new text document and uses some rich editing feautres then while saving the file it asks me "saving the file in text format looses formatting features." How do i really detect whether user has used any rich editing feautres in a text document of CRichEditCtrlView

    C / C++ / MFC question tutorial

  • System shutdown behaviour?
    S Surender

    Below is the code snippet i used for HOOKING the WM_QUERYENDSESSION.But i never see the message box i am displaying. 1.Is there any problem with the below code 2.Also how can i discard the WM_QUERYENDSESSION at this moment so that it will not reach other applications. DLL_EXPORT void SetHook(void) { if(!bHooked) { hhook = SetWindowsHookEx(WH_GETMESSAGE, (HOOKPROC)MsgProc, hInst, (DWORD)NULL); bHooked = TRUE; } } LRESULT CALLBACK MsgProc(int code, WPARAM wParam, LPARAM lParam) { MSG* msg; msg = (MSG*) lParam; if( code >= 0 ) { if( msg->message == WM_QUERYENDSESSION) { MessageBox( NULL , "Recieved WM_QUERYENDSESSION" , "test" , MB_OK|MB_APPLMODAL|MB_SETFOREGROUND|MB_TOPMOST ); } } return CallNextHookEx(hhook, code, wParam, lParam) ; }

    C / C++ / MFC help question

  • System shutdown behaviour?
    S Surender

    I am responding to system shut down with the help of WM_QUERYENDSESSION but the problem is before i respond to this message some applications are being closed which are sitting in the Task bar tray and also some open applications in the task bar.I don't want this to happen.Is there any way to be the first in trapping WM_QUERYENDSESSION session and avoid other applications being killed.

    C / C++ / MFC help question
  • Login

  • Don't have an account? Register

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