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: *

  • Users: raghu75
  • Order by date
  1. raghu75

    Server Response to client

    Hi , I have to develop a program which continusouly contacts the server and checks the link status and reports the update. Pl. tell me as to how to proceed in this regard. raghu
  2. raghu75

    how to close specific windows?

    Instead of Killing the Process..use CloseMainWindow() of that Process. Also If U can get the Handle to the Particular windows u can close them.. I was recently doing Console Close Disable for My app.At that time I noticed that if u can get handle to that window u can Manipulate lot of things on...
  3. raghu75

    How to use WINAPI functions from c#

    HI Try using A StringBuilder instead of Passing a String.. I hope that Should Work.... raghu
  4. raghu75

    Process Id's

    Hi, I am trying to use Id property of Process.I am saving the Id's to the DataBase.I am doubting that if the Process id is reused by the System then my code which gets the id from the DB wont work.. Can I rely on this property ..Will the reuse be for some other process? Help me
  5. raghu75

    Assembly.CreateInstance invalid cast Exception.

    It returned true for me..but i was not able to look into the exception part..
  6. raghu75

    Debugging Windows Service,

    There is something in MSDN... Call the Onstart() method of the Service b4 u call RunService.. then u can debug like any other windows application...
  7. raghu75

    Start Parallel Processes

    Hi, I am trying to start Parallel Processes in C#. I want to initiate 10 Processes and wait for all of them to complete. Any IDeas Welcome. Raghu
  8. raghu75

    Debugging Windows Service,

    Hi, I created a Windows Service.But I am not able to Debug it. Pl. let me know as to how to debug a Windows Service. The MSDN doesnot have much material on this. regards, raghu
  9. raghu75

    Disable Console close button

    Hi, I have to disable the close button(X)of the console of my console application using C#... is there any help.... rgds, raghu
  10. raghu75

    Semaphore

    Hi, I want to use semaphore to protect my resource using C#.Is there any help/place/code which can do this? rgds, raghu
  11. raghu75

    Sql Exception in 2nd thread

    Hi, I was debugging this and found the following... The threads are asynchronous.i.e. they are created using begininvoke & endinvoke in C#. I am creating new sqlconnection in every thread and using it.This works fine for the first thread.But the second thread and the later threads run on the...
  12. raghu75

    Sql Exception in 2nd thread

    Hi, I am opening two different connections in these two threads. This is working as expected in debug mode.When I run the application then the second thread throws an exception saying the connection is already open... raghu
  13. raghu75

    Sql Exception in 2nd thread

    Hi, I am debugging an application which spawns 2 threads in C#. Both the threads try & get sql connection to a DB and insert some records in to DB. The Problem is when I run the application the second thread is throwing an exception which states that the SqlConnection is already Open.But the...
  14. raghu75

    Form.Load Event not triggerred

    Hi, I found that I am having two MS-Combobox on my form in the class library.They are of type AxMSForms.AxComboBox. If I have this control on my form in the class library the showDialog is not invoking FormLoad event. Pl. let me know how can i trigger FormLoad ...
  15. raghu75

    Form.Load Event not triggerred

    Hi, I have a form in a Dll. I have added that Dll Project to my application as a refernce.When I create an object of that form and call showdialog on that form the Form.Load event is not getting fired.Hence whatever code is there in that is not executing....ANy help ...in C# Rgds
  16. raghu75

    DataGrid Header & Data row properties

    Hi, I am using a Winform and not a webform I missed it somehow...sorry for that,,is it possible in Winform?
  17. raghu75

    View the Form

    Hi, I have added a new form to a project in c#. I have put few controls on that form. Now I want to see how the form looks like at runtime. How can I do this...for a dialog there is TestDialog using which I can test the designed dialog,hou about the designed Form. Rgds
  18. raghu75

    Key Down event

    In the Key Down event of DataGrid, code for the selection of the whole row is present this.Select(new row) . But only the cell is getting highlighted and the row is getting unselected. How to enable the selection of the whole row?
  19. raghu75

    DataGrid Header & Data row properties

    Is it possible to specify different allignment for the header and the text (data rows) in a data grid? The language used is C#.
  20. raghu75

    Windows DataGrid Splitter

    How do you create a horizontal data grid splitter just like in Excel? We are using Visual C# language for development. I saw the explanation mentioned in the forum. That explains using VB. The split option mentioned in VB is not available in C#.

Part and Inventory Search

Back
Top