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.
...are two different.
Private Sub btnTestButton_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnTestButton.Click
'// ** Place Event Handling Code Here **
Dim txtKeyField as EpiTextBox =...
...Error: BC30451 - line 64 (267) - Name 'txtKeyField' is not declared.
Error: BC30451 - line 65 (268) - Name 'txtKeyField' is not declared.
** Compile Failed. **
Here is an example of what I am trying to do for OrderEntry:
Private Sub btnTestButton_Click(ByVal Sender As Object, ByVal Args...
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.
...adoCon = New ADODB.Connection
With adoCon
.ConnectionString = strCon
.Open
End With
Set adoRs = New ADODB.Recordset
strSQL = "SELECT * " _
& " FROM table;"
With adoRs
.CursorLocation = adUseClient
.ActiveConnection = adoCon
.Open strSQL
End With
Do While...
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...
...just replace any of these characters with NULL but don't know if a legitimate character shows up or not.
Unix flavor = HP-Unix
As for the DIR *.txt
In the MSDN Library Visual Studio 6.0 documents they say to do the following for Using the Internet Transfer Control:
....
DIR [ file1 ]...
...= icFTP
Inet1.Execute Inet1.URL, "cd /log/dir/
Do While Inet1.StillExecuting
DoEvents
Loop
Inet1.Execute Inet1.URL, "DIR *.txt "
Do While Inet1.StillExecuting
DoEvents
Loop
End Sub
Private Sub Inet1_StateChanged(ByVal State As Integer)...
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.