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: *

  • Users: Lekar
  • Order by date
  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]
  16. Lekar

    SUM Question

    You can specify the keyword Distinct in the SUM function. Select Sum(Distinct Amount) From TableName [bomb]
  17. Lekar

    Datawindow Sort

    If the sort columns are specified on a DW level: ls_Sort = <DW Control Name>.Describe("DataWindow.Table.Sort") (You can use DWSyntax program that comes with PowerBuilder to look up more properties of the DataWindow Object). If u want to know the sort columns of the Select statement of the DW...
  18. Lekar

    DBCC USEROPTIONS (for another connection)

    Thanks Jamfool: The DBCC pss statement displays the isolation_level of any connection with the values 1 to 4 identifying the READ COMMITTED, READ UNCOMMITTED, REPEATABLE READ, SERIALIZABLE. [bomb]
  19. Lekar

    DBCC USEROPTIONS (for another connection)

    Hi I want to check out the options for any connection. I've used DBCC USEROPTIONS, however this command only applies to the current conection. When I run sp_Who I see some spids and I want to know the options of the conection of the spid x. Can I do that? [bomb]
  20. Lekar

    Show the list of a DDDW automatically

    Thanks gnamachivayam, it worked like a charm! [bomb] Lenin.

Part and Inventory Search

Back
Top