Recent content by pdanes

  1. P

    Win64 version crashing

    I got everything working, tested it all on every machine I have available, decompiling and recompiling on every machine, and testing that freshly compiled version on every other machine. All worked perfectly everywhere, so I installed it on the customer's machine and returned it to him. Customer...
  2. P

    Win64 version crashing

    Well, then he's better at this than I am. I looked at all those things, and tried all sorts of things, and failed. It's hard to make much progress when you don't really understand what the calls do, what the exact problem is, and every failed attempt crashes the app. Xavier is much better, or...
  3. P

    Win64 version crashing

    Well, I tried the complete package and it works perfectly on my machine, so now I need to get to work porting the code into my app. Maybe I'll even figure out along the way exactly what the problem is with my current setup. Many thanks - if you ever make it to Prague, the beers are on me.
  4. P

    Win64 version crashing

    Jesus - WHERE did you get this? I'm going to try this right away. If it works, I am forever in your debt. Thank you.
  5. P

    Win64 version crashing

    1. Okay, I didn't realize that had been changed, but it's still not many for my purposes in this app. There are 679 squares in the grid that can potentially contain a symbol, and some instances will have most or maybe even all of them filled. And that is even before the lines to form the grid...
  6. P

    Win64 version crashing

    Some stuff you cannot, some you can. But what I'm running into crashes either way, although of course, I cannot tell if it might be crashing differently when I step it. When I step it, the crash comes at the point of calling the timer routine, and it crashes the same way regardless of whether I...
  7. P

    Win64 version crashing

    Thank you, I'll see what I can get done with that converter. Back to work. I admit, I had not thought of using Access's built-in stuff. The PictureBox class does a great deal, but I don't need most of the functionality that Stephen put into it, and have removed the code that never got called. I...
  8. P

    Win64 version crashing

    Yes, that was me. I have been working on this for a while. The problem cropped up, then became irrelevant because of some other circumstances, but now it's serious. I did look at those links, both back then and again recently, when this showed up again. They do provide a great deal of...
  9. P

    Win64 version crashing

    Well, maybe, but that is where it crashes. I do have some custom images on the ribbon that serves that form. There are three principal forms in the app, and the one using the picture box class also has some custom images in the ribbon - the only one of the three to have either. But when I bypass...
  10. P

    Win64 version crashing

    Who is that someone you think you know?
  11. P

    Win64 version crashing

    I'm not sure about all that. There is a good deal of stuff in his code that I flat do not understand. This is one of those things. I have no idea why I need a timer at all, when what I am doing is painting a screen image, but I doubt he put it in just for a lark. The code works in 32-bit...
  12. P

    Win64 version crashing

    Why should it be public? Lebans wrote it as private and it has been working that way without a hitch for at least fifteen years. In any case, I just tried making it so, and no difference - still crashes. And I am trying very hard to track down all the instances of data types, but nothing yet...
  13. P

    Win64 version crashing

    Ah, thank you. It is, though - it's the very next routine after this AutoShutDown. Private Sub TimerProc(ByVal hWnd As Long, ByVal uMsg As Long, ByVal idEvent As Long, ByVal dwTime As Long) ShutDownGDIP End Sub One of the things I've tried is changing the parameters here to LongPtr and...
  14. P

    Win64 version crashing

    If you mean this: tVarTimer(lCounter) = SetTimer(0&, 0&, 5000, AddressOf TimerProc)then that is is a regular module. I don't know what a static class would be.
  15. P

    Win64 version crashing

    Yes, I suspect it is that. I've put in conditional compilations for 64, but no luck yet. It's hard to work on, because every failed attempt crashes the app, and it's kind of a pig to start. Some of the code is in a class module, some in a regular.
Top Bottom