Search:

Type: Posts; User: verbity

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Monitoring between Router/Firewall to the Subnet

    I have a quick question. I'm setting up a Monitoring system on my network. I have a router (virtual) in place and a firewall in front of the server. In between the router and firewall there is a...
  2. Replies
    4
    Views
    1,754

    Well I got it working finally. It is a better...

    Well I got it working finally. It is a better solution than a constant loop on a textbox looking for new text. At least that's the only way I could figure how to do it.
  3. Replies
    4
    Views
    1,754

    Yeah I read that one and gave it a shot. It...

    Yeah I read that one and gave it a shot. It seems to freak out with VS 11. I finally got the linenum_rtf.cs control to work. But it's buggy at best.
  4. Replies
    4
    Views
    1,754

    Line #'s to richtext box in VS 11

    I'm trying to add line numbers to a text editor I'm building but not having much luck. I'm trying to find a way around building something massive with a picture box next to my textbox etc. I'm...
  5. Replies
    7
    Views
    2,493

    How do you call that thing?

    How do you call that thing?
  6. Replies
    7
    Views
    2,493

    Here's the scaling: { ...

    Here's the scaling:



    {
    Image tempImage = Image.FromFile(imageData.Path);
    //imageData.size = tempImage.Size;
    ...
  7. Replies
    7
    Views
    2,493

    Hmmm not sure...lemme check the functions calling...

    Hmmm not sure...lemme check the functions calling it...
  8. Replies
    7
    Views
    2,493

    Best way to draw thumbnails?

    Hello...I'm trying to speed up the thumbnail loads for a photo app. Is this the best way to draw a thumbnail? There's about 3 other functions involved but I'm just wondering about this particular...
  9. Replies
    1
    Views
    1,090

    How to populate image tree faster.

    Hi...could someone help me figure out how load my thumbnails either faster....or just in the background so I can still use my UI? I have a form that loads/imports photos and it takes about 5 to 6...
  10. Here are my structs: typedef struct cache_...

    Here are my structs:



    typedef struct cache_ {
    int size; /* cache size */
    int associativity; /* cache associativity */
    int n_sets; /* number of cache sets */
    unsigned...
  11. Initializing a pointer of a structure within a structure

    Hi I'm trying to intialize a struct for my cache simulator.

    The problem is one of the elements I need to initialize is another structure called cache_line which is a linked list and I wanna...
  12. Replies
    2
    Views
    4,068

    Problems from Algorithm Olympics

    Hey has anyone manage to get their hands on any of the problems that were in the 2010 (or later) algorithm olympics??

    I'm just interested to play around with them and see if I can make any elegant...
  13. Replies
    4
    Views
    1,676

    This is very true...but I still need to do this...

    This is very true...but I still need to do this stupid assignment. Actually I shouldn't call it stupid since I can't figure it out.
  14. Replies
    4
    Views
    1,676

    It has to be an unuseful list with a queue.

    It has to be an unuseful list with a queue.
  15. Replies
    4
    Views
    1,676

    Queue class algorith/code

    Hello people!! I have a queue class that works just fine. But I need to have it spit out permutations of A B C. Like A , B, C, AA, AB, AC, BA, BB, BC, ..... CCC. I haven't the vaguest idea how to...
  16. Replies
    1
    Views
    1,071

    Stack topElem function question

    I have a function to get the top element from a stack...but I'm having a problem calling it


    void stack::topElem(el_t& elem)
    {
    if(isEmpty())
    {
    stackError("stack is empty");
    }
    else
  17. Replies
    2
    Views
    1,742

    ReadLine()...refreshers???

    I totally forgot how to use readline(). I'm looking it up on the MSDN right now but it's got all the Environment::Console...blah blah blah.

    I'm working on a parser that: has a szBuffer[1024]...
  18. Replies
    3
    Views
    3,653

    Re:tabstop...

    Cool I'll check it out. I surmised as much last night....I know html and xml "fairly" well but didn't know what I was exactly looking for. I checked out a site that has one embedded and they use...
  19. Replies
    3
    Views
    3,653

    Currency Converter - stream pull

    Hello...I decided to work on a currency converter just for fun. It's fairly simple except for pullling current currency rates off the web from some place. Does anyone have any idea how to do...
  20. Replies
    1
    Views
    1,092

    Timer?? and a Click???

    Hello,

    I was thinking about making a metronome for myself to use on my desktop when I'm playing guitar........

    But I'm kinda lost on the whole timer thing and than on how to incorporate a click...
  21. Replies
    2
    Views
    1,149

    Re: Where's the Love

    Was my question too easy?? Where's the love...

    I believe if I had that public method with the get and set inside I would just call it (if it was called public string thisString) from the other...
  22. Replies
    2
    Views
    1,149

    Populating struct from second form

    I'm having issues with filling a struct from a textbox in a different form.

    it's just a textbox with a string....

    Do I use the get/set methods?? and if so how the heck do I call the get...
  23. Replies
    5
    Views
    3,771

    Actually I just used this: ...

    Actually I just used this:
    System.Threading.Thread.Sleep(100);
  24. Replies
    5
    Views
    3,771

    Pause or wait??

    I need a way to pause for like 1 second at the end of while loop....does anyone have any idea how to do this???
  25. Replies
    1
    Views
    2,328

    Reset label location

    I have a simple label control which I am using to graphically represent some water which decreases with each iteration of a while loop. I need to relocate the label after a decrease in height. ...
Results 1 to 25 of 101
Page 1 of 5 1 2 3 4