Search:

Type: Posts; User: fifo

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    1,758

    Re: using DataSet in Windows Service?

    my Dataset is only for storing temp Data (i don't want to use Array), that's all

    My service also can Start but nothing happen


    OnStart Event:

    Setup a DataSet : DataSet dsTemp = new...
  2. Replies
    4
    Views
    1,758

    using DataSet in Windows Service?

    Hi, all

    in C#, I wrote a window service using DataSet but it does not work.

    My service run perfect without DataSet, whenever I use DataSet, this service can not run. :confused:

    Maybe in...
  3. Replies
    0
    Views
    459

    Shell File from Local System Service?

    Hi, all

    I wrote a service running in local System acc to shell a file. This service run perfect but my ExeFile also run in local System acc, too. :confused:

    I want this service shelling exe...
  4. Re: Classic VB - How can I set my exe icon using a resource file?

    i have a answer for this problem! :D

    If you want to use more color depths Icons, you should not use VB resource editor to add those Icons, you can use 2 file RC.exe, RCDLL.dll to combile your own...
  5. Re: how to connect VB Client to C# Server using MSwinsock.OCX

    thanks for your advice
    I'm trying, a bit diff for me to use Net.Socket classes
  6. Re: how to connect VB Client to C# Server using MSwinsock.OCX

    thanks so much for your detail, jmcilhinney

    Why don't we use MSwinsock? It seam so easy to use.

    I don't use another socket class 'cause in VB6 client using it to connect C# server as I said,...
  7. how to connect VB Client to C# Server using MSwinsock.OCX

    Hi, all

    I wrote a C# server using MSwinsock.ocx to listen in a port, and then a VB Client using mswinsock.ocx (the same file with C#) to connect to C# server.

    But it doesn't work....

    in...
  8. Replies
    0
    Views
    1,540

    [2.0] How to wrap text in toolTip of Properties

    hi, experts

    I added a property with some <summary infor > in my Control like below:



    /// <summary>
    /// Added by fifo
    /// Return a string.
    /// </summary>
  9. Replies
    10
    Views
    5,090

    Re: [2.0] Create my own Style Form in C#

    thank a lots
    you are great :thumb:
  10. Replies
    10
    Views
    5,090

    Re: [2.0] Create my own Style Form in C#

    I found some component useful:

    1. http://www.skincrafter.com/download.html

    2. http://www.formviz.com/download.html

    3. http://www.windowsforms.net/Default.aspx?tabindex=4&tabid=49

    really...
  11. Replies
    10
    Views
    5,090

    Re: [2.0] Create my own Style Form in C#

    NO, i try, try, and try again, thousand times.

    I'm looking for this components a long time ago, BUT nothing is suitable for my aim. :Cry

    that reason why i need your help. :D

    any way, thank a...
  12. Replies
    10
    Views
    5,090

    Re: [2.0] Create my own Style Form in C#

    thank for replying
    But, I need a tool which can help me to create Skins, Styles for C# Forms.

    I don't need skin for my OS, or else.

    Can you show me the name of this tools (such as ActiveSkin...
  13. Replies
    10
    Views
    5,090

    Re: [2.0] Create my own Style Form in C#

    @jmcilhinney : i see, but any way do you think interfaces alway are importance, don't you? With fancy interface you can make your clients stay longer before monitor (without boring). :D

    And about...
  14. Replies
    10
    Views
    5,090

    [2.0] Create my own Style Form in C#

    hi, experts

    I want to create my own style forms in c# like Nero form, or Winnamp (See the picture below). But i dont know HOW???

    pls, show me?
  15. Replies
    2
    Views
    899

    Auto Scroll TextBox

    Hi, Experts
    I want to create a auto scroll Textbox in C#. But I dont know how to make text box scroll by coding.

    Please, help me.
  16. Thread: Reporting Tool(s)

    by fifo
    Replies
    2
    Views
    486

    Re: Reporting Tool(s)

    Toad for Oracle Version 8.6 : another tool to manage your oracle database. Its very useful.
  17. Replies
    1
    Views
    537

    [2.0] wake up & shutdown from hibernate

    Hi, experts

    I used Prof Shutdown newest version, it can wake up PC, shutdown, wake on Lan,... Its very nice.

    I wonder if C# can do like that. But I dont know how. Tell me!
  18. Replies
    3
    Views
    692

    Re: get ID of LAN Card?

    another easier way?

    I dont know exactly a way that use Network namespace to solution this problem.

    Any idea?
  19. Replies
    3
    Views
    692

    get ID of LAN Card?

    Hi, experts

    How can I get some information about my LAN card?

    this information is important for me. Please tell me how.
  20. Replies
    3
    Views
    557

    Re: Unicode file Problem

    It is not useful.

    I mean I want to use Unicode in INI file.

    Any idea?
  21. Replies
    3
    Views
    557

    Unicode file Problem

    Hi, experts

    I create a file named "test.ini" with some Unicode string in it. But this file is still ANSI formated. :confused:

    I dont know how to create a file formated Unicode (or UTF-8).
    ...
  22. Re: How to Add, Edit, and Delete Data in MS Access DB?

    In order to modifying your database, you should learn more about Command (such as InsertCommand, UpdatedCommand, DeletedCommand ) in DataAdapter. Like that


    myConnection.myAdapter.UpdateCommand...
  23. Replies
    2
    Views
    631

    Re: C# Numeric problem

    Nice, thanks
  24. Replies
    2
    Views
    631

    C# Numeric problem

    Hi, Experts

    I have a single number A = 1.9E+28, I want convert it to String by using

    String B = A.ToString() ;

    B will be "1.9E+28"

    BUT I want to show B like B = "19000000....000" ...
  25. Replies
    3
    Views
    944

    Re: Update Dataset and database Table

    hey, i see.
    Firstly, if you want to update multil Rows from DS into DB, you MUST creat Command Updated for DataAdapter.

    Secondly, each DataAdapter have Commands for just only a Table.

    Try!
  26. Replies
    26
    Views
    17,030

    Re: how to close form1 when i open form2?

    :cry

    thanks so muck, anyway
  27. Replies
    9
    Views
    917

    Re: Call function in FormParent?

    thanks, its very helpful for me.

    I wonder whether we have another better solution.
  28. Replies
    9
    Views
    917

    Re: Call function in FormParent?

    Static is good in this case.

    Do you have another ways? show me
  29. Replies
    26
    Views
    17,030

    Re: how to close form1 when i open form2?

    oh, I see.

    you mean Login form will be first and when you pass this form then Main Form will be shown.

    BUT as for me, the Main form and Login form should be shown together. Main form being like...
  30. Replies
    26
    Views
    17,030

    Re: how to close form1 when i open form2?

    :cry
  31. Replies
    26
    Views
    17,030

    Re: how to close form1 when i open form2?

    Sorry, I don't totally understand your idea.

    Can you post whole code for this problem? Thanks
  32. Replies
    26
    Views
    17,030

    Re: how to close form1 when i open form2?

    Maybe, you misunderstand this question.
    This question in here :


    It mean you creat a button in form 1 and click it to creat a form 1 and show form 2.

    I think we should referent var form1 to...
  33. Replies
    26
    Views
    17,030

    Re: how to close form1 when i open form2?

    Oh, no

    I did follow your code But I got a error, you can see in my attach Image.
  34. Replies
    9
    Views
    917

    Call function in FormParent?

    Hi,

    I made a form A with a public function C in this, and another form B.

    I call formB.showDialog(owner A) in form A, and then in form B, I want to use function C in form A, BUT I can't call...
  35. Replies
    26
    Views
    17,030

    Re: how to close form1 when i open form2?

    As for you, this form had loaded in memory and you don't use it.
    I think you waste resources to store this form, anyway.

    better ways??
  36. Replies
    26
    Views
    17,030

    Re: how to close form1 when i open form2?

    It does not work. It will close both form because this code must be in Button_Click of form1 so that when you call This.Close() --> form1 will be Close with all of this code will be close, too.
    ...
  37. Replies
    3
    Views
    658

    Re: How to set Default to Button

    Nice, useful.

    Thanks all.
  38. Replies
    3
    Views
    658

    How to set Default to Button

    Hi,

    I made a form with a Button and 2 TextBox. When you press Enter in whatever TextBox, Button will be press.

    I mean making a default Button in form?

    Show me how?
  39. Replies
    4
    Views
    1,371

    Re: How can I set focus to TextBox in RunTime?

    Yeah, thanks so much.
  40. Replies
    4
    Views
    1,371

    Re: How can I set focus to TextBox in RunTime?

    Yeah, thanks so much. You are right.
    I'm a amateur. I've just coded by C#.

    I've done. But I don't know how to realize when a TextBox got Focus. I can not find out Method Get or Lost Focus of...
Results 1 to 40 of 80
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width