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 Chriss Miller 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: BML
  • Content: Threads
  • Order by date
  1. BML

    ByRef and Collections as Parameters

    Hi kamalsawhney at thread330-107430 said that we shoud not pass objects ByRef or Collections as parameters to MTS objects. Can anyone explain me why? regards, Bruno Loureiro.
  2. BML

    Display a MsgBox With images on the buttons

    Hi, Is it possible to change the language of the buttons on msgbox? or display the msgbox with images on the buttons? how? regards, Bruno Loureiro.
  3. BML

    Problems comparing doubles

    (Sorry about last one - no title...) Hi, try to run this code: '------------------------------------------ Private Sub Form_Load() Dim a As Double Dim b As Double a = 6.3 b = 1.1 + 2.1 + 3.1 Debug.Print "a = " & a 'a = 6,3 Debug.Print "b = &quot...
  4. BML

    Hi, try to run this code: [co

    Hi, try to run this code: '------------------------------------------ Private Sub Form_Load() Dim a As Double Dim b As Double a = 6.3 b = 1.1 + 2.1 + 3.1 Debug.Print "a = " & a 'a = 6,3 Debug.Print "b = " & b 'b = 6,3...
  5. BML

    Debug Stored Procedures

    Hi, can anyone tell me where can I find a tool for debug a Oracle SP? It has to work with version 7.3.3. regards, Bruno Loureiro.
  6. BML

    Perform actions on a project from one ocx

    Hi, I have a VB project that uses a ocx, and I need to: 1) from inside the ocx, perform an action on the project. 2) unload or set the ocx invisible from the ocx. 3) don't let the ocx losses his focus. is this possible??? regards, Bruno Loureiro.
  7. BML

    Transaction doesn't abort with MTS time out

    Hi, I have a little problem with MTS transactions. Here's the scenario: A - VB client B - MTS server with time out set to 60 seconds C - MTS server with time out set to 0 seconds Actions: (both components are set to 'Require Transaction') 1º - A calls B component 2º - B component calls C...
  8. BML

    Ordinal not found in ATL.dll

    Hi, when I try to put a new component on the MTS console, the following error occurs: Window title: &quot;OleChannelWnd: mtx.exe - ordinal not found&quot; The ordinal 57 could not be located in the dinamic link library ATL.dll why? regards, Bruno Loureiro <brunoloureiro@usa.net>
  9. BML

    TCP/IP vs UDP/IP protocols

    Hi, - sorry about the last subject - As far I know, tha best way the client has to comunicate with MTS server is using TCP/IP protocol, at least it was what Microsoft suport told me. But what is the best way for an MTS server to comunicate with another MTS server? TCP/IP or UDP/IP protocols...
  10. BML

    Hi, As far I know, tha best way

    Hi, As far I know, tha best way the client has to comunicate with MTS server is using TCP/IP protocol, at least it was what Microsoft suport told me. But what is the best way for an MTS server to comunicate with another MTS server? TCP/IP or UDP/IP protocols? Can anyone tell me the major...
  11. BML

    onchange() event

    Hi, In VB the TextBox raises an Change event each time one caracter is inserted or removed from the control. In HTML the onchange() event is just raised when the control lost the focus. can anyone tell me why? is there a way to do the same thing that VB does? regards, Bruno Loureiro...
  12. BML

    onchange() event

    Hi, In VB the TextBox raises an Change event each time one caracter is inserted or removed from the control. In HTML the onchange() event is just raised when the control lost the focus. can anyone tell me why? is there a way to do the same thing that VB does? regards, Bruno Loureiro...
  13. BML

    Call MTS methods in Javascript

    Hi, I have an VB application that calls MTS methods (written with VC++). Now I have to migrate the clients from VB to HTML, but the calls to the MTS components don't work, the out parameters always return indefined. An practical example: VC++ method: HRESULT getName(/*[in]*/long cust_id...
  14. BML

    Call MTS methods

    Hi, I have an VB application that calls MTS methods (written with VC++). Now I have to migrate the clients from VB to HTML, but the calls to the MTS components don't work, the out parameters always return indefined. An practical example: VC++ method: HRESULT getName(/*[in]*/long cust_id...
  15. BML

    ActiveX controls unsave ???

    Hi, I'm trying to use an AxtiveX control (written in VB 6.0) in my web page, but I keep getting this warning: Some software(ActiveX controls) on this page might be unsafe. It is recommended that you not run it. Do you want to allow it to run? How can I prevente this message from being...
  16. BML

    Call API with JavaScript

    Can I do that ? How ? regards, Bruno Loureiro <brunoloureiro@usa.net>
  17. BML

    Change Window Status

    HI, I have two HTML pages, in the first page I call the second that have to appear in the same window, like this: window.open(&quot;home.html&quot;, &quot;_self&quot;, &quot;status=no&quot;); the third parameter (status=no), is to disable the status bar from the browser (IE 4.0), but that...
  18. BML

    Change Window Status

    HI, I have two HTML pages, in the first page I call the second that have to appear in the same window, like this: window.open(&quot;home.html&quot;, &quot;_self&quot;, &quot;status=no&quot;); the third parameter (status=no), is to disable the status bar from the browser (IE 4.0), but that...
  19. BML

    Parameters in Stored Procedures

    Hi, anyone can tell me how to pass an array (or collection) as a parameter to a stored procedure (in a package) in Oracle 8i, using VB 6.0 ? regards, Bruno Loureiro <brunoloureiro@usa.net>
  20. BML

    Running Dll's on Server

    Hi, I have one VB dll registered on MyServer (Windows NT), that was compiled on Windows 98. When I call CreateObject(&quot;MyDll.CmyClass&quot;, MyServer) it raises an error &quot;ActiveX can't create object&quot;. Why ? regards, Bruno Loureiro <brunoloureiro@usa.net>

Part and Inventory Search

Back
Top