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

    Onsave event

    Using Epicor Vista 8.03.409C, Is there a way that you can raise an event for when the user clicks the 'Save' button that fires before the record is saved and check certain controls and if invalid to stop and raise warning? Thanks.
  2. lleemon

    Access other controls from new custom button

    Using Epicor Vista 8.03.409C and can create a new button but when I try to access another control and do 'Test Code' I get errors. Compiling Custom Code ... ----------errors------------ Error: BC30451 - line 64 (267) - Name 'txtKeyField' is not declared. Error: BC30451 - line 65 (268) - Name...
  3. lleemon

    Preventing select applications to be loaded/seen on certain accounts

    I have XP Professional and it seems like when I sign into my account (Lee in the Administrator group) and install a new program. When I sign into the Guest account I see this new program. Is there a way so I can make certain applications not visible or unable to run in Guest and any other...
  4. lleemon

    find amount of memory my program uses

    Does anyone know of a tool or code that I can use to determine how much memory is needed to run a application? I created a vb app and someone tried to use and worked but they got a Run-time error 13. Type mismatch and I am wondering if it's a memory issue. They are running Win95 with only 8MB...
  5. lleemon

    Find previous month using DATE (date +%b)

    Is it possible to find the previous month using DATE? I can find the current by doing: x=`date +%b` Anyone know how to find the previous month? Thanks.
  6. lleemon

    how do I create a permanent dataset from ebcidic file?

    I have an ebcidic file and am given the positions to each field. filename: srcfile.dat field1: Key field2: ID field3: Num Start-End-Length for the above fields: 1-19-19 Key 20-44-25 ID 45-63 19 Num What is the sas code to create a dataset from this information? Thanks.
  7. lleemon

    connect to MySql DB using ADO in VB with MyODBC 3.51

    I am trying to connect to a MySql db that isn't local. I have the following code that looks right but gives me the following error: Run-time error '-2147467259 (8004005)': [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified. Here is my code that I...
  8. lleemon

    how to add to treeview

    I initially have the following code in a Command_Click button: Set nodx = tvwLots.Nodes.Add(, , "main", "main") Set nodx = tvwLots.Nodes.Add("main", tvwChild, "jRock", "jRock") Set nodx = tvwLots.Nodes.Add("main", tvwChild...
  9. lleemon

    mysql numrow

    In Oracle you can do the following and only return the first 5 records: select * from tablename where rownum = 5; Does anyone know if you can do the same thing in MySql? I have heard of a numrow but was unable to find this on the MySql site. If anyone can send me a sample of how to do this I...
  10. lleemon

    Unix to PC data issue

    I am working on a project that required data to be pulled from a hp-unix box and populate a excel worksheet. One option they are wanting to include in this app is to let a user select the unix directory to look at files. Do far my solution is to use the inet control to get the list of...
  11. lleemon

    let users change own pwd with htpasswd

    I have created a password file using htpasswd utility. It contails 2 users: John:(encryptedpwd) Jack:(encryptedpwd) I have a cgi-page that allows only admins to add users to this file. I want to create a page for all users to be able to enter their username, current pwd, new password, new...
  12. lleemon

    reading from file on server

    I am wondering if the following can happen: If I have a upload utility to put a .txt file onto my server, can I upload a .txt file to a certain location. When this is done I want to open a .asp page that when I hit a button reads the .txt file values and populates a page, db, etc... My main...
  13. lleemon

    joining 2+ hashes/associate arrays

    Sorry if this is too simple of a question but, if I have two associate arrays how can I combine them into one? %hash1 = ( 'key1', 'value1', 'key2', 'value2', ); %hash2 = ( 'key3', 'value3', 'key4', 'value4', ) %mainhash = ??? Or can I just add one hash to another? Thanks for the...
  14. lleemon

    What does astricks syntext mean?

    I am looking into a co-workers perl scripts and keep seeing the following: sub subname { local(*FORM_DATA)=@_; ...... AND .... &parse_form_data (*FORM); .... I can find no explaination of what the * is and how it is used and what's even happening? Can anyone explain this to me or point me...

Part and Inventory Search

Back
Top