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 strongm 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. belthurgp

    Weblogic 6.1 : Socket write error. Urgent

    Hi, I am using the following code to forward to a particular page. this.getServletContext().getRequestDispatcher("/" + USCommonFunctions.buildURL(user, pageName)).forward(request, response); buildURL is just a helper function. getRequestDispatcher is throwing the following error ...
  2. belthurgp

    GetPasswordChar

    I have written a code to read the chars under *****. It is not working in windows 2000. any ideas. i heard microsoft came out with a patch. but i am not able to find it nor how they have managed to (fix) it. any help will be appreciated. thanx in advance. GuruPrasad Belthur...
  3. belthurgp

    SOS: Apache httpd

    when i start httpd &quot;/etc/rc.d/init.d/httpd start&quot; it says OK. when i stop it says OK. but httpd status says &quot;httpd dead but pid exists&quot; i need it working very badly for cgi. help me thanx in advance. <p>GuruPrasad Belthur<br><a...
  4. belthurgp

    Capture WM_LBUTTONDOWN message

    Set up a MessageHook using SetWindowsHookEx. Look into MSDN. <p>GuruPrasad Belthur<br><a href=mailto:belthurgp@yahoo.com>belthurgp@yahoo.com</a><br><a href=www.geocities.com/belthurgp>My Personal Page</a><br>Commerce Graduate, but have lived purely on computers. All the work i have done till now...
  5. belthurgp

    Message Operations

    No,<br>&nbsp;<br>Messages work the same under both 98/NT(including NT5).<br><br>put a break point (work under 98) in the code and check out whether a message is being sent or not. You can also start spy++ and ask it to spy all the messages coming from your application.<br><br>Your question is...
  6. belthurgp

    links to dll sites

    hi,<br><br>Writing dlls are very simple,<br><br>In VC create a Win32 application, go to setting and in the linker options add &quot;/dll&quot; (without quotes) and your file will get linked as a dll not an exe. <br><br>now include a new file with an .c or .cpp extension and add it to the...
  7. belthurgp

    Callback procedure implementation for Shell_NotifyIcon function

    if you have MSDN , search for Shell_NotifyIcon and you will get a sample code on that.<br><br>if you don't have MSDN, you will get it in MICROSOFT site. <p>GuruPrasad Belthur<br><a href=mailto:belthurgp@yahoo.com>belthurgp@yahoo.com</a><br><a href=www.geocities.com/belthurgp>My Personal...
  8. belthurgp

    printing data to Edit Control Box

    HI,<br><br>try this code.<br><br>void CSomeClass::SomeFunc()<br>{<br>&nbsp;&nbsp;&nbsp;// Assuming IDC_EDIT1 is your EditControl<br>&nbsp;&nbsp;&nbsp;int nCnt = 0 ;<br>&nbsp;&nbsp;&nbsp;CString str ;<br>&nbsp;&nbsp;&nbsp;while(nCnt &lt...
  9. belthurgp

    printing data to Edit Control Box

    HI,<br><br>i am not sure i understand ur question properly.<br>but try this code.<br><br>void CSomeClass::SomeFunc()<br>{<br>&nbsp;&nbsp;&nbsp;// Assuming IDC_EDIT1 is your EditControl<br>&nbsp;&nbsp;&nbsp;int nCnt = 0 ;<br>&nbsp;&nbsp;&nbsp;CString str ;<br>&nbsp;&nbsp;&nbsp;while(nCnt &lt...
  10. belthurgp

    Getting more info from VC++

    hi,<br><br>don't know how to get NIC address.<br><br>but you can read the key HKEY-LOCAL-MACHINE\SOFTWARE\MICROSOFT\WINDOWSNT\CURRENTVERSION for the serial number and owner name <p>GuruPrasad Belthur<br><a href=mailto:belthurgp@yahoo.com>belthurgp@yahoo.com</a><br><a...
  11. belthurgp

    Terminate Process

    hi karl,<br><br>i am not against taking microsoft documentation seriously, but i definielty think twice. <br><br>There are lot of functions which windows uses and is not available for us. those undocumented functions will definitely make our lives a little bit easier, yes we have to be careful...
  12. belthurgp

    Terminate Process

    hi pete,<br><br>I really appreciate your views on using TerminateProcess in very rare cases. But my experience tells me not to take Microsoft's advice very seriously. They are very good at discouraging people from interfering into OS internals.<br><br>Regarding my query, what I have in mind is...
  13. belthurgp

    How to kill a task given the task name?

    Call EnumWindows, U will get the Window Handle, <br>then Call GetWindowThreadProcessId, U will get a process Id,<br>Call Terminate Process with the process Id.
  14. belthurgp

    Terminate Process

    I want to make a program of mine not killable under NT. My program should be able to trap TerminateProcess. Any ideas on how to do this.
  15. belthurgp

    Lost sa Password

    Can somebody help me figuring out how to get my data back ?

Part and Inventory Search

Back
Top