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

    Displaying the contents of a text box

    Hi, I would like to display the contents of the text box which the mouse is over (that is a text box not associated with this application, e.g. the internet explorer address bar), into a text box within a form in my application, say textbox1 . Does anyone know how I can achieve this? Much...
  2. WarrenB

    Syntax Error

    Could somebody please tell me where the syntax error is in this vba statement? (note all one line) DoCmd.RunSQL (DELETE tab_Requisitions.[Requisition Number], tab_Requisitions.Date, tab_Requisitions.[Account Number], tab_Requisitions.[Estimated Amount] FROM tab_Requisitions WHERE...
  3. WarrenB

    Deleting Records

    Is it possible to delete records via a macro or via vba coding? If so how is this achieved? Thanks ================= Warren Brown wazzer@btinternet.com =================
  4. WarrenB

    Run a macro

    Is it possible to call a macro from within vba code? Thanks ================= Warren Brown wazzer@btinternet.com =================
  5. WarrenB

    Pretty Simple Question

    Hi, I'm reasonably new to access but I think i'm over looking something very simple. I have a query set-up to retrieve dates matching a certain number (account number to be exact), both of which are stored in the same table. So in this query I have the account number field, and the date field...
  6. WarrenB

    Combo Box Issue

    In a form I have a combo box. However, I want the values that appear in the combo box to be the result of a query. However in order for the query to work I need a value entered in a text box in the form to be passed to the query to give an output from the query to go into the text box. How do I...
  7. WarrenB

    Creating a table using VBA code

    Hi there, Please could someone explain to me how I would create a table using purely vba code. Let's say I want 4 fields in it: f1, f2, f3 and f4, with f1 as the primary key, all of type text. How would I go about it? Thanks in advance. ================= Warren Brown wazzer@btinternet.com...
  8. WarrenB

    Sub-forms

    Hello I was just wandering how I could manage sub-forms in the following manner. I've got a main form A, inside it sub-form B. Now I want to close sub-form B and open a new sub-form C within A. Can this be easilly done? Thanks for your help in advance. ================= Thankyou Warren Brown...
  9. WarrenB

    Creating a link via VBA code

    Firstly I apologise for posting this thread in Microsoft Access - General Discussion as well, I accidently posted on the wrong board. Basically what I need to do is use VB code to create a link to a table in a remote database. Any help would be much appreciated. ================= Thankyou...
  10. WarrenB

    Linking a table via VB

    Basically what I need to do is use VB code to create a link to a table in a remote database. Any help would be much appreciated. ================= Thankyou Warren Brown wazzer@btinternet.com =================
  11. WarrenB

    File Handling Troubles

    In the code below the problem is the program is terminating without allowing for input (and thus not saving). Can anybody please help? oh btw, at first the output (please enter location to store) was also not showing automatically until i added the flush instruction. Thanks in advance. (no...
  12. WarrenB

    Flushing the Buffer

    I was told when using cout the output is buffered. Does anybody know how I would go about flushing the buffer? Warren Brown wazzer@btinternet.com
  13. WarrenB

    Difference between cerr & cout

    I posted a thread yesterday and someone suggested using cerr instead of cout. What is the difference between the two? Warren Brown wazzer@btinternet.com
  14. WarrenB

    Problems with getch()

    Basically my problem is as follows. I ahve a piece of code like so: cout << &quot;Please make your selection:\n1. Encrypt Code\n2. Decrypt Code\n3.Exit\n\n&quot;; menuchoice = getch(); however the program goes to get the character before displaying the contents of the menu. How do I resolve...
  15. WarrenB

    Pause in Program

    How would I generate a pause in a program until a key is pressed (i.e. press any key to continue). Thanks in advance :) Warren Brown wazzer@btinternet.com
  16. WarrenB

    Access Violation

    Ok heres a program, I won't go into great detail about what it does but the general problem is it is generating an access violation, heres the code: #include <iostream.h> #define MAX 500 class dip { private: int diparray[MAX]; int people; int words; int convar; int covar; int recvar...
  17. WarrenB

    Login Manager

    Hey I'm presently running Suse 7.0 and by default it installs KDE as th default graphical login manager. Is there anyway I can change this to use the gnome graphical login manager? Warren Brown wazzer@btinternet.com
  18. WarrenB

    Passing Arrays to a constructor

    I've got this piece of code and it doesn't appear to be passing properly heres the constructor: password::password (char input[14]) { pass[14] = input[14]; } and the line calling it + input: cin.getline(x,15); password check(x); when the contents of pass are viewed all that appears is...

Part and Inventory Search

Back
Top