Search:

Type: Posts; User: AloneInTheDark

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    3,345

    Goodbye everyone

    Just wanted to say Goodbye to everyone. You can have your mud puddle. This place doesn't fit me too well.

    Take care!
  2. Replies
    128
    Views
    22,863

    I call myself "AloneInTheDark" because I am one...

    I call myself "AloneInTheDark" because I am one of the few in the entire country with a specially high IQ.

    Go ahead, mock me all you want buddy boy. I don't give a flying hoot.

    You probably...
  3. Replies
    128
    Views
    22,863

    People who always move backwards and dislike...

    People who always move backwards and dislike shiney GUIs will always be marginalized in a small corner. :)
  4. Replies
    128
    Views
    22,863

    That must be one of the most stupid quotes I...

    That must be one of the most stupid quotes I seen. Quoting from a linux world where they don't generally like GUIs, and then eventhough you admit you never tried Vista, you claim it's not friendly!...
  5. Replies
    128
    Views
    22,863

    Buy a bigger monitor, get a new PC... or you...

    Buy a bigger monitor, get a new PC...

    or you could ofcourse go back to DOS... or old UNIX... or how about 19" black and white TV ?

    This is just normal, Technology moving forward...get over it!...
  6. Replies
    1
    Views
    2,630

    Just read the code examples for those components...

    Just read the code examples for those components on msdn.microsoft.com
  7. Replies
    4
    Views
    4,909

    No, you can prevent injection with SQL Command as...

    No, you can prevent injection with SQL Command as well :


    MyCommand = DB.CreateCommand();
    MyCommand.CommandText = SQLString;
    MyCommand.Parameters.Add...
  8. Replies
    2
    Views
    1,800

    hm maybe this? Label1.Text = "Display this "...

    hm maybe this?


    Label1.Text = "Display this " + count.ToString();
    Application.DoEvents();

    I didn't get your question too well.
  9. Replies
    5
    Views
    1,721

    Try putting a "Application.DoEvents();" inside...

    Try putting a "Application.DoEvents();" inside your loop.
  10. Replies
    1
    Views
    2,503

    From...

    From http://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=36859



    DataRow[] foundRows = dt.Select(null, sort); // Sort with Column name
    for (int i = 0 ; i < rowCount; i++)
    {
    object[]...
  11. Replies
    4
    Views
    4,909

    Personally, I don't even use "Stored Procedures"...

    Personally, I don't even use "Stored Procedures" unless it is ABSOLUTELY needed. I try to keep everything inside my app code instead.

    Edit : Simplicity is the key in my humble opinion. Less is...
  12. Replies
    1
    Views
    17,056

    Sample code for client and server :...

    Sample code for client and server :
    http://www.developerfusion.co.uk/show/3574/

    IRC client (bot) :
    http://www.c-sharpcorner.com/UploadFile/pasihavia/IrcBot11222005231107PM/IrcBot.aspx

    Hope it...
  13. Replies
    22
    Views
    5,788

    I'm making a forum with centralized database...

    I'm making a forum with centralized database which will host two websites. Hobby projects. This forum will kick ass :) totally new kind of forum.
  14. Replies
    10
    Views
    2,525

    huh? computer crashed? What does that have to do...

    huh? computer crashed? What does that have to do with your code? Did the drive die?

    Dude, ever heard of BACKUPS ? DVDs? External Drives? Don't tell me you formatted your drive and "lost"...
  15. Replies
    21
    Views
    5,865

    "YOUR" nickname "STOLEN"? hm... No offence but as...

    "YOUR" nickname "STOLEN"? hm... No offence but as that redneck guy in Simpsons once said : Are you some kind of moron?

    *lol*
  16. Replies
    2
    Views
    2,108

    I recommend to change the design of your GUI and...

    I recommend to change the design of your GUI and not use MDIs at all. They are very bad from the usability point of view.
  17. Replies
    7
    Views
    2,585

    whooha! I don't have a TV but darn, I didn't know...

    whooha! I don't have a TV but darn, I didn't know about this. Cool. I'll try to catch it online somewhere.

    I'm a fanboy but doesn't really matter regarding the car, saw a pic of it. Seems alright....
  18. Replies
    10
    Views
    2,525

    Show me the code, not that weird long error...

    Show me the code, not that weird long error without a line break in it! ;)
  19. Replies
    2
    Views
    2,268

    or Visual C# Express

    or Visual C# Express
  20. Depends on what you do I guess. You turned it off...

    Depends on what you do I guess. You turned it off with 2GB?
  21. Replies
    4
    Views
    2,813

    You can get your data back with...

    You can get your data back with MyXML.Load("c:\somefile.xml");

    and do a loop, something like



    foreach(XmlNode XMLNODE in MyXML.SelectSingleNode("mydata").ChildNodes){
    Console.Write(...
  22. Replies
    4
    Views
    2,813

    Forget text files! Use XML files. This is after...

    Forget text files! Use XML files. This is after all 2008! :)

    You can do this easy by :

    //this code isn't tested but u'll get the id&#233;a


    try{
    XmlDocument MyXML = new XmlDocument();...
  23. Replies
    2
    Views
    1,720

    You can pass the class to the other class : ...

    You can pass the class to the other class :



    public class SomeClass() {
    public const test = "Hello world!";
    }

    public void doTest(SomeClass SC){
    try{
  24. Replies
    10
    Views
    2,525

    If you need to reach a variable from outside a...

    If you need to reach a variable from outside a class, you do it as "public ..." , if not "private ..."



    public class MyClass(){
    public string ThisVariableCanBeReached;
    private string...
  25. um... read : STATIC :) ...Joke aside, Not sure...

    um... read : STATIC :) ...Joke aside, Not sure but it doesn't sounds doable.
Results 1 to 25 of 74
Page 1 of 3 1 2 3