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: *

  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

    Figured it out. You have to get the EpiGuid identifier in the properties screen and then declare it. Make sure you declare as right control as well. Regular textbox vs EpiTextbox are two different. Private Sub btnTestButton_Click(ByVal Sender As Object, ByVal Args As System.EventArgs)...
  3. 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...
  4. 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...
  5. 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...
  6. lleemon

    HOW TO PRINT THE DATA FILE DESCRIPTION

    PROC CONTENT may work best but another option would be proc sql. libname mylib 'xxxxxxx'; proc sql; describe table mylib.<yourdataset>; Run; -------- NOTE: output will be in .log file NOT .lst file. Just another option.
  7. lleemon

    Find previous month using DATE (date +%b)

    CaKiwi - Can I run this within a perl script? Thanks to all that have posted.
  8. lleemon

    Find previous month using DATE (date +%b)

    vikramkalsi - Thanks for the code but I believe the output of this will be: 06 2002. If the current date is: Jul 2002. I want to have Jun 2002 be returned. Thanks.
  9. lleemon

    Find previous month using DATE (date +%b)

    FAQ80-953 is for previous date. Your basically changing the time zone by 24 hours so you can get previous date or next days date. This will not work if it's June 15 and I need to know that last month was May. Thanks.
  10. 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.
  11. 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.
  12. 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...
  13. lleemon

    how to add to treeview

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

    HOW TO FIND THE LATEST FILE BY FILES'S EXTENSION

    You can have other files in the directory also if the filename searching is the same you can do the following: ls -1 zzz* | awk '$1 > prev { prev = $1 } END { print prev }' As for #2, is your output in /home/user and you want it to be in say /home/user/temp? You could use remsh if you have...
  15. 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...
  16. lleemon

    Unix to PC data issue

    Terry - the funky characters/letter not the same each directory accessed. An example is in notepage the first character is a black square, space, character T, and space then the first item in the list. I have set up a loop and am finding the characters to be ascii characters less then 31 or...
  17. 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...
  18. 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...
  19. 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...
  20. 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...

Part and Inventory Search

Back
Top