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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by strongm

  1. strongm

    msflexgrid with rectangle on entire row

    It is built-ion behaviour for an msflexgrid, as previously advised. Apart from picking the right settings for the msflexgrid you don't have to do anything. Here's an example of setting up a demo grid: Option Explicit Private Sub Form_Load() Dim i As Integer ' Initialize MSFlexGrid...
  2. strongm

    msflexgrid with rectangle on entire row

    As I recall, I pointed out that the requirement you had almost exactly described the existing behaviour as an msflexgrid. So perhaps you can describe in more detail just exactly what you require that the msflexgrid does not do. And I'll repeat the caution I raised then - try not to change the...
  3. strongm

    THIS is new for me

    Yep - can't find a workable Msxml2.XMLHTTP solution to this currently
  4. strongm

    VB6 Successor

    QBasic? One of the first Basic's I used as a professional programmer many (many) moons ago Yep, still around - e.g. https://qbasic.net/en/qbasic-downloads/compiler/qbasic-compiler.htm
  5. strongm

    VB6 Successor

    C and C++ programmers said the same thing about various earlier iterations of basic. It's the programmers equivalent of the console wars ...
  6. strongm

    VB6 Successor

    >VB.net but Microsoft is dumping that too. Well, not according to Microsoft. But they are no longer 'evolving' the language, that is to say they are not adding new syntax to define types that use new .NET runtime features, but it will be able access .NET APIs and types built on those new .NET...
  7. strongm

    THIS is new for me

    Yes, so Cookie-related. MSXML has some limitations on handing cookies via automation. Can you please provide your actual code, rather than a screen shot, as I have some thoughts but I'm not going to type in your code from scratch.
  8. strongm

    Ecel Macros not working with V 2505

    I am not seeing it, but I'm on 18827.20102
  9. strongm

    Ecel Macros not working with V 2505

    Perhaps you could provide examples of code that is not running as you expect for others to test (along with a comment of what you expect the code to actually do that it is not doping)
  10. strongm

    printing picturebox to the default printer

    > i can have a series of picturebox on a form Is this still your lotto project? And your insistence on overlaying various additional pictureboxes to show the selections? Despite my favour for the mshflexgrid solution (really, so much easier for a whole bunch of reasons), my solution in...
  11. strongm

    delete ll picturebox in a form

    Again, seriously?! Me.Controls.Remove ("PIC7")
  12. strongm

    delete ll picturebox in a form

    Seriously? ok, here's one way If Left(myitem.Name, 4) = "PIC7" ... Or If myitem.Name = "PIC7" ...
  13. strongm

    delete ll picturebox in a form

    Continuing with your poorly though out solution, eh? Well, hers example code for doing precisely what you have asked for (plus some minor alternatives) Private Sub Command1_Click() Dim picbox Set picbox = Me.Controls.Add("VB.PictureBox", "PIC1") picbox.Move 0, 0, 100, 100...
  14. strongm

    copy and paste picture box

    > I don't like the use of flexgrid It's the MSHFlexgrid, which is a slightly later contyrol - but why don't you like it? For this challenge it is ideal. Does ALL the heavy lifting. >I have doubts if I take the betting slip to the tobacconist it will not be read correctly Why? >I think that...

Part and Inventory Search

Back
Top