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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jake007

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

Part and Inventory Search

Back
Top