I just get a blank message box. I'm running Windows XP Pro x64.
And the question:
When I use the Ldb, how can I search for several fields at once?
Lets say I wanna search for Robert Olsen, and not just Robert or Olsen, I have one field named firstname and one called lastname.
I Stepped On A Cornflake!!! Now I'm A Cereal Killer!
When I run this on my machine:Code:
MessageRequester("OS Version",OSVersionText())
I just get a blank message box. I'm running Windows XP Pro x64.
Works great with XP Pro x32, perhaps it's a XP Pro x64 issue ?
And the question:
When I use the Ldb, how can I search for several fields at once?
Lets say I wanna search for Robert Olsen, and not just Robert or Olsen, I have one field named firstname and one called lastname.
ProcedureDLL.s OSVersionText()
Select OSVersion()
Case #PB_OS_Windows_NT3_51
retour.s="Windows NT 3.51"
Case #PB_OS_Windows_95
retour.s="Windows 95"
Case #PB_OS_Windows_NT_4
retour.s="Windows NT4"
Case #PB_OS_Windows_98
retour.s="Windows 98"
Case #PB_OS_Windows_ME
retour.s="Windows Me"
Case #PB_OS_Windows_2000
retour.s="Windows 2000"
Case #PB_OS_Windows_XP
retour.s="Windows XP"
Case #PB_OS_Windows_Future
retour.s="Unknown"
EndSelect
ProcedureReturn retour
EndProcedure
When I run this on my machine:Code:
MessageRequester("OS Version",OSVersionText())
I just get a blank message box. I'm running Windows XP Pro x64.
Works great with XP Pro x32, perhaps it's a XP Pro x64 issue ?
Might be right there, don't know, haven't used it for very long.
Droopy wrote:
And the question:
When I use the Ldb, how can I search for several fields at once?
Lets say I wanna search for Robert Olsen, and not just Robert or Olsen, I have one field named firstname and one called lastname.