Search:

Type: Posts; User: rudgej

Page 1 of 8 1 2 3 4

Search: Search took 0.21 seconds.

  1. Thread: MSFlexGrid

    by rudgej
    Replies
    4
    Views
    819

    Try using the RowIsVisible property. Replace...

    Try using the RowIsVisible property.

    Replace the .Row in the example below with the row that you've just added.



    With fg
    If Not .RowIsVisible(.Row) Then
    .TopRow = .Row
    ...
  2. Thread: MDI stuff

    by rudgej
    Replies
    9
    Views
    870

    Have the following in your main (parent) form ...

    Have the following in your main (parent) form



    ' For example...
    Private Sub mnuWindowCascade_Click()
    Me.Arrange vbCascade
    End Sub

    Me.Arrange vbArrangeIcons
  3. Thread: MSFlexGrid Mask

    by rudgej
    Replies
    5
    Views
    1,657

    You could always size and superimpose a masked...

    You could always size and superimpose a masked edit control over the cell that you want to enter data into. When the user has typed the info into the edit control, then copy the contents into the...
  4. Try this procedure...

    Try this procedure.
  5. Thread: ms flexgrid

    by rudgej
    Replies
    3
    Views
    436

    ...er I forgot to say that the example uses the...

    ...er I forgot to say that the example uses the double-click event on a row to move it between grids.
  6. Thread: ms flexgrid

    by rudgej
    Replies
    3
    Views
    436

    Here's a very simple example program... :)

    Here's a very simple example program... :)
  7. Replies
    3
    Views
    482

    This is a great application - but the true...

    This is a great application - but the true weblink should be http://www.allapi.net/ ;)
  8. Replies
    6
    Views
    4,852

    I use a module-level boolean (mbShiftPressed)...

    I use a module-level boolean (mbShiftPressed) that is set in fg_KeyDown:


    Private Sub fg_KeyDown(KeyCode As Integer, Shift As Integer)
    ' The tabstop property for all controls on the form have to...
  9. Bummer - sorry about that. :(

    Bummer - sorry about that. :(
  10. What about unchecking the AllowBigSelection...

    What about unchecking the AllowBigSelection option on the general tab of the custom properties, or:


    MSHFlexGrid1.AllowBigSelection = False
  11. Replies
    4
    Views
    394

    You could use the MouseDown or MouseUp events of...

    You could use the MouseDown or MouseUp events of the grid. This will tell you which mouse button was pressed, and will provide X,Y coordinates that you could calculate row & column from.
  12. Replies
    9
    Views
    510

    You can run VB code at runtime - but only when...

    You can run VB code at runtime - but only when your program is running within the IDE.

    Try searching these forums for
    EbExecuteLine
  13. Replies
    6
    Views
    4,852

    You'll have a problem with this code if there are...

    You'll have a problem with this code if there are any other controls on the form as pressing the tab key will just move to the control with the next TabIndex.

    If you have other controls and still...
  14. Replies
    3
    Views
    2,564

    Thanks for the reply Duncan :D I had...

    Thanks for the reply Duncan :D

    I had originally used the Sleep API to get reasonably smooth scrolling, but some users had mentioned that scrolling could speed up when the cursor was over the...
  15. Replies
    3
    Views
    2,564

    There must be someone out there with some...

    There must be someone out there with some experience in this area? :(
  16. Replies
    3
    Views
    2,564

    Callbacks and timeSetEvent

    I've written a ticker program that scrolls text across the form. It currently does this by moving pictureboxes within a container picturebox. It uses the Sleep API to provide a reasonably smooth...
  17. Replies
    3
    Views
    475

    If your first row (row=0) is a fixed row, then...

    If your first row (row=0) is a fixed row, then perhaps this is why the control is placing you on row=1.
  18. Replies
    1
    Views
    343

    Anyone? :(

    Anyone? :(
  19. Replies
    1
    Views
    343

    My VB program stops tooltips???

    I've got a ticker program that uses the Sleep API to smoothly scroll text. I've discovered that when it is running, it prevents other programs from displaying their tooltips. For example if you...
  20. LoadGrid and SaveGrid are not part of the...

    LoadGrid and SaveGrid are not part of the standard flexgrid that comes with VB6. Are these not perhaps features or the FlexGrid Pro version of the control?
  21. Replies
    1
    Views
    405

    You need to add a reference to Microsoft Excel...

    You need to add a reference to Microsoft Excel 8.0 Object Library. NB the number will differ depending on which version of Excel that you have installed.
  22. Add a reference to the Microsoft Scripting...

    Add a reference to the Microsoft Scripting Runtime object library (scrrun.dll), or late bind it:


    Dim fs As Object
    Set fs = CreateObject("Scripting.FileSystemObject")
  23. Replies
    1
    Views
    1,398

    Check out this page on the Microsoft...

    Check out this page on the Microsoft Knowledgebase: (PRB: Compiling a VB Project Generates "Fatal Error C1083" (Q193000) ).
  24. Replies
    9
    Views
    511

    Thanks - it's nice to get a reply! :D

    Thanks - it's nice to get a reply! :D
  25. Replies
    9
    Views
    511

    Private Sub fg_Click() With fg2 ...

    Private Sub fg_Click()

    With fg2
    .row = fg.row
    .col = 0
    .ColSel = .Cols - 1

    ' Make sure highlighted row is visible
    If Not...
  26. Replies
    9
    Views
    511

    You can use the RowIsVisible property which will...

    You can use the RowIsVisible property which will return True/False in this situation. You could then get make the grid scroll until the property returned True.
  27. Replies
    9
    Views
    511

    Try this: Private Sub fg1_Click() With...

    Try this:

    Private Sub fg1_Click()
    With fg2
    .row = fg1.row
    .col = 0
    .ColSel = .Cols - 1
    End With
    End Sub
  28. Replies
    8
    Views
    751

    I've just tried the following code and it...

    I've just tried the following code and it downloaded the gif without problem:


    Private Declare Function URLDownloadToFile Lib "urlmon" Alias "URLDownloadToFileA" (ByVal pCaller As Long, ByVal...
  29. Thread: VB and excel

    by rudgej
    Replies
    3
    Views
    562

    Perhaps something on this page...

    Perhaps something on this page may help.
  30. Replies
    2
    Views
    431

    You could use the RowSel and ColSel properties. :)

    You could use the RowSel and ColSel properties. :)
  31. Replies
    2
    Views
    435

    Thanks for the reply. :) I've tried...

    Thanks for the reply. :)

    I've tried PostMessage (and also DefWindowProc) - unfortunately, both new APIs behave in the same manner.

    It is like my form has to be visible in some way to before...
  32. Thread: Novell Networks

    by rudgej
    Replies
    3
    Views
    365

    ...or more specifically, perhaps the broadcast...

    ...or more specifically, perhaps the broadcast ActiveX control (http://developer.novell.com/ndk/doc/samplecode/ocx_sample/index.htm).
  33. Thread: Novell Networks

    by rudgej
    Replies
    3
    Views
    365

    Check out the NDK and samples at...

    Check out the NDK and samples at http://developer.novell.com/. It is certainly possible using their stuff.
  34. Replies
    2
    Views
    435

    SendMessage puzzler

    I've written an application to sit in the system tray, and start the screensaver when its tray icon is left-clicked. A right-click on the icon will show a popup menu where the option to run the...
  35. Replies
    3
    Views
    393

    Bump :D Help?

    Bump :D

    Help?
  36. Replies
    3
    Views
    393

    I've tried the Oracle ODBC tester, and this can...

    I've tried the Oracle ODBC tester, and this can connect ok using the DSNs. Unfortunately no clues appeared...
  37. Replies
    3
    Views
    393

    Oracle 8 ODBC problem

    I've got a VB program that uses ADO 2.6 to connect to Oracle tables on a Unix system. This was working fine with Oracle 7 drivers installed. It also worked when Oracle 8 drivers were installed...
  38. Replies
    9
    Views
    617

    Me too!:D

    Me too!:D
  39. Replies
    9
    Views
    617

    I was referring to their API-Guide. Check that...

    I was referring to their API-Guide. Check that you've got the latest version (3.6.630), and on the left you've got the option to display a list of APIs alphabetically, or sorted by group. Select an...
  40. Replies
    9
    Views
    617

    you could try http://www.allapi.net/. They also...

    you could try http://www.allapi.net/. They also have some neat software for downloading that lists a lot of APIs, along with declarations and example code.
Results 1 to 40 of 282
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width