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

    Stock Breakdown Database

    OK, well I've searched far and wide and I found this... http://www.mvps.org/access/modules/mdl0027.htm hope it helps anyone else with this problem. Cheers Vicky
  2. vicky666

    Stock Breakdown Database

    Hey SkipVought, Sorry about the late reply, I thought I had already reponded to this but shortly after the server went down, must have messed it up, so here it is again :) A multi-level bill of materials is exactly the kind of thing I need. Would you be able to help me in designing it, or...
  3. vicky666

    Stock Breakdown Database

    Hey All, I'm hoping this won't be too difficult, but I'll see how it goes. This database will be a list of drawing numbers. Now each drawing number can have many other drawing numbers linked to it. Basically a drawing number has many other items of stock within a drawing, which also have their...
  4. vicky666

    Reverse Loop

    Chance1234, I think that may have worked, although I needed the list box displayed in numerical order. Thank you for helping me out regardless though :) TonyJollans, you were nearly right :P The code you wrote just needed to go after the line you put them before. i.e. .GoTo...
  5. vicky666

    Reverse Loop

    Hey All :) The following code loops around and takes all the selected values from a list box and places them into a word document at a certain breakpoint. (this all works) Naturally the code starts from the lowest number, and works it's way up. This causes a problem, as when the data is...
  6. vicky666

    Search For database object

    If I enter a memberid into a text box I need to be able to see if it exists in an access database. Basically a comparison string cheers
  7. vicky666

    Delete a text file

    I managed to figure it out just re-edited the file to remove the data, thanks for ya help though :)
  8. vicky666

    Delete a text file

    ok now i know this is simple but i cant remember it to save my life, How do you either delete all content of a text file or delete a text file and recreate an empty one in its place? sorry for the lack of knowledge vix :)
  9. vicky666

    Save a textfile as date

    Cheers matey works a treat
  10. vicky666

    Save a textfile as date

    HI guys have a small problem, basically i have this data that I want to save into a textfile which will be called whatever the date happens to be, but because the date contains "\" these things, it say file path not found. The code below works as long as you put your own filename in...
  11. vicky666

    Formatting an Auto Increment Field

    Cheers for the help guys :)
  12. vicky666

    Formatting an Auto Increment Field

    I would like to create a unique key with the format G0200000 (G02 Must not be changed) to be incremented automatically (G0200001, G0200002, etc) when a new record is created. I know this problem was posted earlier but the result wouldnt work on my mysql command prompt.The attribut to be...
  13. vicky666

    Open Access From VB

    Thanks for the help it worked :D
  14. vicky666

    Open Access From VB

    I want to open an access database from within visual basic, the code below seems to open access and then shuts it again, any ideas?Could something be running in the background that is conflicting with the code? This is driving me mad :) Dim appAccess As Access.Application Dim strDB As String...
  15. vicky666

    Open An Access Db From VB

    I am trying to open a specific access database from within vb which runs when i click a button, below is the code i have so far but when it runs it opens access and then shuts it down straight away - any ideas? Dim appAccess As Object 'Open excel and make visible Set appAccess =...
  16. vicky666

    Save As Dialog Box

    ooops! Thanks for all the help, as you can probably tell ive been working on this for too long and keep making silly mistakes lol, im going for a break :)
  17. vicky666

    Save As Dialog Box

    My code is below and on the line wbkSaveData.SaveAs strResponse is where the error occurs and it says "object required" Sub SheetSave() Dim wbkDataSave As Workbook Set wbkDataSave = Application.Workbooks("TeachingPlan.xls") strResponse =...
  18. vicky666

    Save As Dialog Box

    The code is consistent and the value of strResponse is the filepath that i specified but the error still appears in that line wbk.SaveAs strResponse also it doesnt save the file to the location specified
  19. vicky666

    Save As Dialog Box

    It brings up the save as box but then when you enter the file name and select the location you want and click ok, there is an error in the line wkbSaveAs strResponce and suggestions?
  20. vicky666

    Save As Dialog Box

    I want to create a Save As dialog box that appears when i click on my label, i have this code below so far but i don't know what to dim my dialog box as, can anyone help as I am new to this? Dim wkbDataSave As Workbook Dim strResponse As String Set wkbDataSave =...

Part and Inventory Search

Back
Top