Search:

Type: Posts; User: C of Green

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,090

    Thank you very much guys. All is good now, i...

    Thank you very much guys. All is good now, i really appreciate it.
  2. Replies
    5
    Views
    1,090

    well when i add a cout to the do while loop, it...

    well when i add a cout to the do while loop, it seems to be reading it in correctly. Its just when i display it back. It only has the last line, then garbage.
  3. Replies
    5
    Views
    1,090

    Array of Structures

    hey all, Just wondering if someone might know what is going wrong here.
    I have a file that looks like this ...




    ...
    V 2 103 362731.9 5606201.4 ...
  4. Replies
    8
    Views
    1,197

    and why would this be a bad idea ? isnt the...

    and why would this be a bad idea ? isnt the purpose of the exit() function to cause immediate normal termination of a program ? just wondering :)
  5. Replies
    10
    Views
    30,829

    C# supports "real" pointers with the unsafe...

    C# supports "real" pointers with the unsafe keyword
  6. Replies
    4
    Views
    1,610

    hmmm ... ya i tried playing around with ...

    hmmm ... ya i tried playing around with <iomanip> still could not get it to work.

    Questions ... Why does the first number get lose the decimal and get rounded up? why does the second number turn...
  7. Replies
    4
    Views
    1,610

    Big number question

    Hi all, just wondering if someone can tell me what i might be doing wrong here ...

    I'm trying to read in numbers from a text file into variables and display them back on the screen. However after...
  8. Replies
    2
    Views
    1,629

    you can get rid of the blue by going to your...

    you can get rid of the blue by going to your properties window / FlatApperance / FlatStyle ... and change that to Popup ... not sure if thats what you want thou .
  9. Replies
    9
    Views
    2,793

    ya well, a comment was made about pointers and i...

    ya well, a comment was made about pointers and i just simply made a reply, and "unsafe" code was added to c# for a reason like performance, flexibility and direct memory management. I think c# would...
  10. Replies
    9
    Views
    2,793

    you can use the "unsafe" keyword to use pointers...

    you can use the "unsafe" keyword to use pointers ...




    class Program
    {
    unsafe public void test()
    {
    int* pointer;
  11. Replies
    9
    Views
    2,793

    oh sorry i didnt see this ... however ......

    oh sorry i didnt see this ...



    however ... seems you might have an array out of index in "LoadConfig" or elsewhere ...
  12. Replies
    9
    Views
    2,793

    you can try something like this ... ...

    you can try something like this ...




    Thread newThread = new Thread(new ThreadStart(doSomething));
    newThread.Start();
  13. Replies
    5
    Views
    15,743

    WOW ! Thanks for the reply Bob ! i quickly tried...

    WOW ! Thanks for the reply Bob ! i quickly tried that out, and it works awesome ! I'm new to C# and had no idea about Encoding ... thanks again.

    :)
  14. Replies
    5
    Views
    15,743

    hi ... thanks for the reply/input bob ... however...

    hi ... thanks for the reply/input bob ... however im quite sure the byte array is done properly, and there is no packed data involved. Im trying to convert a EBCIDIC header that is present on SEGY...
  15. Replies
    5
    Views
    15,743

    EBCDIC to ASCII

    hi all ... im trying to make a ebcdic to ascii conversion function, however something is not
    working right. I keep getting characters showing up like ...




    ( : / - / )€ - (...
  16. Replies
    14
    Views
    6,681

    Your reasoning/his reasoning ... Would a second...

    Your reasoning/his reasoning ... Would a second language help if you were in Europe !
  17. Replies
    14
    Views
    6,681

    ya well i would i have to say ... yes it might be...

    ya well i would i have to say ... yes it might be "easy enough to translate" C# to VB.NET, if you had a good understanding of "both" languages and not have to consult books or colleagues when the...
  18. Replies
    1
    Views
    2,049

    StringBuilder

    Hello all ... i have a StringBuilder question. Im wondering the best way
    to go about "clearing" a StringBuilder after is has aready been appended to.

    heres the deal ... i have a textBox that i...
  19. Replies
    6
    Views
    2,147

    perhaps a starting point ... ...

    perhaps a starting point ...




    private void inputTextBox_KeyDown(object sender, KeyEventArgs e)
    {
    if(e.KeyCode == Keys.Enter)
    {
    ...
  20. Replies
    4
    Views
    1,477

    Right on! thanks for the tip prelude. With...

    Right on! thanks for the tip prelude. With StringBuilder it works great and is fast!




    const int NUMOFROWS = 40;
    const int NUMOFCOLS = 80;
    private char[] ASCIIHeader...
  21. Replies
    4
    Views
    1,477

    hi and thanks for the reply prog-bman. However i...

    hi and thanks for the reply prog-bman. However i was able to figure it out so it works but now
    the problem is its really really slow to output 3200 chars on the screen. I can almost write
    this out...
  22. Replies
    4
    Views
    1,477

    Another TextBox Question

    Hi everyone ... im just wondering if i can output a string into a textbox with a specified format.
    I have an array thats 3200 chars that i want to output to a text box, however i want to output...
  23. Replies
    2
    Views
    1,975

    Thanks, that worked great! :)

    Thanks, that worked great!

    :)
  24. Replies
    2
    Views
    1,975

    Outputing an array to a textbox ?

    hey all ... just wondering if someone knows how to convert an array to a textbox. I have a StreamReader that reads in 3200 chars, and im tring to output them into a textbox, however it will only...
  25. Replies
    3
    Views
    1,745

    cool ... thanks for the reply thantos ... i will...

    cool ... thanks for the reply thantos ... i will check into the "Virtual Server" when im at the router ...

    thanks :)
Results 1 to 25 of 70
Page 1 of 3 1 2 3