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: BML
  • 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

    Allowing only two / / for dates

    Hi Strongm, why is that? I don't know the project that KGB007 is working with, but if that project uses txtDateBox in many forms, perhaps the better solution is to build an ActiveX control to deal with dates (by the way KGB007, why don't you use a control like DTPicker - Microsoft Windows...
  3. BML

    Allowing only two / / for dates

    Hi, try to use Regular Expressions to create your one control, or use them to control the data of the TextBox. You have to set the reference Microsoft VBScript Regular Expressions (vbscript.dll -> System32) at the project references. Let's assume that you use the RE...
  4. BML

    Display a MsgBox With images on the buttons

    Hi scarfhead, the thing is that my clients don't want the buttons text of msgbox in english (although the English OS). I have to get a way of display them in Portuguese: instead of Yes or No I have to display Sim or Não. I thought that perhaps a API made the work... regards, Bruno Loureiro.
  5. 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.
  6. 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...
  7. 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...
  8. 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.
  9. 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.
  10. 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...
  11. 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>
  12. 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...
  13. 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...
  14. 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...
  15. 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...
  16. 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...
  17. 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...
  18. BML

    Call API with JavaScript

    No, I don't want any sort of rfc for AS400. I'm working with NT, and have to get the user name through API (or something else). To get the user name is just one functionality among others that I actualy do with my application in VB 6.0 using API's. I'm migratting the VB clients to HTML clients...
  19. BML

    How do I get Windows Username in Javascript??

    Hi, can you post an example of how to get the user name with ASP? regards, Bruno Loureiro <brunoloureiro@usa.net>
  20. 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...

Part and Inventory Search

Back
Top