Search Result

Collapse
8 results in 0.0029 seconds.
Keywords
Members
Tags
lookup
  •  

  • josh wood
    started a topic Read from dictionary

    Read from dictionary

    I have a program that looks up words in a dictionary. The dictionary is in the form of a text file with one word per line. I have tried
    Code:
    If TextBox.Text.Contains(Dictionary.ReadLine()) Then 
    MsgBox("This contains a word", MsgBoxStyle.Information, "Info")
    end if
    however it only looks at the first line of the dictionary, not every line. Any ideas on how to make it read each line individually. By the way,...
    See more | Go to post

  • Transferring the value of a form's text control to another form's text control

    I have a login form that I am using to direct particular people to a customized switchboard. All of the login process is working perfectly. (I am not doing this for security but for simplicity, so there is no concern about the faults of VBA for security.)

    What I need is to get an unbound text control on the formSwitchboard to lookup the EID that was entered on the login form. How can I do this?

    Thank you in advance!
    See more | Go to post

  • How do I get this unbound contol to lookup a password based on a parameter?

    I have a form the records a process that we require to be authorized by a manager.

    We want to check this authorization by a password. I was thinking a good way to do this is have a hidden, unbound text box lookup the proper password for the EID of the manager that entered their EID on the form. I was thinking have a VBA event that runs on exit from the control in which the manager enters their EID. Then, a simple if function that compares...
    See more | Go to post

  • presencia
    started a topic function template overloading
    in C

    function template overloading

    Hi all,

    i would appreciate help with the following problem: Please consider the code
    Code:
    #include <iostream>
    using namespace std;
    
    template<typename T> struct A{};
    template<typename T> struct B: public A<T>{};
    
    template<typename T> void f(T obj){ cout << "default\n"; }
    template<typename T> void f(A<T> obj){ cout << "special
    ...
    See more | Go to post

  • Why Is my Lookup Value Being Copied to Other Records in My Form?

    am using Access 2003, and am not very familiar with Access or its terminology. I am not at all familiar with VB.

    I created a form from a query, and everything is generally working fine.

    One of the fields on the form is based on a lookup table for location. I have assigned a default value of 1 (which translates to NOT CHOSEN), and that's how everything shows up when I go into the form. I assigned the default both in the originating...
    See more | Go to post

  • zettamacs
    started a topic Access Reconcile Two Tables

    Access Reconcile Two Tables

    In Access 2000, I have two tables that need to be reconciled.

    One is an imported table called "Orders" (which cannot be changed):
    OrderNumber | Customer
    A | AAA
    B | BBB
    C | CCC
    D | DDD
    E | EEE
    F | FFF
    G | GGG

    The other is a table internal...
    See more | Go to post

  • kallo
    started a topic Linking, lookups or back coding or what?

    Linking, lookups or back coding or what?

    I have a table with about 50 integer fields (coded answers to questions), and equal number of tables where those integers correspond to short bits of text. (Human readable version of those answers.) I now want to produce either a query or a table where all the integers have been replaced with the corresponding bits of text.

    Linking the integer fields result in an extremely slow query after 18 or so linked tables, and if I try to link...
    See more | Go to post

  • dnorris
    started a topic 2 Level lookup in a table

    2 Level lookup in a table

    Hi,

    I am baffled on this one and perhaps just a bit brain dead. I have a table with two look up columns.

    Structure

    Departments
    Dept_ID Autonum
    Dept_Name Text

    Groups
    Group_ID Autonum
    Dept_ID Num
    Group_Name Text

    Teams
    Team_ID Autonum
    Dept_ID Num
    Group_ID Num
    Team_Name Text

    In a table=based look up for Group_ID in the...
    See more | Go to post
    Last edited by dnorris; Mar 17 '09, 10:18 PM. Reason: typo
Working...