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 derfloh 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: *

  1. strongm

    THIS is new for me

    Yep - can't find a workable Msxml2.XMLHTTP solution to this currently
  2. 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
  3. 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 ...
  4. 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...
  5. 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.
  6. strongm

    Ecel Macros not working with V 2505

    I am not seeing it, but I'm on 18827.20102
  7. 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)
  8. 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...
  9. strongm

    delete ll picturebox in a form

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

    delete ll picturebox in a form

    Seriously? ok, here's one way If Left(myitem.Name, 4) = "PIC7" ... Or If myitem.Name = "PIC7" ...
  11. 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...
  12. 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...
  13. strongm

    copy and paste picture box

    I understand fine. But the reason I am confused is that I saw you had a solution to the lotto card on eileen's lounge, and assumed that was what you were posting here. Why twould you revert to a non-working, poor version?
  14. strongm

    copy and paste picture box

    ...= frm.Controls.Add("VB.PictureBox", "TempPicBox") With picBox .Visible = False .AutoRedraw = True .Width = nWidthPixels * Screen.TwipsPerPixelX .Height = nHeightPixels * Screen.TwipsPerPixelY End With ' Get the form's device context hDCForm...
  15. strongm

    copy and paste picture box

    What are you trying to achieve here?
  16. strongm

    VB classic graphics

    Bitblt is a Win32 GDI API call, and thus is perfectly usable in VB.NET (although using syst4em.drawing's methods for rendering bitmaps may often prove more useful, albeit slower) And bitmasking is also pretty trivial Alpha masking is slightly harder, but only slightly. This isn't a vb.net...
  17. strongm

    Hash encryption 64 bit

    (and of course if you want a proper digest, then this function may help Public Function hexdigest(bytearray) As String Dim lp As Long For lp = 0 To UBound(bytearray) hexdigest = hexdigest & Right("00" & Hex(bytearray(lp)), 2) Next End Function )
  18. strongm

    Hash encryption 64 bit

    Try the following: Public Function Hashit(strPassword As String) As String Dim oEnc As Object Dim Source() As Byte Source = StrConv(strPassword, vbFromUnicode) Set oEnc = CreateObject("System.Security.Cryptography.MD5CryptoServiceProvider") 'or SHA256Managed or...

Part and Inventory Search

Back
Top