CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: walidm38

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    2,400

    Read txt file into a Tuple

    Hi,
    How can I loop through a file containg values like the ones below, and stored them in a Tuple ?
    1.1, 0.1836856, 5.6
    3.3, -5.5, 43.44
    -0.38162, 6.636666E-08, 3.1
    1.01516E-07, 0.3695395, 1.5
    ...
  2. Ordering file containing exponential notations

    Hi,
    I have a txt file containing related values such as these:

    ColumnOne, ColoumnTwo
    1.1, 0.1836856
    3.3, -5.5
    -0.38162, 6.636666E-08
    1.01516E-07, 0.3695395

    I would like to order these...
  3. Replies
    3
    Views
    4,613

    Save an array as pdf to disk

    Hi,

    I have a function which retruns a pdf as a byte[]
    private static CreatePDF()
    {
    byte[] pdf;
    //Do some work & create pdf
    return pdf;
    }
  4. Replies
    0
    Views
    2,946

    alter Excel sheets row height

    Hi All,
    How can I alter the row heights of all my non empty rows in my EXCEL sheet?
    Thanks in advance.
    w.
  5. Replies
    2
    Views
    3,165

    Copying listview row without duplication

    Hi,

    Trying to copy a ListView row to another listView control and to prevent having duplicates I'm checking if the item already exists first.
    If the row doesn't exist then copy it if not don't...
  6. Replies
    6
    Views
    16,503

    Re: BackgroundWorker & timer

    Hi,
    I wrote some code which it'll do what I want to achieve.
    The only problem is that when I close my form while the thread is running it throws an error in Dispose:
    "Cross-thread operation not...
  7. Replies
    6
    Views
    16,503

    Re: BackgroundWorker & timer

    How do I do that?
    Do you mean I need to create a timer programatically in my ackgroundWorker1_DoWork event?
    Could you please give me some more pointers.
    Thanks in advance.
  8. Replies
    6
    Views
    16,503

    BackgroundWorker & timer

    Hi,
    I'm a newbie and I'd like some help please.
    I created a small applications which check CPU usage on a list of servers every 5000 timer intervals.
    The application was working but not responsive...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured