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 wOOdy-Soft 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 Lekar

  1. Lekar

    Is there a control to host applications?

    Hi I need to run Microsot Word, the Calcular and other applications but also I need to put those applications inside my window. In other words my application should host other applications. I want to know if developing a control to host third party application is very complex or if I can buy a...
  2. Lekar

    Running an application and keeping it inside my window

    Hi I need to create an MDI application that can run other applications like MSWord, MSOutlook, etc (the end user will define the applications, so I dont know the list of applications my program will run). The problem is that the applications do not have to show in the taskbar but they must be...
  3. Lekar

    Running an application and keeping it inside my window

    Hi I need to create an MDI application that can run other applications like MSWord, MSOutlook, etc (the end user will define the applications, so I dont know the list of applications my program will run). The problem is that the applications do not have to show in the taskbar but they must be...
  4. Lekar

    Problem with date when calling a store procedure

    That's a great idea. I used a DataWindow. Thanks mbalent. [bomb]
  5. Lekar

    Problem with nested Select

    It works! Thanks LKBrwnDBA [bomb]
  6. Lekar

    Problem with nested Select

    Select C1, C2, C3, (Select Sum(ColSum1) From PAYS P Where P.F1 = C.F1 And P.F2 = C.F2) As TotalPay From Client C Where ToPay <> (Select Sum(ColSum1) From PAYS P Where P.F1 = C.F1...
  7. Lekar

    Problem with date when calling a store procedure

    I'm connecting to MS SQL Server and there is a store procedure that returns a value using an output variable. I declared the store procedure in the Local External Functions of a Transaction object. Where PB calls the store procedure, PB changes the month and the day. Here is an example: // On...
  8. Lekar

    Getting external BITMAP images with Powerbuilder

    Bitmap("H:\ProductImages\" + (Value_1) + ".bmp") [bomb]
  9. Lekar

    Getting external BITMAP images with Powerbuilder

    Bitmap(String(Long(Product)) + ".bmp") With that code it will work but make sure the files have a standard: Product File 001 --------> 1.bmp 002 --------> 2.bmp 003 --------> 3.bmp ... 010 --------> 10.bmp 011 --------> 11.bmp ... 101 --------> 101.bmp ... 999 --------> 999.bmp...
  10. Lekar

    Getting external BITMAP images with Powerbuilder

    Yea, you have to create a new column into the table. The user will select the file of every product (using GetFileOpen) then you extract the path and file name and save it into the new column. In the report, create a new compute field with the expression: bitmap(bmpfilename) and the report will...
  11. Lekar

    Getting external BITMAP images with Powerbuilder

    Creating a new column - as mbalent said - is the best way to do that. The user can choose an image to every product, and the report will show the image automatically with the expression: bitmap(bmpfilename) [bomb]
  12. Lekar

    Using sp_executesql in a stored proc

    Sometimes is better to use Exec instead of sp_executesql? [bomb]
  13. Lekar

    RTF to text - error

    For me the function returns aaa!! Maybe it is a problem of the ocx on ur computer. [bomb]
  14. Lekar

    Disable the sa user

    Thanks Jim [bomb]
  15. Lekar

    Disable the sa user

    Can I disable the sa user? I don't want anybody can use that user. [bomb]

Part and Inventory Search

Back
Top