Search:

Type: Posts; User: Tankndozer

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Displaying an IplImage in an Extended Windows Styles window

    Hey all,

    I'm currently working on a project that involves using a webcam for interaction via motion detection in specified regions. For the purpose processing the images from the camera I'm using...
  2. Replies
    20
    Views
    4,696

    Very nice Thantos. Is that how you got your...

    Very nice Thantos. Is that how you got your reputation so high? ;)
  3. Replies
    20
    Views
    4,696

    Well it would be easier to help you if you gave...

    Well it would be easier to help you if you gave us some bits and pieces of information about yourself or what you plan to specialise in.

    For example, my brother Dave, has a registered company by...
  4. Replies
    20
    Views
    3,064

    True. I simply mentioned Ghost as it is...

    True. I simply mentioned Ghost as it is applicable to most windows systems in use (and any other partitions you may want to image- I've got FreeBSD on my machine as well).

    I too would have to...
  5. Replies
    20
    Views
    3,064

    One other problem that could be affecting your...

    One other problem that could be affecting your machine is when the last install was done. The windows registry becomes very clogged over time as many many keys that are entered as part of software...
  6. Replies
    5
    Views
    7,561

    Bennyho03- don't use fflush(stdin). read this-...

    Bennyho03- don't use fflush(stdin). read this-
    http://faq.cprogramming.com/cgi-bin/smartfaq.cgi?answer=1052863818&id=1043284351

    With regard to the problem, the link so kindly provided by quzah ...
  7. Thread: Pro *C

    by Tankndozer
    Replies
    6
    Views
    1,483

    Don't think there's another way to do it Pro*C...

    Don't think there's another way to do it Pro*C but you could could use sqlplus with a command like


    System(sqlplus -s user_name/password @script.sql > output.log 2>&1)

    This would allow you to...
  8. Replies
    6
    Views
    1,112

    Hey ober, Have a look at this link below. It...

    Hey ober,

    Have a look at this link below. It covers MULTIPLE problems that you may be having with mup.sys and their possible solutions
    http://www.annoyances.org/exec/forum/winxp/t1047532372

    If...
  9. Replies
    15
    Views
    3,461

    it may be worth taking a look at CSS 2.0. I...

    it may be worth taking a look at CSS 2.0. I haven't tried to this in it just yet but have a look at the link below. It should tell you what you need to know. Looks to me like it may do what you're...
  10. Replies
    4
    Views
    2,142

    Ok it's all good. I've gotten working now....

    Ok it's all good. I've gotten working now. Apparently the for loop at the end wasn't taking too kindly to my reseting the value of j. I've rewritten it as a while loop and the whole code is working...
  11. Replies
    4
    Views
    2,142

    Thanks for pointing that one out. Just for the...

    Thanks for pointing that one out. Just for the sake of good practice I should be performing that check. :)

    Unfortunately this isn't the problem in this case. The memory allocation works fine (I...
  12. Replies
    4
    Views
    2,142

    Searching a VERY large text file

    I'm writing a utility to search a very large text file. I only need to search the first few letters of each record to know if it is the one I need.

    The file I have to search is a text file by...
  13. Replies
    3
    Views
    2,072

    Do I smell homework? :) I got that assignment...

    Do I smell homework? :)

    I got that assignment a million times in college. TIP: you don't need to use your computer or programming at all to calculate it as long as your computer conforms to IEEE...
  14. If all you want is a description of what blocking...

    If all you want is a description of what blocking is, there's more than enough information available on google. I'll tell you this much for your benefit though as it is sometimes forgotten in some...
  15. Replies
    15
    Views
    16,780

    That math forum link explains the method for...

    That math forum link explains the method for solving a single instance of the problem very well- I'd love to see the application of a general algorithm to it. Considering it is a constraints scenario...
  16. Replies
    15
    Views
    16,780

    now there's a problem that could eat up your day...

    now there's a problem that could eat up your day if you let it... not that I've spent any time on it ;) (Just in case someone feels like spending a day at it, I'd love to see if anyone can write an...
  17. Replies
    2
    Views
    1,270

    removing a mouse is quite easy in windows: go...

    removing a mouse is quite easy in windows:

    go to start > control panel > system
    go to the hardware tab and select device manager

    there is an option "mice and other pointing devices"
    Right...
  18. Thread: ram deal

    by Tankndozer
    Replies
    4
    Views
    1,238

    No chance! For a start, if you change to running...

    No chance! For a start, if you change to running off of two different types of RAM, you'll probably have two different latencies and bandwidths on the transfer rates, thereby limiting both by the...
  19. Replies
    11
    Views
    3,592

    You're welcome. I get enough help around here...

    You're welcome. I get enough help around here myself- it's only fair that on one of the few occasions I may be of use to someone else that I do what I can! :)
  20. Replies
    11
    Views
    3,592

    What you need to do goes like this: 1. Write...

    What you need to do goes like this:

    1. Write out a rough structure of all the queries you'll need to do on either database

    2. Write a C programme that will allow you to edit files (I prefer to...
  21. Replies
    11
    Views
    3,592

    Sorry for the delay in my reply- I've been away...

    Sorry for the delay in my reply- I've been away for the weekend! :)

    I can send you a couple of programs that demonstrate how it is done if you like, if you could just tell me what platform...
  22. Replies
    11
    Views
    3,592

    I'm doing something similar myself atm working...

    I'm doing something similar myself atm working with Oracle 8i on 6 UNIX servers and a Windows 2000 workstation.

    What platform are you using?

    getting your DBA to set up a link between the...
  23. Replies
    16
    Views
    4,104

    First off: why are you using the !feof() call?...

    First off: why are you using the !feof() call? You're already reading in the next line from your file in the while statement. There is no call to your file within that section of code, so the !feof...
  24. Replies
    16
    Views
    4,104

    Use fgets to read the input in line by line. ...

    Use fgets to read the input in line by line.

    Use strtok() to break the string into tokens (this will break it down into words if you use a space as the delimiter)...
  25. Replies
    3
    Views
    1,180

    Thanks Thantos. I figured it might be something...

    Thanks Thantos. I figured it might be something like that but I've never seen % listed as a special char before. If I have I don't remember it- quite possible seeing as I'm only relearning C. I've...
Results 1 to 25 of 34
Page 1 of 2 1 2