Search:

Type: Posts; User: BigDaddyDrew

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,297

    Ok, I totally didn't have the control...

    <moron>
    Ok, I totally didn't have the control Enabled.
    </moron>
  2. Replies
    1
    Views
    1,297

    Selecting text in a DataGrid

    Hello everyone,

    Is it possible to allow the user to select (highlight, so they can copy it) the text in a DataGrid (C#) control? I can't seem to figure it out anywhere.

    Also, my DataGrid has a...
  3. Replies
    2
    Views
    5,879

    As it turns out, there was just something whack...

    As it turns out, there was just something whack with the image I was trying to download. All other images worked fine. Thanks for the reply!
  4. Replies
    2
    Views
    5,879

    Download an image from a URL

    Hey everyone,

    I'm having problems downloading an image from in internet location.

    I've tried 2 methods:



    request = (HttpWebRequest)WebRequest.Create(newUrl);
    request.Method = "GET";
  5. Replies
    0
    Views
    1,861

    Remote Method return object instance?

    When I use the returned value from a remote method, that returned value is a proxy. Dealing with that proxy is really slow, as it does some remoting work of its own. Is it possible to specify that...
  6. Replies
    2
    Views
    4,098

    Sorry, yeah. I was a bit confused and I didn't...

    Sorry, yeah. I was a bit confused and I didn't explain my intentions very well:

    The assembly that the type lives in IS loaded when the program is run. The user will be able to input a string that...
  7. Replies
    2
    Views
    4,098

    Type.GetType() returns null

    I'm using Type.GetType(string) to extract the type from a string. The string contains the fully qualified name of a type. In my case it is:

    String typeName = "ToolShed.Tools.NotifyService";...
  8. Replies
    0
    Views
    1,463

    Remoting across domains

    Hi everyone,

    I'm trying to create a client-server architecture with remote procedure calls in 2 different domains, across a firewall. I haven't made up my mind on how to do it yet, but I did code...
  9. Replies
    9
    Views
    3,803

    Thanks guys! I have the rest of today to get...

    Thanks guys! I have the rest of today to get proficient in this! After a whole bunch of reading yesterday, I'm pretty sure I understand the language. It really is very similiar to Java, with a few...
  10. Replies
    9
    Views
    3,803

    Thanks, that is good information. I don't know...

    Thanks, that is good information. I don't know anything about VB.NET. Unfortunatly, I know almost nothing about .NET in general. I've programmed in Visual C++ .NET, but it was mostly for the editor....
  11. Replies
    9
    Views
    3,803

    Thanks, I'll look into that.

    Thanks, I'll look into that.
  12. Replies
    9
    Views
    3,803

    Quickly learn C# for a C++ expert

    Hey everyone. I just started a new job, and it's essential that I learn C# very quickly! (this weekend). I'm a solid C/C++ programmer, and have some Java experience. I was wondering if anyone can...
  13. Threads terminate when parent process does?

    I'm an uber newbie to threads in Windows...so I'm creating a test program to get the swing of things. I'm using AfxBeginThread, and creating a few threads. I expect to see them all run to complete,...
  14. Can anyone explain the above sqrt / fib code? I...

    Can anyone explain the above sqrt / fib code? I don't understand the role of the enum....
  15. Replies
    2
    Views
    1,705

    Insertion into a Random BST

    Hello everyone,

    I'm writing a random BST, and, other than the first node, I am always inserting at the root. I don't know why this is....any ideas?




    header File:

    class RandBST
  16. The Files class doesn't have anything to do with...

    The Files class doesn't have anything to do with my problem...the difficulties lie with the temp2 variable which is a standard string object. I think the problem has to do with the fact that I used...
  17. Assertion Error on string class assignment

    Sheesh...my problems continue now, but with a different flavor. I'm reading data in from a file, and the data is mostly jibberish. My goal is to extract only words, which are defined as sequences of...
  18. Replies
    12
    Views
    5,547

    That last code looks good.. And regarding the...

    That last code looks good..

    And regarding the class/methods....I was being a moron again and copied the wrong functions into the post...I was in a hurry to get to work when I did it!
  19. Replies
    12
    Views
    5,547

    Heh, ok, forgive my retardation....however, I...

    Heh, ok, forgive my retardation....however, I don't want to limit myself to, say, 100 chars. I don't know the length of the words I'll be reading in....perhaps this needs to be explained to me in a...
  20. Replies
    12
    Views
    5,547

    If I created a default constructor that...

    If I created a default constructor that initialized the word pointer to NULL, would that get the job done?
  21. Replies
    12
    Views
    5,547

    Yeah, you guys are probably right.... I guess...

    Yeah, you guys are probably right....

    I guess to me, it didn't matter that there wasn't any memory allocated to word*, as strcpy would take care of that...

    Here is word:



    class Files
    {
  22. Replies
    1
    Views
    3,960

    Ahhh! Thanks! Each call to readdir returns a...

    Ahhh! Thanks!

    Each call to readdir returns a dirent *, and I can get the file name from that struct with the d_name member....sounds good to me.

    Thanks
  23. Replies
    1
    Views
    3,960

    opendir(), readdir()

    Just wondering if anyone knows how to use these functions well...

    I'm attempting to open a directory, and read every file in it, then close the directory, open the next one, read all its files,...
  24. Replies
    12
    Views
    5,547

    Access violation with strcpy()

    Hi guys and gals,

    I'm running into an access violation with strcpy(). I don't use c strings much, so perhaps I'm doing something moronic.

    Any clues?



    void getData(vector<char*>&...
  25. For those of you who helped - thanks! SOLUTION

    Hi guys,

    Thanks to those of you who helped with my scheduling problem. I have finally gotten it to work, and will post the iterative solution. Special thanks to codeplug for the assistance with...
Results 1 to 25 of 80
Page 1 of 4 1 2 3 4