Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MindXFlayer

  1. MindXFlayer

    Setting the windows date format through VB

    Take a look at the SetLocaleInfo WinAPI call. Public Declare Function SetLocaleInfo Lib "kernel32" Alias "SetLocaleInfoA" (ByVal Locale As Long, ByVal LCType As Long, ByVal lpLCData As String) As Long To get the info use GetLocaleInfo like: lBuffLen = 128 sBuffer =...
  2. MindXFlayer

    Need Expression Evaluator for comparison statements

    Scoty, thanks for the reply. Unfortunately, Cbool can not take a string like "6 > 5". It takes "6" > "5", i.e. the comparison operator (>) can not be part of the string. Strongm, thanks for the reply. The problem is that I need to send this as a string. So I am...
  3. MindXFlayer

    Need Expression Evaluator for comparison statements

    I am looking for a class/API call that can take: 6 > 5 OR 7 > 5 AND (A = B) and return either True or False. I have found plenty of math expression evaluators and tried the EbExecuteLine (but it requires vba6.dll which is not always registered on a system) but have yet to find what I need...

Part and Inventory Search

Back
Top