Search:

Type: Posts; User: conor20_ie

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    1,314

    Remotable types

    Hi,

    I'm trying to get a very simple remotable type example working (from http://msdn.microsoft.com/en-ie/library/xws7132e(en-us).aspx ).

    I've put together the Remotable Type, the Server/Host...
  2. Yeah, that was how it was originally set up but...

    Yeah, that was how it was originally set up but then when getting the local user's username worked, it cleaned up the whole process up.

    So there's no way of getting it from a machine logging in...
  3. The username of the user using the site....

    The username of the user using the site. Preferably the username from his/her machine.

    It's to store information in an SQL database along with the persons username so when they come back, it can...
  4. Problems accessing logged on user via System.Security

    Hi.

    In a C#/ASP web application, I used

    String username = System.Security.Principal.WindowsIdentity.GetCurrent().Name;

    to get the username of the user currently logged on to Windows. And...
  5. Replies
    9
    Views
    1,894

    You're quite right. I think though the fact that...

    You're quite right. I think though the fact that it's performing a Fourier transform means they're going to need the percision of doubles so they're going to have to be cast to doublles at some...
  6. Replies
    9
    Views
    1,894

    They're signed short ints stored in little endian...

    I'll try this and see how the performance is.
    Thanks.
  7. Replies
    9
    Views
    1,894

    Thanks for the help. If this is the case then...

    Thanks for the help.

    If this is the case then I think even if there was a way of padding out f read, the values would still need to be converted so I guess I'll just have to work around it.

    ...
  8. Replies
    9
    Views
    1,894

    Fread type problem

    Hello,

    I am trying to read in values from a wav file. Each sample is 16 bits long (eg equivalent to a short int).

    I want to run a FFT routine on the values then which takes a double array.
    ...
  9. Replies
    2
    Views
    2,452

    Code to access Sound Card / Line in

    Hey,

    I'm writing an application that will use information from music (using Fast Fourier Transform to break it down) such as the frequencies and their amplititudes for different things.
    ...
  10. Replies
    2
    Views
    1,762

    Thanks. I am indeed an idiot though, it's ...

    Thanks.

    I am indeed an idiot though, it's
    isdigit(string[position])
    not
    string[position.isdigit()].

    I got too used to programmin in Eiffel.

    Conor.
  11. Replies
    2
    Views
    1,762

    isdigit() function

    Hey,

    I'm trying to use the isdigit() function on a character eg
    string[position].isdigit()

    but I don't know which class to #include for this to work.
    Does anyone know which one I need to...
Results 1 to 11 of 11