Re: vb run time error
- From: erewhon@xxxxxxxxxx (J French)
- Date: Thu, 11 May 2006 07:15:13 GMT
On Thu, 11 May 2006 05:36:42 GMT, "carmen413" <u21749@uwe> wrote:
Hi, i'm new for this community. I have a problem regarding VB6.0
I have desined a program using MS VB6.0 and it can run or execute without any
problem. but when i make the project to .exe file and the .exe file to the
client. client encounter a problem which the error is: "Run time error:'380'
Invalid property value. "
I have searched for solution by setting the Visible property of the Mask Edit
control to True at design-time and then change it to False at run-time,
perhaps during the Load event of the form. but this solution is only applied
to Ms VB 4.0 and 5.0.
i have tried but could not find Custom Controls on the Tools Menu.
It sounds as if your client has a different version of the MaskEdit on
their machine.
If it is a Focus problem, then using the API SetFocus (normally
aliased to PutFocus) might solve the problem.
Private Declare Function Putfocus _
Lib "user32" _
Alias "SetFocus" _
(ByVal hwnd As Long) As Long
Call PutFocus( MaskEdit1.hWnd )
.
- References:
- vb run time error
- From: carmen413
- vb run time error
- Prev by Date: Re: Triggering events across MDI app's forms? (VB6)
- Next by Date: reinstalled win98se and vb6 and msdn, can't access vb help
- Previous by thread: vb run time error
- Next by thread: reinstalled win98se and vb6 and msdn, can't access vb help
- Index(es):
Relevant Pages
|