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 Wanet Telecoms Ltd 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: *

  • Users: Maggie24
  • Content: Threads
  • Order by date
  1. Maggie24

    Oracle Date Field -displaying in wierd date format (01/01-4713) help!!

    Hi all, I have imported a table from oracle to crystal reports, when i add my date field to my report the date is displayed in the format 01/01-4713, however when i browse to field data on the field, the correct data is displayed!! So I'm assuming perhaps i need a formula to format the date...
  2. Maggie24

    Inserting records one by one into a table -Object Required Error. HELP

    Hi all, I have a piece of code which i know works where by I insert a record into a new table. I want to now insert a group of records (whicch are displayed in a list box - all are selected by default) into the table but i am getting a Debug Error - Object required when I try to do this. This...
  3. Maggie24

    Error - Object Variable or With Block Variable not set

    Hi all, I am currently trying to step through code for a Batch Job which moves files from one folder to another. I am getting the error "Object Variable or With Block Variable not set" on the following line: Set oTagAttributes = oNodeBirthDetails.Attributes If anyone has experienced this...
  4. Maggie24

    Searching for a string in a directory of files - please help

    Hi all, I want to search through about 100 files for a specific string - "Country code is invalid" which is contained in the text of the file, these are xml files. I am familiar and have been using the FSO to move and copy files but i just cannot find the property/object to search for a string...
  5. Maggie24

    My access search on 15000 records keeps crashing - help!

    Hi all, I have a query where by the user can enter in a description to bring back a number of records, when they enter in a single letter (which brings back about 14000) records my database crashes. This is my search query: SELECT tblProducts.[Product No], tblProducts.Updated...
  6. Maggie24

    Update query based on autnumber field problem

    Hi all, I have a form based on a table which has the Product No (autonumber) as the PK. i ahve an update query which will update fields in my table as follows: Update tblproducts set primary_material_no = '" & Combo59.Value & "' , secondary_material_no = '" & Cbo_subcategory.Value & "'...
  7. Maggie24

    is there an on record change property?

    Hi all, I have a simple form which was created based on a table. On my form I have an updated yes/no field which is filled when the record is updated. I want make a no of fields invisible if the record has not been updated. I need to check if the record has been updated each time i change a...
  8. Maggie24

    using a select stmt to retun values based on values in an array

    Hi all, I have created an array which holds unique product nos of records i have updated in my db. i now want to select records from my db based on the data (product nos)in the array. I have: List42.RowSource = "Select * from tblProducts where Product No in '" & myarray & "'" but it is...
  9. Maggie24

    creating a select statement to select records from the last update

    Hi all, I want to run a select statement which will bring me back all the records i have updated in my last update statement (to be displayed in a list box) how would i create a select statement to do this?? Or what would be the best approach to doing this?? Many thanks, Maggie "Work is the...
  10. Maggie24

    Horizontal scrollbar for list box?

    Hi all, I know there is a default vertical scroll bar for a list box with a long list of records so you can scroll down to view them all....however if i have loads of columns i want to display is there a way of setting up a horizontal scrollbar or a property to turn this on, where i can scroll...
  11. Maggie24

    Refreshing search query results on a from

    Hi guys, I have a list box which displays the results of a search query: SELECT tblProducts.[Product No], tblProducts.[Item No], tblProducts.[Item Description 1], tblProducts.[Element Description], tblProducts.Updated FROM tblProducts WHERE (((tblProducts.[Element Description]) Like "*" &...
  12. Maggie24

    dim db as DAO.DATABASE - User defined type not defined Error

    Hi all, I'm using the following code to UPDATE a record in my DB. Dim db As DAO.Database Dim qdf As DAO.QueryDef Dim STRsQL As String Set db = CurrentDb Set qdf = db.QueryDefs("query1") STRsQL = "Update tblproducts set primary_material_no = '" & Combo59.Value & "' ...
  13. Maggie24

    problem with space in text field

    Hi all, I have a log on form with a user name field and a masked password field. However every time I load my form the cursor is automatically placed 1 space away from the start of the text field in both fields.... is there a property i can change so that the cursor starts at the very start of...
  14. Maggie24

    I can't get onto the design part of my splash screen, help!!

    Hi all, I created a splash screen form so that my user would open the DB and see the form only. In the Database start-up options I unchecked all the check boxes so that none of the menus would be visible. But now I want to get back to my main dtabase menu so I can edit my tables and forms...
  15. Maggie24

    RECORDSOURCE PROPERTY

    Hi all, In my program I have a combo box based on Primary Product Categories where by the user can select a value, I want to fill a second combo box with fields based on the value selected in combo box (1) when i click a button i thought I could just put a sql statement in the rowsource...
  16. Maggie24

    displaying results of a button query in a listbox

    hello all! On my form I have a button that runs a search query - I want to display the results of the query on my form for further manipulation on a listbox as oppose to the results coming up on a separate table not on the form. how can i do this?? Or can you guys think of a better way...
  17. Maggie24

    displaying the results of a query in a listbox

    hello all! On my form I have a button that runs a search query - I want to display the results of the query on my form for my further manipulation on a listbox. how can i do this?? Or can you guys think of a better way?? cheers Maggie May

Part and Inventory Search

Back
Top