Search:

Type: Posts; User: CyberCarsten

Page 1 of 13 1 2 3 4

Search: Search took 0.84 seconds.

  1. Replies
    0
    Views
    2,345

    Software for drawing tombstone diagram

    Hi
    Does anyone know a program for drawing tombstone diagrams?
  2. Replies
    5
    Views
    2,276

    Re: BufferedInputstream performance

    Enlarging the buffer increases the copy time. Thats what is frustating me
  3. Replies
    5
    Views
    2,276

    Re: BufferedInputstream performance

    how is that, and by how much? Don't you mean increase big O?
  4. Replies
    5
    Views
    2,276

    BufferedInputstream performance

    Hi
    I am using BufferedInputStream to load in a file. Apparently i, get slightly lesser performance the higher i set my buffer. Why is that? There is approx. a 50 sec difference on 632 Mb file when I...
  5. Replies
    4
    Views
    860

    Re: 3D Terrains in Direct3D

    Hi
    How can I construct heightmaps?
  6. Replies
    4
    Views
    860

    3D Terrains in Direct3D

    Hi
    Which software should I use if I want to create 3D terrains/worlds to use with Direct3D?
    I have TrueSpace and 3DMax
  7. Replies
    0
    Views
    364

    store file in mysql database

    Hi
    Does anyone know how to store a file in a mysql database using java? I have been searching google for hours, but I haven't found anything useful.
  8. Replies
    3
    Views
    537

    Re: Problems with session

    Solved! Disabled caching did the trick
  9. Replies
    3
    Views
    537

    Re: Problems with session

    Hi
    Even after making these changes, I can still access the protected pages after I "logout"...any ideas?
  10. Replies
    0
    Views
    332

    FrontPage Server Extension [Solved]

    Hi
    I have troubles getting the FP Server extensions working on my site.
    I install IIS and the Server extionsions from Add/Remove programs. Then I tried uploading a frontpage file with a hitcounter...
  11. Replies
    3
    Views
    537

    Problems with session

    Hi
    I have an administrative area on my website. I protect these pages using sessions. The login part works fine. I can't view the protected pages if I havent first logged it, but my logout script...
  12. Replies
    3
    Views
    636

    Re: JSP file i/o

    I have been searching google for hours, and I have found very complex jsp implementations of it. But I only wan't something simple. I text field to contain the path, a browse button and an upload...
  13. Replies
    3
    Views
    636

    JSP file i/o

    Hi
    How is it possible to load files from a users harddrive using jsp?
  14. Replies
    2
    Views
    548

    Problems with mysql

    Hi
    I have made a code snippet that connect to a MySql database and performs several actions. The code works on windows, but I can not get it to run on my gentoo linux. I have jre 1.5 and jdk 1.5...
  15. Replies
    0
    Views
    416

    Extract tables from SQL DB with java

    Hi
    I have a database called enig212 with a table called TestTable with the fields TestFelt1 and TestFelt2. I hava the folliwng Java code, which should extract the data stored in the to fields, but...
  16. Thread: SQL & C#

    by CyberCarsten
    Replies
    3
    Views
    492

    Re: SQL & C#

    Thanks guys ;) I'll look into it
  17. Thread: SQL & C#

    by CyberCarsten
    Replies
    3
    Views
    492

    SQL & C#

    Hi
    I have SQL Server 2000 Developer Edition installed on my computer. How can I use it with C#? Fx. creating databases, reading from databases etc??
  18. Replies
    7
    Views
    530

    Re: Bluetooth mouse lags

    thanks guys ;) i'll try that
  19. Replies
    7
    Views
    530

    Re: Bluetooth mouse lags

    yes it is
  20. Replies
    7
    Views
    530

    Re: Bluetooth mouse lags

    i can't seem to find that setting....do you have other suggestions?
  21. Replies
    7
    Views
    530

    Bluetooth mouse lags

    Hi
    I have a wireless bluetooth mouse. When i have not used the mouse and starts using it again, it needs ½ second to "fire" up until it moves. Also, it skits around the screen instead of moving...
  22. Replies
    4
    Views
    919

    Re: Simple DirectX engine

    Hi
    I got my old engine working fine with DX9
  23. Replies
    4
    Views
    786

    Re: DX 9 and .Net

    If you did that, you will have to inform VS where it can find the DX Sdk headers & libs.
  24. Replies
    4
    Views
    919

    Simple DirectX engine

    Hi
    I once had a simple DirectDraw game engine that came with a book, but it is not compatible with DirectX 9, so I need to find a new one. Anyone know where I can find 2D engine that makes a simple...
  25. Replies
    8
    Views
    627

    Re: should be simple...but....

    Thank you so much! :)
  26. Replies
    8
    Views
    627

    Re: should be simple...but....

    hi
    Can you tell me how to do it numerical methods?
  27. Replies
    8
    Views
    627

    should be simple...but....

    Hi
    Can anyone help me isolate x in the following equation:

    x*cosh(L/x) = x+s

    Maple outputs complex solutions, but I now its a real solution....
  28. Replies
    4
    Views
    564

    reverse string

    Hi
    I am writing a small library, which I want to contain a method for reversing strings.

    I have the following in a header file:


    // This header file contains function for all sorts of string...
  29. Replies
    4
    Views
    535

    Re: clock ticks

    thanks ;) But I need the time in microseconds
  30. Replies
    4
    Views
    535

    clock ticks

    Hi
    I am trying to messure the time it takes for Dijkstras algorithm to calculate a route. I am using clock(); to messure. But I have a few questions about the method....what is ticks and clock ticks...
  31. Replies
    5
    Views
    454

    Re: struct problems

    i have also tried that, but don't work either...
  32. Replies
    5
    Views
    454

    Re: struct problems

    could u give an example...i have tried the following, but get conflicting types error:



    char* str_name;
    char name[100];
    str_name = &name; // Have the pointer point to a char
  33. Replies
    5
    Views
    454

    Re: struct problems

    Thanks, I'll try that :)
    PS: Have to use C, since íts a C course ;)
  34. Replies
    1
    Views
    365

    Another arrary question

    If i have the following array char cat[500] that contains the following:

    &&&&&&&Computer&&&&&&

    How would I go about moving all but the '&' to a new array which would then looke like this:
    ...
  35. Replies
    5
    Views
    454

    struct problems

    Hi
    I have the following struct:



    struct player{
    char *name; // Name
    int score; // Current score
    int bonus; ...
  36. Replies
    3
    Views
    536

    Re: Wheel of fortune

    It is char, but i tried adding '\0', but it didn't work
  37. Replies
    3
    Views
    536

    Wheel of fortune

    Hi
    I am writing a wheel of foturne game together with my group. We use an array called
    cat to store the categories, but when we have shown fx. the category "Computers" and we move on to the next...
  38. Replies
    1
    Views
    369

    return string from function

    Hi
    I have a small fileloading function. The function loads a file passed on to it by a filechooserdlg, within that file, is the name of another file to load....but I don't know how to return...
  39. Replies
    3
    Views
    499

    whitespace

    Hi
    What is the correct method for finding spaces in a text string??
    Is it if(str[i] == NULL), if(str[i] == "") or if(str[i] == '')??
  40. Replies
    4
    Views
    847

    Re: Get IP address

    Exactly what I needed ;) thx
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width