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 SkipVought 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. WoundEdGoat

    Adding Extra Values to Datasets

    Hello. I am currently writing a program that uses XML files to store data. I have a form that is set up with a DataGrid to display the information from several files via merged DataSets and that runs without a hitch. What I need to know now is how to add additional columns of information to...
  2. WoundEdGoat

    DataGrid and Class Collections

    Right, well I've been searching around the net for about half a day now and to be quite honest, I'm under the impression that my conception of how to use a DataGrid control is horribly flawed (or non-existent). What I would like to do is pass the data in a Collection (containing objects from a...
  3. WoundEdGoat

    chroot Segmentation Fault

    Crud... Nevermind guys. I completely toasted my Linux yesterday, so I have no choice but to reinstall now. Thanks anyway.
  4. WoundEdGoat

    chroot Segmentation Fault

    Sorry to take so long to reply, but yeah, I realized belatedly that I neglected to netion that my mbr has been overwritten.
  5. WoundEdGoat

    chroot Segmentation Fault

    Okay, here's the scenerio I'm currently stuck with. I accidently killed my Lilo and are currently unable to boot into Linux. I booted with a Knoppix CD to run through the procedure as I was taught how to do it to restore Lilo, but when I chroot, I get a segmentation error. I'm rather new to...
  6. WoundEdGoat

    Loading Another Page Programmatically

    Ah. Thanks. I'll try that right away.
  7. WoundEdGoat

    Loading Another Page Programmatically

    Oops... Just realized that I don't know how to catch the query strings on the targat page. Help?
  8. WoundEdGoat

    Loading Another Page Programmatically

    Perfect. Thanks guys.
  9. WoundEdGoat

    Loading Another Page Programmatically

    One other thing, how would I pass parameters back and forth between pages using this method? Thanks.
  10. WoundEdGoat

    Loading Another Page Programmatically

    Could someone please tell me how to load another page programmatically? What I'm trying to accomplish is for the user to login information and be taken to the profile page (or something similar to such a thing) via a button click. I unfortunately have no idea how to send the program to another...
  11. WoundEdGoat

    Internal Solotion Explorer File Interaction

    Excellent. Thank you very much. That is exactly what I was looking for.
  12. WoundEdGoat

    Internal Solotion Explorer File Interaction

    I added a file called Encryption.dat to my project and it is now in the solution explorer window. How can I access the data in the file through code without having to make it into an external file for the exe to work with after compiling? If I cannot do this, is there an alternative method I...
  13. WoundEdGoat

    Binary Number Operations

    yeah. I realized a few minutes after I posted my initial post that I could do it that way, but I still think for what I need to do that working with base 2 would be much easier. I dunno. I'll have to think about what I really need to do some more.
  14. WoundEdGoat

    Binary Number Operations

    Ah heck. I can't explain it good enough. I'll just write myself a class to deal with what I need to do. Thanks anyway.
  15. WoundEdGoat

    Binary Number Operations

    Does VB .NET have any built in support for working with binary numbers or would I have to write code for it myself? What I'm looking to do is take a pair of hex numbers (EG, &H1F [binary 11111] and &H5 [binary 101]) and merge them into &HFD [binary 11111101] and the easiest way I know of is to...
  16. WoundEdGoat

    Alternative to external .dat file

    I am writting a program that accesses an external file to collect a long (ish) series of data from and putting it into a collection. I was wondering if someone could tell me a way of embedding it it into the program without having to type each entry by hand. Thanks.
  17. WoundEdGoat

    Disabling close button

    Can someone tell me how to disable the close button on a form and still have the use of the minimize button?
  18. WoundEdGoat

    Converting large Integers to Bytes

    Sorry. Didn't explain myself very well again :S What I need to do is go from and integer to a byte where the integer has a value greater then 255. EG - Say my intX variable has a value of 999. In hex that would be &H03E7. I need bytX(0) = &H03 and bytX(1) = &HE7.
  19. WoundEdGoat

    Converting large Integers to Bytes

    Can someone tell me how to get an integer value greater then 255 into two byte variables or an array of byte variables? Thanks.
  20. WoundEdGoat

    Random File Access

    Can someone tell me a way to find the first available record in a random access file? Thanks.

Part and Inventory Search

Back
Top