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 TouchToneTommy 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: stardv
  • Content: Threads
  • Order by date
  1. stardv

    Scan TCP PORT

    I would like to check if port is listening on the remote host. Does anybody know how to do it?
  2. stardv

    Windows Service

    I have a question about onStart() method with windows service. Do I put main execution code in onStart() method? It looks like it will not start until it executes all code within onStart() method. I have a thread started in the onStart() method and it is infinite so Service never starts. Where...
  3. stardv

    .Net Remoting + Winnows Service Acting as a Server

    I am trying to implement .Net Remoting to have Windows Server acting as a server for hosting the object and have some client application to connect to the server when needed to activate and use the object. I am new to both windows services and .Net Remoting so it is a challenge to implement...
  4. stardv

    Windows service = Managed Service?

    Can the windows service be categorized as managed service. I am just trying to figure out if I can use .net remoting to host the object on the windows service.
  5. stardv

    Windows services with C#

    I found some articles that describe how to create windows services with VB.Net. Is there any that shows how to do it with C#?? Thank you
  6. stardv

    Remote Communication with Windows Service.

    I am trying to design a system that connects and communicates remotely to the windows service written in C#.Net. In details what I am trying to accomplish is to have some user interface being located on one machine to communicate (perhaps using SOAP) with windows service written in C#. Net. I...
  7. stardv

    CSV parser

    Does anybody know any good free third-party CSV parser modules? I am surprised that MSDN does not have any classes to parse CSV, it is so common procedure. Thank a lot
  8. stardv

    Zip encoded stream dilemma.

    I have a case where I tried everything and I am stuck on finding right solution. I will appreciate any suggestions. Here is a scenario. I am sending XML request to the server and receive response as a stream what is a zip file. I am trying to get the CSV file that is zipped. How do I get to...
  9. stardv

    zip libraries

    Does anybody know of any libraries that will let me uncompress the file from zip archive? Thank you
  10. stardv

    FTP Library to open file directly on FTP server.

    Does anybody know if there are any libraries that will let you open file directly from remote FTP server rather than go in steps of transferring it to local machine and then opening it from local machine. Thank you for any information
  11. stardv

    Stream(TextWriter) to String conversion

    I have a stream and instead of writing it to the file I would like to create a string that contains data from the stream. Can I do it. TextWriter to String conversion will work for me too. Thank you
  12. stardv

    Schedule Tasks with C# code in .NET

    I am trying to create an application that will give the user an option to choose time to schedule certain task that will be called as a method and must run according to specified schedule by user. Could you please recommend me what would be the best approach for this problem. I had 2 ideas...
  13. stardv

    Objects Graph. In VS

    I was wondering if VS has such feature that lets you see the graph all pictorial representation of all objects and classes and shows theirs relationship in terms of what inherits form what and what gets overloaded and so on. It would be nice to heave that feature for massive projects with...
  14. stardv

    Resolve DNS validity

    I need to determine if a given domain exists or not. How can I code this in C#. I am given a domain like msn.com. All I need is to run the code passing domain and return if it valid or not. I guess I should to use Dns.GetHostByName, but I am not sure what would be the best solution for it...
  15. stardv

    List of Valid Domains

    Does anybody have or know where I can get up-to-date or at least close to be updated valid domain list(both top level and DNS) Appreciate any help.
  16. stardv

    Common error Syntax e-mail address Correction C# Module or Tool

    Can anybody recommend were I can download the tool or module that checks e-mail address syntax and corrects common errors like for e-mail changes name@yaho.cm to name@yahoo.com I am ready to pay for it as well. Thank you
  17. stardv

    KeyPress Events in DataGrid

    It does not seem they regular key press event work on dataCells in dataGrid How Can I override DataGrid methods to make it return data cell coordinates when I press enter on it and if it is possible bind it on the “Enter” key press I am stuck, pleaseeee helppp
  18. stardv

    Change DataSet-DataGrid Binding Event

    By default binding of dataGrid and dataset happens when even such as “Leave Focus” on the dataCell occurs. I would like to change it tomake it happen when “Entered is pressed” and roll back the changes if “Leave Focus” happens without pressing “Enter” key. I will appreciate any suggestions...
  19. stardv

    DataGrid Binding Event Question

    Hello everyone, Could you please help me with solving some trick issue. Here is what I have and what I want to do. I have dataGrid databinded to a dataTable. It looks like binding happens whenever dataGrid cell looses the focus. I would like to change it to make it happen when ENTER is...
  20. stardv

    Focus on the cell of DataGrid, Get vhanged value ??

    How can code the following scenario: 1. focus on the cell of the dataGrid until desired text is entered do not let the user get out of the cell 2. change content of the cell to the old value till desired text was entered. Thanks a lot

Part and Inventory Search

Back
Top