Search results

  1. amorosik

    Hi...

    Yes, very clear Oh no, don't apologize, I'm really interested in understanding these 'sayings/euphemism' I think it's a useful knowledge in common speech And thank you very much for the patient explanation
  2. amorosik

    Hi...

    "...still kicking for now..." Explain please :)
  3. amorosik

    Hi...

    Welcome aboard
  4. amorosik

    Sub vs Function - who win?

    Premise: an entire program could be composed exclusively of Functions, with absolutely no Subs With a Function, you achieve the same result of a Sub, and furthermore, should you ever need to return values, the code is already ready; just insert the type of value to return at the end of the first...
  5. amorosik

    Using AI to speed up development

    If needed, I can put them on Github It's even better if they're just on my local PC What I still can't do is allow Claude to read a series of files physically present on any PC
  6. amorosik

    Using AI to speed up development

    Ok but how you say to Claude "..the file is here.." in the Github repo ?
  7. amorosik

    Using AI to speed up development

    Ah ok, but you think that an entire project, for example 50-100 Mbyte, can be analyzed/correct/revised?
  8. amorosik

    Using AI to speed up development

    Yes, CoPilot and Visual Studio are tightly integrated, and the combination is truly effective Unforunately, we alway have to be last with access
  9. amorosik

    Using AI to speed up development

    Can you upload 50-100 Mbyte of files?
  10. amorosik

    Using AI to speed up development

    What system did you use (Claude Antropic, ChatGpt openAi, etc.)? How did you provide the code? (All in a directory, everything in a zip file, etc...) How was the modified code returned?
  11. amorosik

    Using AI to speed up development

    Claude, ChatGpt, CoPilot I currently only use them with their text prompt, for functions, SQL queries, and similar I'd like to understand how to have complete projects reviewed for anomalies or to get recommendations for improvements I mean, once an entire project has been extracted with one of...
  12. amorosik

    Solved How to set up unique customer codes based on customer types

    I believe the ONLY way to have a valid data pair is to program the database so that it CANNOT accept duplicate pairs, simply by inserting a unique index that includes the customer code and customer type This is because any customer-code/customer-type read you perform could have just been...
  13. amorosik

    How to refactoring an Access project with AI - for example with LM Studio ?

    I'm testing LM Studio and the various available templates LM Studio also offers the ability to be controlled externally via API, and I believe this opens the door to a wide range of uses Suppose we wanted to run an analysis to identify any errors or areas for improvement for a large project, say...
  14. amorosik

    Windows server like workstation o.s. - any advantage?

    I read that some developers utilize Windows Server like o.s. for the main working station Wich advantages could this choice bring versus the classic Win10/Win11 pro/ent?
  15. amorosik

    32 bit Access vs 64 bit Access - HELLLLLP!!!!

    I had the exact same problem a few months ago In a couple of days, I fixed all the calls to the various APIs used to make them compatible with a 64-bit environment The only real problem was modifying the MsWinsck.ocx library This library doesn't exist in a 64-bit development environment I had to...
  16. amorosik

    How do i limit the number of connectable clients?

    Actually, I see now that it's not that simple The information returned is insufficient to understand which program initiated the connection I mean, there are several fields, one of which is REMOTE_ADDRESS, another is REMOTE_PROCESS But even reading these fields, I can't tell which program...
  17. amorosik

    How do i limit the number of connectable clients?

    Ok, the query below seem to solve the problem SELECT MON$ATTACHMENT_ID, MON$USER, MON$REMOTE_ADDRESS, MON$REMOTE_PROCESS, MON$REMOTE_PID, MON$TIMESTAMP FROM MON$ATTACHMENTS ORDER BY MON$TIMESTAMP;
  18. amorosik

    How do i limit the number of connectable clients?

    How can I check that X workstations are connected to the database server and block the X+1 workstation that tries to connect?
  19. amorosik

    How to interface to Ebay ecommerce system?

    Yes, thank you But the point isn't HOW to communicate, it's what commands can be sent/received and their correct syntax Then i need the official documentation
Back
Top Bottom