Search:

Type: Posts; User: aviben

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Re: Installing an application that needs to register dll/ocx's

    Thanks Elroy,

    Too advanced stuff for me. Do you know someone who will be ready to do it as a paid service?

    I've tried the (Pine.Exe) and it works fine for the dnll's he provides. I have...
  2. Re: Installing an application that needs to register dll/ocx's

    The line


    Set oDotsrDll = NewObjectFromActivexDll("DAS_AX_Knob.dll", "DAS_Knob")

    seems to work now but then the next line returns "Object doesn't support that method". Hovering on all the...
  3. Re: Installing an application that needs to register dll/ocx's

    It will be fantastic if it works that way but I'm not sure if the Dll I have fits. I am using the code you refer


    Set oDotsrDll = NewObjectFromActivexDll("DAS_AX_Knob.dll",...
  4. Installing an application that needs to register dll/ocx's

    Hello,

    I have built a VB6 application that among other things needs registered dlls/ocx’s for working. I have created an Innosetup exe package for distributing the application.

    As I don’t know...
  5. Replies
    3
    Views
    2,938

    Struggling with Windows common controls

    Hello,

    I am providing to regular users an app that use Windows common controls (comdlg32.ocx, MSCOMCTL.OCX..).

    Can I assume that Windows common controls (comdlg32.ocx, MSCOMCTL.OCX..) exist And...
  6. Replies
    4
    Views
    4,129

    Re: Vb6- Move focus to PowerPoint

    It works with https://support.microsoft.com/en-au/...omation-server!

    Thanks a lot!
  7. Replies
    4
    Views
    4,129

    Vb6- Move focus to PowerPoint

    The VB6 exe program is launched from an Excel add-in and is supposed to move the focus to an active and open PowerPoint presentation that should become the visible window.


    With...
  8. Replies
    1
    Views
    1,982

    VB6 event for capturing the active document

    During the session many PowerPoint file may be open. While my prog run and a form is on, the user may want to change the active file from the taskbar.

    Is there an event that can capture the change?
  9. Replies
    1
    Views
    480

    SetWindowPos-Form disappearing

    Hello,

    i'm using onTop = SetWindowPos(Me.hWnd, HWND_TOPMOST, 0, 0, 0, 0, flags) in order to keep forms always on top of the application in the background (Excel in this case)

    The problem is...
  10. Replies
    8
    Views
    3,783

    Re: Expand image with animation

    Seems to do what I need! Many thanks
  11. Replies
    8
    Views
    3,783

    Re: Expand image with animation

    It has to expand in ALL directions from the CENTER of the Picture box
  12. Replies
    8
    Views
    3,783

    Expand image with animation

    The code below animates the resizing effect properly but from the left corner of the image. How can it be done from the center expanding in all directions?


    Private Sub Timer1_Timer()

    If...
  13. Replies
    3
    Views
    4,395

    Re: Flexgrid mouseover event

    Works perfectly!
  14. Replies
    3
    Views
    4,395

    Flexgrid mouseover event

    Hello,

    Is there a way to display a popup message when the mouse is over a cell and update the message when the mouse moves to another cell?
  15. Passing an array as argument between 2 executables

    Hello,

    I have 2 vbp projects (Project1 and Project2)

    I need Project1 to load a form pertaining to Project2 while passing to it an array Arr as argument produced by Project1

    Project1 is...
  16. Replies
    2
    Views
    5,487

    Using option base 0 functions on base 1 array

    Hello,

    I have a library of functions in a module designed under Option base 0

    My project is basically base 1 . What would be the way to use an array base 1 bay calling a function designed...
  17. Replies
    7
    Views
    3,514

    Re: Crosstab over a 3 coumns array

    Remarkable!!!!
  18. Replies
    7
    Views
    3,514

    Re: Crosstab over a 3 coumns array

    Actually I am more interested in the previous version where 2 variables are displayed for each column (price,volume)

    Moreover I wonder if you could instruct about 3 or even 4 variables per column...
  19. Replies
    7
    Views
    3,514

    Re: Crosstab over a 3 coumns array

    Looks extremely promising

    Thanks
  20. Replies
    7
    Views
    3,514

    Crosstab over a 3 coumns array

    Hello,

    I have a 50k rows array of 3 columns. The 2 first columns are categorical while the third one is numeric

    I want to build a cross tabulation where each cell represents the average of the...
  21. Working under non English Windows/Excel versions

    Hello,

    I've developped a Vb6 exe application that installs as an Excel add-in and works very well

    I wonder if there are ways to test how the application performs under different OS/Office...
  22. Insering a graphical character in a listview column

    Hi,

    I want a certain column in the listview to display for each row a kind of horizontal chart based on a value of another column

    I was thinking of the $string function for repeating a...
  23. Replies
    1
    Views
    574

    msHglexgrid copy to clipboard

    Hi,

    I am using Clipboard.SetText Fgrid.Clip to copy from a flexgrid to clipboard

    It works well with regular MsFlexGrid but seem to have no effect with MsHFlexGrid

    Am I missing something?
    ...
  24. Replies
    13
    Views
    1,433

    Re: ado left join sorting issue

    I'm using VB6
  25. Replies
    13
    Views
    1,433

    Re: ado left join sorting issue

    Yes an Auto Number field will be fine but I don't know how to do it

    For the DB, I am using Excel tables through an ADO connection


    Dim ObjConnection As New ADODB.Connection
    ...
  26. Replies
    13
    Views
    1,433

    Re: ado left join sorting issue

    I'm interested at adding a unique ID variable to each record (1,2,3...) in
    Sql = "SELECT * FROM " & rs1 & " AS T1

    Could you help?

    Thanks
    Avi
  27. Distributing the applications-dependency question

    Hello,

    I'm using Inno setup for distributing my Vb6 application

    In order to identify the dependencies files required, I used the vb6 packaging wizard wizard which has identified the following...
  28. Replies
    13
    Views
    1,433

    ado left join sorting issue

    Hello,

    I'm using the following SQL statement to join 2 tables based on a common key


    Sql = "SELECT * FROM " & rs1 & " AS T1 LEFT JOIN (SELECT DISTINCTROW * FROM " & rs2 & ") AS T2 ON T1." &...
  29. Thread: ADO mixed data

    by aviben
    Replies
    9
    Views
    7,209

    Re: ADO mixed data

    Thanks... What does mean ReadOnly recordset? Is there a way to make the recordset ReadOnly?
  30. Thread: ADO mixed data

    by aviben
    Replies
    9
    Views
    7,209

    Re: ADO mixed data

    Thanks...But actually I want the SQL statement to output both the numeric and string values from the mixed column formats
  31. Thread: ADO mixed data

    by aviben
    Replies
    9
    Views
    7,209

    Re: ADO mixed data

    Could you explain a little more?
  32. Thread: ADO mixed data

    by aviben
    Replies
    9
    Views
    7,209

    ADO mixed data

    Hello,

    I am querying an Excel column (via VB6) column in excel of format General whose 7 first items are numerical and the next values are Text

    The following works well but returns only the...
  33. Replies
    2
    Views
    1,047

    Re: InputBox to Excel range

    Seems working perfectly!!!!!

    Many many thanks
  34. Replies
    2
    Views
    1,047

    [RESOLVED] InputBox to Excel range

    Hi,

    The following line of VB6 code is used to allow selecting an Excel range


    Dim MyCell As Range
    Set MyCell = XlApp.InputBox(prompt:="Select a range", Type:=8)

    My issue is that the input...
  35. Re: Displaying splash screen while unloading the main form

    Great! It works now
  36. Re: Displaying splash screen while unloading the main form

    I want the splash screen to unload just after all the code in the form_unload has terminated
  37. Re: Displaying splash screen while unloading the main form

    Thanks, but it seems far from solving the issues
  38. [RESOLVED] Displaying splash screen while unloading the main form

    Hi,

    I have a form that performs some code during its unloading

    I want to display a splash screen until the form unload


    Sub Form_Unload(Cancel As Integer)
    splash.show VbModal
    code...
  39. Replies
    3
    Views
    605

    Erasing a line created with Line methos

    Hi,This code draw a grid on my form at runtime
    Dim I As Long ScaleMode = vbTwips For I = 1 To ScaleWidth Line (0, I * 400)-(ScaleWidth, I * 400), vbGray Next For I = 1 To...
  40. Replies
    2
    Views
    535

    Hiding a form closes the application

    Hi,

    My dll contains a form with a command button that should hide it

    The dll is called by an MyApp.exe file. When the user hides the form, the application closes completely and some timers...
Results 1 to 40 of 52
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width