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 bkrike 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: drazeni
  • Content: Threads
  • Order by date
  1. drazeni

    Dlookup Alternative on SQL Table in Unbound Field in MS-Access Form

    I have an MS-Access database project (.ADP) linked to SQL Server (MSDE). Before migrating to SQL server, I had a Front-end/Back-end setup of this database. I had a drop-down field to lookup a client_code (row source) from "client" table, and the control source gets stored in a table called...
  2. drazeni

    Dlookup Alternative on SQL Table in Unbound Field in MS-Access Form

    I have an MS-Access database project (.ADP) linked to SQL Server (MSDE). Before migrating to SQL server, I had a Front-end/Back-end setup of this database. I had a drop-down field to lookup a client_code (row source) from "client" table, and the control source gets stored in a table called...
  3. drazeni

    Create recordset ordered by autonumber (SQL)

    I have the following string for which I create a querydef to be used in a report. Unfortunately I can't seem to make it sort by "autonumber". Although if I paste the sql statement into an access query design view, it works. Anyone got any idea? SELECT * FROM [order details] WHERE [order...
  4. drazeni

    Autorun macro on change of cell value

    I have a macro recorded which I need to autorun when a specific cell in the spreadsheet changes (dropdown box). Unfortunately I cannot find a method to run this macro automatically when the cell value changes. Anyone got any ideas? "All is not as it seems"
  5. drazeni

    Multi-select list box save sselections in temp table

    I am developing a stock system and one of the forms contain a multi-select list box for picking the stock out of the warehouse. The end result is that the system creates a transaction with negative quatity value presenting the number of items to deduct from the stock for that specific selection...
  6. drazeni

    Email Pool

    I've recently installed an ISDN system with an email/proxy server (602Pro LAN Suite) and Outlook Express, and in an attempt to cut down on the paper used for printing all emails, was approached with the following 2 questions by my client: 1. Is it possible for a copy of all emails received by...
  7. drazeni

    Create login users table

    Hi, how do I go about creating a seperate table extracting all the login users details (system.mdb). The passwords are not a requirement. "All is not as it seems"
  8. drazeni

    What's wrong with this recordset function?

    Hi everybody, My aim is to return a count on the number of records returned from a table, matching the user entry on a form field (the value for which I pass from the form field "preorder_no" to the variable "var_preorder_no" and then include the variable in the strSQL...
  9. drazeni

    Pass a VBA select query result to VBA variable?

    I have constructed a select query in VBA as follows: Dim invcounttypeqdf As QueryDef strSQL = "SELECT [PreOrders details].preorderdet_invoice_no, [PreOrders details].preorderdet_type, Count([PreOrders details].preorderdet_type) AS " & [Counter] & " " _ & "FROM...
  10. drazeni

    Do I have a firewall?

    Hi, this may sound like a stupid question, but something for me to learn. How do I find out if our Win2K server has a firewall running, because I'm not sure if "Win2K Server" has it built-in? "All is not as it seems"
  11. drazeni

    Can I set FE BE permissions while users are logged in?

    I have an instance where the majority of users can access the backend without a problem. They have FE's created with the Office XP packaging wizard. The one user has a full copy of Office 2000 in her machine and I just copied the FE to her machine and it went well the first time (after selected...
  12. drazeni

    Printing a new line based on previous line's field value

    I have an invoice report (generic/text only). How do I get a new line in the detail section of the report based on a field's value in the previous line. Here's an example of the detail line: qty grade type description 1 3CR12 PLATE...
  13. drazeni

    No sorting required on subform

    I have a Access XP (2000 format) DB with a FE and BE. I have an invoice form which has a subform (for detail records), and I noticed when the user enters a record only with a description (in the description field) such as "*** certificate ***" it would then move this to a different...
  14. drazeni

    Changing the control source with VBA on certain fields in form

    I Have a FE, BE database (Office XP - DB is in 2000 format). Upon opening a form and selecting a certain account, I require that the control source of selected fields changes to a different source table. In the form's query property, the relevant fields are selected, but I get the following...
  15. drazeni

    Runtime Version doesn't keep printer settings

    I have an Access XP (Access 2000 format) DB which has been converted to a runtime version on a Win 2000 machine. The end product is deployed on a few Win 98 machines. How do I get the runtime version on Win 98 to keep the printer settings. I have setup a generic printer and a custom page size...
  16. drazeni

    Pre-printed stationery orientation in printer setup

    Hi, I am using Access XP Developer although the database is in 2000 format. I have a Win 2000 machine which I develop on but the final program will operate on Win 98 machines. I am trying to setup an invoice report on A4 pre-printed stationery. The paper is 4-part cut sheet and fed into the...
  17. drazeni

    Create a primary key in new table from make-table query?

    I have a make-table query where the new table requires a primary key on one of the fields. Can I manipulate the make-table query (the SQL statement maybe) to set this or would the VBA approach work? If so, how would I do it? I'm looking for the easiest possible solution. Thanks.
  18. drazeni

    Switchboard display problem after returning from report run

    I have a DB with a switchboard and a form to reprint an invoice. I execute the "reprint" form, select the invoice number and submit the print with the VBA OpenReport command. An sql query retrieves the corresponding data and then I execute the OpenReport command on four seperate...
  19. drazeni

    Passing a public variable to a text box in a report

    I have a public variable called "str_invoice_type" and before I run a report from a form, I assign a value to this variable and would like to pass it to a text box called "invoice_type" in the report. I have set the controlsource of "invoice_type" to...
  20. drazeni

    Automated import of Paradox table

    Hi, I require code that will execute an automated import of a paradox table at a certain time of each day, without sacrificing the CPU usage, In other words, is there an efficient way to execute this without constantly checking the system's time? Much appreciated.

Part and Inventory Search

Back
Top