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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sriblon

    Xcelsius 2008 gives an error when I try to run exe

    Recently when I try to open Xcelsius 2008, I receive an error: Error Title: Xcelsius.exe - Entry Point Not Found Detail: The procedure entry point ?LevelDiffToFirst@CTreeBtnCtrl@@QAEHPAU_TREEITEM@@@Z could not be located in the dynamic link library TreeBtnExtDll.dll. I have tried to uninstall...
  2. sriblon

    Change date format of variable contents

    I am pretty convinced PowerBuilder's built in Date(<string>) function just doesn't know how to handle the dd-Mmm-yyyy format. When I manually change my registry to dd-Mmm-yyyy, after the following line of code: id_week1 = Date(ls_week1) the variable contents are: ls_week1 = "06-Jun-2009"...
  3. sriblon

    Change date format of variable contents

    My Registry Edit is successful. Before my application starts, the sShortDate setting is "M/d/yy". At runtime I verified the change to "dd-Mmm-yyyy" and then back to "M/d/yy" after processing the string/date conversions. Something interesting to note: When I change my input data to the format...
  4. sriblon

    Change date format of variable contents

    That's what I'm figuring too, but I don't know how to fix it.
  5. sriblon

    Change date format of variable contents

    Adding the leading zero to the string solved the "null" date problem. However, all my years are still showing up as "2020." After execution of the following: id_week1 = Date(ls_week1) id_week2 = Date(ls_week2) id_week3 = Date(ls_week3) id_week4 = Date(ls_week4) id_week5 = Date(ls_week5) The...
  6. sriblon

    Change date format of variable contents

    The string variable contents are correct: ls_week1 = "6-Jun-2009" ls_week2 = "13-Jun-2009" ls_week3 = "20-Jun-2009" ls_week4 = "27-Jun-2009" ls_week5 = "4-Jul-2009" The problem occurs on the following lines: id_week1 = Date(ls_week1) id_week2 = Date(ls_week2) id_week3 = Date(ls_week3) id_week4...
  7. sriblon

    Change date format of variable contents

    Thank you for your responses. I believe I will have to use the solution that suggests parsing the string and creating the function to return the month. When I try ls_week1 = String(id_week1, "mm/dd/yyyy"), my input of 6-Jun-2009 displays as 01/01/1900.
  8. sriblon

    Change date format of variable contents

    I am importing a file into a datawindow, and my first row contains column headings. Some of these headings are dates and I need to change the format before using the dates as the text of datawindow column headings. I have the following code, but the date is not displaying correctly. In my test...
  9. sriblon

    Datawindow filter changing order of rows

    I am curious why this happens as well. I have implemented my sorts and thus am also "moving on," but would love to see this handled better in future PB versions.
  10. sriblon

    Datawindow filter changing order of rows

    I have a menu item that when clicked, it will filter the datawindow (using a hard-coded value at this point). If the menu item is clicked again, the filter will be cleared. The problem is, when the menu item is clicked again (to once again filter the data), the rows are now in a different order...

Part and Inventory Search

Back
Top