Disabling Function Keys in an Application
Question: How do I disable function keys in an application? Answer: You can disable function keys by using the ON KEY LABEL command. Putting an asterisk (*) after the key
Question: How do I disable function keys in an application? Answer: You can disable function keys by using the ON KEY LABEL command. Putting an asterisk (*) after the key
Question: We have set up a second Exchange server within our site and moved 170 mailboxes over to it. However, it does not appear that the mailbox data has transferred.
Question: I have a problem creating the same mailbox names with different domain names at one server (one site). How can I go about doing that? Or can I only
Question: In VB, I can use the function AddressOf. It is the return address of function WNDPROC. Is there a similar function in PowerBuilder? Answer: In PowerBuilder you cannot get
Question: I need to delete certain characters from a string, particularly a money field in the format 99,999,999.99. Is there an easy way to delete the commas and period from
Question: I would like some Visual FoxPro application as a starting guide in VFP 6. I’m finding it hard to add commands using a form. For example, I want to
‘ A replacement for the StrReverse function for VB4 and VB5Function StrReverse(ByVal Text As String) As String Dim length As Long, index As Long length = Len(Text) StrReverse = Space$(length)
‘ A replacement for the Split function under VB4 and VB5” Note that the return value is a Variant that contains’ an array of stringsFunction Split(ByVal Text As String, Optional
‘ Join variant that works with arrays of any type’ and that encloses string values between quotes” ARR is the array whose element must be joined’ SEPARATOR is the separator