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 Chriss Miller 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. infinitelo

    Searching for a certain windows cmd command

    break? ctr-c if it is to be it's up to me
  2. infinitelo

    Open word, pdf, excel, txt docs internal in program

    i would look into using the browser object on the form, i vagly remember seeing referance at the ms developers web site a whole section on integrating ms office into your applications, as for pdf and the rest the browser object should have a way to view. it seems to me it would be simpler to...
  3. infinitelo

    where is it going

    This post is looking familliar, very similar to the ones i read when win xp came out. New hardware at the time could barely handle the new os, linux was revolutionary. Many predictions were floating around that windows was done. Microsoft had the only offerings for "out of the box" business...
  4. infinitelo

    Email Excel File to all entries on "Contacts" tab

    have you considered a mail merge??? if it is to be it's up to me
  5. infinitelo

    So much free time and not a slacker

    the last two jobs ive had were companies that tend to work one person to the brink for a couple of months, then move on to someone else. a real roller coster ride... looks like my quiet cycle is ending by the end of the month and ill get to really rock and roll for the next two months. ive just...
  6. infinitelo

    Best Learning Practices

    addemdom: keep all your code, for reference. (lots of good comments) i keep a 3 ring binder full of code. best ref book i have. one thing that sounds like a good idea is the script o matic from ms script developers site. just keep adding to it. it's a script that generates script, if you keep...
  7. infinitelo

    Showing a Word document within a form

    I think i have lost my mind.... but i thought i saw a tool that would build .chm files, I think that may be hard to write, but would look very professional.... did a quick help serch on ver2003 and found a help provider namespace. worth a quick look i think. have fun:) if it is to be it's...
  8. infinitelo

    Planning a total geek out week.

    Thanks for the responses, I will include time with the family (maybe go carts/walk in the park/movie, ect...) my last vaction, i took a tech hiatis{spelling?}, no phone, no motor car, it was badly needed at the time and felt great! my duties have been very light at work, (just finished...
  9. infinitelo

    Planning a total geek out week.

    Ive got a couple of old computers and a cheap hub, and a full weeks vaction next week and a freshly burned copy of fedora... one machine is a generic pent 133 with 256mb ram and the other is a 800 mhz hp with 256mb ram, have already installed fedora on the hp. my current plan is to set the 133...
  10. infinitelo

    The right Programming training direction? Any suggestions

    c is your next logical step, the thing to realize is that the first 2 or 3 languages you learn are the toughest. The order i learned (this may date me a bit) was basic-assembly(masm for fun and profit)-pascal-fortran-c-foxpro-visual basic dot net Its really true you always return to your...
  11. infinitelo

    Adding Currency

    Thanks for the additional info, Its always good to have the why added to the answers. if it is to be it's up to me
  12. infinitelo

    Access Keys '&' underline

    also, if you use narrator (xp's text reading app) it will say underline F ile if you "read" the menus. hide the underscore, and it will say FILE. not sure how speech recognizer will act. if it is to be it's up to me
  13. infinitelo

    Messagebox truncating text

    not sure, but ControlChars.CrLf may be a lot longer than vbcrlf you might want to try vbcrlf if it is to be it's up to me
  14. infinitelo

    Batch files query

    The >> is used to append to an exsisting file. each time you run the bat files, the results are added to the file(s) if it is to be it's up to me
  15. infinitelo

    Sorting a Fixed Length Text File

    There are several sorting routines availible, the one you will need depends on the number of records. If the file is small i would suggest bubble sort. For a larger file, something like a has sort would be better. a sample of bubblesort from wikisource, you will have to modify the code to your...
  16. infinitelo

    Moving node on treeview causing app to stop responding

    sorry didnt get back, had a CRAZY week guess the solution was to .add, then remove the original, that way you never lose a node. if it is to be it's up to me
  17. infinitelo

    Moving node on treeview causing app to stop responding

    Im very interested on how you work this out, but dont have time to play with it today. silly question, maybe, if you change e.Effect = DragDropEffects.Move to e.Effect = DragDropEffects.Copy and then delete the source node, do you even need to check if your dropping on top of the source...
  18. infinitelo

    WORD: Saving a .doc as a picture file?

    silly question, can you save your word file to html, and load that into your database? if it is to be it's up to me
  19. infinitelo

    VB.net training

    Your choice will depend on your long term goals. vba constrains you to working in office only. What type of "stuff" are you wanting to do? If you dont think you will be working with anything other acess databases, vba will be fine. vba is quite powerfull in its own context. If your database...
  20. infinitelo

    Variable is used before it has been assigned a value

    What happens if you put the insert outside the for next? for do stuff next dsNewAssign.Insert() dsNewAssign.InsertParameters.Clear() if it is to be it's up to me

Part and Inventory Search

Back
Top