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 TouchToneTommy 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. jake007

    Arraylist issue in vb.net 2008

    Thanks jebenson. Can't believe i missed that. Looked at the code for too long I guess.
  2. jake007

    Arraylist issue in vb.net 2008

    I am trying to populate an array list from a fixed length file. The code processes through the file ok, but my arraylist ends up with 17 copies (the number of records in the file) of the last record? Her is the code Public Sub LoadMachineArray() Dim NewMachine As New Machine...
  3. jake007

    How to PArse an XML file with VBA

    I am attempting to parse and XML file with MSXML2.DOMDocument60. I am very new to xml and am in need of some direction. I am using MSXML2.DOMDocument60, but have no idea where to begin. Mainly, I am trying to gather the commodity information from the xml file below. It is contained in the...
  4. jake007

    MS Word Automation with Viasual Basic 2008 (2010)

    As the title says. I am researching the possibility of using vb 2008 or 2010 to create a proposal generation system. The goal is to have the user enter the new proposal info, ie..Company, Contact info, Machines to be quoted and so on. Once the proposal is complete, i would like to transfer...
  5. jake007

    MDI/Split Container Forms Question

    Actually, I think I found a way.. in the Load event of the child form: Me.MdiParent = Form1 Form1.SplitContainer1.Panel2.Controls.Add(Me) Seems to reside in the Right Panel just fine. I will have to test some functionality however. John
  6. jake007

    MDI/Split Container Forms Question

    I would like to use a combination of Split Container/Child MDI forms for an app I am designing. The Main for Will contain a split container, the left side of which will contain navigation buttons. I want the right side to contain the forms that the user navigates to . The question is,. how do...
  7. jake007

    DateTimePicker Min Max Values

    That did it Sorwen, Thanks, Jake
  8. jake007

    DateTimePicker Min Max Values

    I am trying to set the Min/Max Date on a DTP in VB.Net 2005. I set the Min date to Today(), which works fine, what I need to do is set the Max date to Today() + 7 days. No matter what I try I come up with 1 error or another. How can I programmatically set the Max date to Today() + 7? Jake
  9. jake007

    HTTP assistance with VB.NET 2005

    I am new to web programming and HTTP. I a looking for some direction as to were I can find some beginner information for properly setting up a http request and response system. Any help would be gratly appreciated. Jake
  10. jake007

    Clear all fields on an Adobe Acrobat 8.0 Form

    Question says it all. I have a form with many fields and would like to add a button to clear them all. Is there anyway of doing it other than a line of code for each field? Is there a way to loop through all the fields then clear each one? Jake
  11. jake007

    VLookup question on Xcel

    Ha, got it, had to trim(a2) for this to work... Jake
  12. jake007

    Merge data from 2 excel spreadsheets

    Tried the VLookup, works if I hard code the cell value such as =vlookup("701.0954",I1:M11800,4,False) but not if I reference the cell such as =vlookup(A2,I1:M11800,4,False) ???? Jake
  13. jake007

    VLookup question on Xcel

    I am attempting a pretty simple vlookup. If I use the statement =VLookup("701.0954",I1:M11800,4,FALSE) the lookup[ works fine. But, IF I use =VLookup(A2,I1:M11800,4,FALSE) the lookup returns a #NA. Cell A2 contains the value 701.0954, so why wouldn't this work. Putting quotes around a hard...
  14. jake007

    Merge data from 2 excel spreadsheets

    Ok, I have 2 excel spreadsheets: The first one looks like this: Part_No Desc Type DealerCost List Second one looks like this: Part_No Desc Type The first table has many more parts than the second. The second obviously has no costs in it. What I need to do is...
  15. jake007

    How to link two fields in Adobe 8.o Package

    How do I link two or more fields in an adobe acrobat 8.o document and package? I have an adobe 8.0 package with several individual pdf. Several fields are duplicated on multiple pdfs. How can I get all the duplicate fields to auot populate my manually filling in 1 field. Thanks for the help...
  16. jake007

    PDF Document Edits Via VS 2005

    I am looking to be able to edit PDF text fields through vb.net 2005. Anybody have any experience in this or links to some info. Jake
  17. jake007

    Console.writeline - No Effect

    No, it is a windows app, but I want to display some debugging info in the console window... Jake
  18. jake007

    Console.writeline - No Effect

    I have the following code on a button1 click event console.writeline("This is a test") console.readline() When I execute the code nothing happens. Why am I not seeing the console? Any Ideas? Jake
  19. jake007

    Get the value of Digits in a string?

    I have strings similar to the following ; "btn12" "btn13" "btn14" How would i be able to just get the numerics out of the string as a value, so "btn12" would be = to 12 and so on? Jake
  20. jake007

    Screen Scraping from Act 2000

    Sounds like something to go on with the user32.dll. I don't suppose you may have a link to some docs regarding this dll? jake

Part and Inventory Search

Back
Top