Search:

Type: Posts; User: jdy0803

Page 1 of 11 1 2 3 4

Search: Search took 0.02 seconds.

  1. Re: How to pass data from ActiveX DLL to client?

    How to get pname and pid from the client code?
  2. How to pass data from ActiveX DLL to client?

    I made a simple ActiveX DLL.
    Code is like following.


    <Class Module>
    Option Explicit

    Private WithEvents frm As frmPatientInput
    Public PatientName As String
    Public PatientID As String
  3. Replies
    3
    Views
    1,364

    Collection vs Dictionary

    What is the difference between Collection and Dictionary in VB6?
  4. Replies
    7
    Views
    1,619

    Re: Unexpected Error #440 Automation error

    The type of property I added is CString
  5. Replies
    7
    Views
    1,619

    Re: Unexpected Error #440 Automation error

    If register using regsvr32, following error occur.
  6. Replies
    7
    Views
    1,619

    Unexpected Error #440 Automation error

    I made a ActiveX(*.ocx) using VC++ 6.0 and trying to access a property of it but an error occur like following

    Unexpected Error #440
    Automation error

    Can anybody give me some advice?
  7. Replies
    11
    Views
    1,170

    Re: How to create a Form at run-time

    Curiosity is always good!
    Roughly speaking, use in calculating form's width.
    I can make this dummy form at design time but want to make a form at design time temporarily.
  8. Replies
    11
    Views
    1,170

    Re: How to create a Form at run-time

    Curiosity is always good!
    Roughly speaking, use in calculating form's width.
    I can make this dummy form at design time but want to make a form at design time temporarily.
  9. Replies
    11
    Views
    1,170

    How to create a Form at run-time

    For some reason, I need to create a form at run-time.
    How to do this?
  10. Re: Object does not source automation events error occur when compiled

    My another program client program which call ActiveX DLL


    Dim f As New ActiveXTerminate.CfgWizard
    Private Sub Command1_Click()
    f.Start
    End Sub
    Private Sub Command2_Click()
    End If
  11. Re: Object does not source automation events error occur when compiled

    My another program client program which call ActiveX DLL


    Dim f As New ActiveXTerminate.CfgWizard
    Private Sub Command1_Click()
    f.Start
    End Sub
    Private Sub Command2_Click()
    End If
  12. Re: Object does not source automation events error occur when compiled

    Yes I need WithEvents for additional codes.
  13. Re: Object does not source automation events error occur when compiled

    I added Event Close() from frmWizard and succeeded in compile.
  14. Re: Object does not source automation events error occur when compiled

    I found that I missed declaration of Close() from the frmWizard like following.

    Event Close()
  15. Object does not source automation events error occur when compiled

    To test ActiveX DLL, I made simple ActiveX DLL project.
    This project has a form(frmWizard) and a class module(CfgWizard).
    frmWizard is nothing but a form which has no controls on it.(there's no...
  16. Re: How to return an error from ActiveX DLL to the client?

    This ActiveX DLL has it's own form and should load several values related to some folders, for example, data file, log file and queue file.
    If fails loading data, ActiveX DLL should return which one...
  17. How to return an error from ActiveX DLL to the client?

    My main program(exe) calls an ActiveX DLL that I made.
    When some error occur from ActiveX DLL, I want to return to the main program.
    How to do this?
  18. Replies
    3
    Views
    525

    Re: Error occurs when ActiveX dll is compiled

    This error occur when it is being compiled.
  19. Replies
    3
    Views
    525

    Error occurs when ActiveX dll is compiled

    Error occurs when my ActiveX Dll is compiled like attached screen capture.
    Can anybody give me some advice about this?
  20. MS Calendar Control doesn't select date corectly frequently

    I'm using Microsoft Calendar Control(MSCal.ocx)
    In most case works fine but sometimes it doesn't return selected date.
    For example, form1 loads form2 which has Calendar control.
    And I use global...
  21. Re: How to return value from child form to parent form?

    I'll try with Property.
    Thanks^^
  22. How to return value from child form to parent form?

    ParentForm load ChildForm as a Modal.
    The ChildForm should return a value to the ParentForm.
    How could I do this?
  23. How to convert date format from ddmmmyy to mm/dd/yy?

    The standard IATA(International Airport Transport Association) date format is ddmmmyy(for example 13May19).
    I want to convert this string to standard US time format, mm/dd/yyyy(for example...
  24. How to get parent form's position from form in DLL

    I have a Form1 in executable.
    Form1 load Form2 which is in DLL.
    I want to know the Form1's position(Left/Top) from DLL's Form2.
    How could I do this?
  25. Replies
    3
    Views
    1,675

    How to disable TabPage of the Tab Control

    I want to disable TabPage of the Tab Control.
    How to do this?
  26. Unable to set the version compatible component

    When I load project, an error occur like following.
    165839

    If I open form's log file, it says like following.
    165841
    This control is a user control.

    Can anybody give me any idea about why...
  27. How to get long file name from short file name

    I need to convert short file name to long file name.
    For example, C:\PROGRA~1\Test\aaa.txt => C:\Program Files\Test\aaa.txt
    How to do this?
  28. How to skip under a condition in For statement?

    I want to make flow skip under a condition in For statement.
    For example, I want to skip when i is smaller than 5 in the For loop


    //Pattern A
    For i = 0 To 10
    If i < 5 Then
    Next...
  29. Re: How to get child controls from container control

    Thanks^^
    This works fine!
  30. How to get child controls from container control

    I want to disable/enable some container's child controls at run time.
    For example, Frame1 contains a Label1, TextBox1 and CommandButton1.
    And I made following common function.


    Public Sub...
  31. Calling Managed .NET C# COM Objects from VB6

    I created COM object from C# referencing from following link.
    https://www.codeproject.com/Articles/12673/Calling-Managed-NET-C-COM-Objects-from-Unmanaged-C
    This example shows how to make C# COM...
  32. Replies
    4
    Views
    2,111

    Can VB6 call C# dll?

    I made a form and compiled as dll using C#.
    I want to call this DLL from VB6.
    Is it possible?
    If so, how could I do it?
  33. Replies
    1
    Views
    896

    Multiple selection without CTRL key

    I want to disable intrinsic feature of ListView but select multiple items programmatically.
    How could I do this?
  34. How can access client's variable from ActiveX EXE server?

    The client can access ActiveX EXE server's variable through Property.
    However I don't know how to access client's variable from ActiveX EXE server.
    Is it possible?
    If so, how to do it?
  35. Replies
    4
    Views
    879

    Re: ActiveX control update

    I got it.
    It seems to be safe way that I unregister existingocx file.

    Thanks Eduardo!
  36. Replies
    4
    Views
    879

    Re: ActiveX control update

    I don't understand why I should unregister the old and register the new.
    If once I register, that information is in the registry.
    Why should I do it before/after replace .ocx file?
  37. Replies
    4
    Views
    879

    ActiveX control update

    To update ActiveX control, is it only thing I should do?
    For example.

    I made a ActiveX control(.ocx) and copied it to the C:\Windows\System32 folder(in 32bit OS PC) and registered it to the...
  38. Re: constituent controls vs owner-drawn ActiveX controls

    Thanks for detailed explanation.
    May I ask you one more thing?
    What is .oca file and .cab file?
    Should it be positioned in the same location with the .ocx file in the c:\windows\system32 folder?
  39. constituent controls vs owner-drawn ActiveX controls

    What is the difference between constituent controls and owner-drawn ActiveX controls?
  40. Thread: COM Interface

    by jdy0803
    Replies
    3
    Views
    2,099

    COM Interface

    Regarding ActiveX, we call it as COM Interface.
    I know the ActiveX's base technology is COM technology.
    However I don't understand why they attach the word "Interface" at the end of COM.
    What does...
Results 1 to 40 of 435
Page 1 of 11 1 2 3 4



Click Here to Expand Forum to Full Width