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.
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)...
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...
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...
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...
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.
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.
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.
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.
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.
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...
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...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.