Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. PapaGLP

    German Windows

    I'm trying to determine if there are full versions of windows (2000,XP) in german available somewhere. Not a language pack, but an actual full german version? Any input?
  2. PapaGLP

    Sharing Passwords in XP

    ok, just access is fine, no password needed . . can i set it up so just the other computer can access it but not other computers on the network?
  3. PapaGLP

    Sharing Passwords in XP

    Here's the deal: I have two computers connected via a router. I want to password protect the files that I'm sharing but I need to know how to do that. Basically, so when I want to get a file from Computer #2 on Computer #1, I need a user name and/or password.
  4. PapaGLP

    Accessing Private Files

    thanks a million
  5. PapaGLP

    Accessing Private Files

    So I had a couple folders on my HD marked private and I had to reinstall windows. Well now if i try to access them, I can't. Is there any possible way to regain access to these files?
  6. PapaGLP

    Print Screen of only an Error Message

    ah yes, thank you. Somehow got set to CTRL+PRINT SCREEN in my head, thanks.
  7. PapaGLP

    Print Screen of only an Error Message

    For the life of me, I cannot remember how to do this. I have an error message that I want to take a screenshot of just the error message window. Please advise.
  8. PapaGLP

    Running on Startup

    found it . . . folder was hidden . . . thanks
  9. PapaGLP

    Running on Startup

    I have an EXE that I want to run on startup of the computer. How would I go about doing this?
  10. PapaGLP

    redirect if javascript is not enabled

    heh, been coding a little too long, eh?
  11. PapaGLP

    Simple Array Question

    i pass an array into a function like so void intstuff(int **buffer){ } i just need to know how to determine the actual size (in bytes) of the buffer, all i can get now is the size of the pointer . . . which is always 4
  12. PapaGLP

    bordercolor

    From my experience, Netscape just likes gray borders and that's that. To make it transparent, why don't you just make border=0 and then set the cellpadding up a bit.
  13. PapaGLP

    Multidimensional Array Problem

    liebnitz, went back and tried the second way you posted (typedef Array[512]) and it eliminated the problem. thanks for all the help to everyone. i'm sure i'll be around for more help soon :-P
  14. PapaGLP

    Multidimensional Array Problem

    oh yea, and when i do the cout<<input; line, the output is all 1s as expected
  15. PapaGLP

    Multidimensional Array Problem

    also, i changed the output method a little and got this 9223056 9223328 9223400 9223472 9223544 -33686019 -572662307 -572662307 589833 524546 9222952 9223296 0 0 24 1 1342 -33686019 1 1 1 1 1 1 -33686019 -572662307 589828 -572719102 3080600 3083152
  16. PapaGLP

    Multidimensional Array Problem

    void WriteHDF::createIntArray(int **buffer, int inRows, int inColumns){ int **temp; temp = new int*[inRows]; for (int k=0; k < inRows; k++) { temp[k] = new int[inColumns]; } for (int j = 0; j < inRows; j++){ for (int i = 0; i < inColumns; i++){ int input =...
  17. PapaGLP

    Multidimensional Array Problem

    okay . . . all of my checks along the way return that the numbers are actually 1 . . . but here's the array when i view it in the HDF Reader i'm using to check my file output . . . 8144208 8146312 8148416 8150520 8152624 8154728 8156832 8158936 8161040 8163144 8165248 8167352 8169456 8171560...
  18. PapaGLP

    Multidimensional Array Problem

    okay . . . all of my checks along the way return that the numbers are actually 1 . . . but here's the array when i view it in the HDF Reader i'm using to check my file output . . . 8144208 8146312 8148416 8150520 8152624 8154728 8156832 8158936 8161040 8163144 8165248 8167352 8169456 8171560...
  19. PapaGLP

    redirect if javascript is not enabled

    The code i gave only will redirect if the user's browser doesn't have JS enabled. Otherwise, the <noscript></noscript> contents are ignored. gameon, the code you just listed works fine, i have it utilized throughout my site now
  20. PapaGLP

    Multidimensional Array Problem

    okay, so here's what i have now to create the array temps . . . now i try to assign the value of each of the array entries to be 1 . . . but when i read out the contents of the array, there are values that aren't 1. it seems to me that it may be pulling values from elsewhere in memory but i'm...

Part and Inventory Search

Back
Top