Search:

Type: Posts; User: Llam4

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    6,965

    1) Load CSV into [2, N] array, or if you're more...

    1) Load CSV into [2, N] array, or if you're more experienced, an ArrayList of custom structs containing your loaded fields.
    2) Build the top of page and opening table.
    3) For N, add a row to the...
  2. Replies
    8
    Views
    5,982

    No, that would take 0.25 from 0.6 and 0.25 from...

    No, that would take 0.25 from 0.6 and 0.25 from 0.9, which is obviously not a relative result.



    float x = 0.6f;
    float y = 0.9f;

    float x2 = x / (x + y);
    float y2 = y / (x + y);
  3. Replies
    3
    Views
    4,223

    I was looking for session variables. Needless to...

    I was looking for session variables. Needless to say I've found them =]

    Now I've come across what seems to be a catch 22:

    The function queries the database and can return any number of rows....
  4. Replies
    3
    Views
    4,223

    C# in ASP.Net - Passing complex variables

    I'm developing an internal application that will query a database. One page grabs rows of information and displays them in one table. Each row has an assigned checkbox, and there is a delete button...
  5. Replies
    10
    Views
    7,338

    Yeah I threaded it. It's almost ready for a...

    Yeah I threaded it. It's almost ready for a public beta release now.
  6. Replies
    10
    Views
    7,338

    I'm converting this project from console -> GUI...

    I'm converting this project from console -> GUI windows application right now. I'm not familiar at all with programming GUI in C#. The program is designed to contine looping forever, and it's always...
  7. Replies
    10
    Views
    7,338

    I buffer 0-65535. I only search 1-65524 for...

    I buffer 0-65535.

    I only search 1-65524 for the first byte of my 12 byte array, so I'm actually getting 0-11 to 65523-65535.

    Then the next search starts 12 bytes into the previous search (65536...
  8. Replies
    10
    Views
    7,338

    A lot of work on the program has been done, now I...

    A lot of work on the program has been done, now I find myself at my wits end. There MUST be a logical error here that I can't figure out, as I've been trying to fix this problem for almost 8 hours...
  9. Replies
    10
    Views
    7,338

    I don't understand how I'd be able to find a 5...

    I don't understand how I'd be able to find a 5 byte array within a much larger array without saving and comparing 5 bytes at a time.

    I'd stop allocating memory where I do if I knew how to achieve...
  10. Replies
    10
    Views
    7,338

    Took that advice, but it still has to search...

    Took that advice, but it still has to search through the 64k buffer byte by byte. It runs much faster, but nowhere near 10 seconds.


    public bool CheckBytes(int position, byte[] signature)...
  11. Replies
    10
    Views
    7,338

    Reading Process Memory

    For one of my current projects, I'm using ReadProcessMemory() to search through a program's memory (0x00400000 -> 0x7FFFFFFF). This method is obviously obscure somehow as it takes hours to finish.
    ...
  12. Thread: Doesn't exist?

    by Llam4
    Replies
    7
    Views
    12,107

    EncoderParameter quality = new...

    EncoderParameter quality = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, 100);
    EncoderParameters Params = new EncoderParameters(1);
    Params.Param[0] = quality;...
  13. Thread: Doesn't exist?

    by Llam4
    Replies
    7
    Views
    12,107

    Finished an alpha version. The quality is poor...

    Finished an alpha version. The quality is poor because I can't use GetEncoderInfo(), but it works great.

    It updates every 15 seconds with all of the programs of interest I'm running....
  14. Thread: Doesn't exist?

    by Llam4
    Replies
    7
    Views
    12,107

    Seriously, this is all MSDN is giving me:...

    Seriously, this is all MSDN is giving me: http://msdn2.microsoft.com/en-us/library/ms736820.aspx

    I know I've referenced everything I need to.
    ...
  15. Thread: Doesn't exist?

    by Llam4
    Replies
    7
    Views
    12,107

    Okay. Do you know which class GetEncoderInfo is...

    Okay. Do you know which class GetEncoderInfo is in? Been over google and all codes are using it the same way I am.
  16. Thread: Doesn't exist?

    by Llam4
    Replies
    7
    Views
    12,107

    Doesn't exist?

    The type or namespace name 'GetEncoderInfo' does not exist in the namespace 'System.Drawing.Imaging' (are you missing an assembly reference?)



    using System;
    using System.Collections.Generic;...
Results 1 to 16 of 16