I'm getting the same exact problem with PS 6.0, and I recently added some fonts- Pain4u, how did you discover which font it was that was messing you up?
(I found this page through google)
evan@geek.com
Assumptions: You're working in a closed environment where OS's and Browsers are part of a corporate standard. If this is the case, my solution should work with Windows 95/98/NT/2k with IE 4+ browsers.
There is an API Call named ShellExecute.
Public Declare Function ShellExecute Lib...
You can write to a file without using the Scripting Object.
VB supports Open, Print #, Close, and Freefile.
Dim F as Long, OutFile as String
F = Freefile
OutFile = <File Name with or without Path, as String>
Open OutFile For Output As #F
Print #F, <Output as String>
Close #F
The above code...
1) Allowing a user to enter a date. One way to enforce data integrity is to use the Masked Edit Control. This control allows you to use input masks so that only the data you wish to have is entered in.
2) To validate a date, there is a function in VB called IsDate(). The parameter for IsDate...
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.