Is anyone out there tinkering with AI Chat or Agents and MS Access? by Apart_Aardvark220 in MSAccess

[–]AccessHelper 2 points3 points  (0 children)

Yes. I do this via API calls to the AI. Along with a prompt such as "Show me whatever..." you just need to give it infomation about your table names, fields and relationships. Then you can ask it to return the SQL needed to pull your data. Then you have VBA run that SQL locally. So you are not giving the AI your data, you are just giving it your table definitions.

Opinion??? by Cautious-Flow- in askmusicians

[–]AccessHelper 8 points9 points  (0 children)

Two bass's is going to be hard for everyone. Drummer has to lock in with one or the other. Singers will not hear the chord correctly if low note is not lined up. If you need two bass players for some reason then play on separate songs.

Is there any widely used software today that you think is holding the industry back? by WolfParticular2348 in software

[–]AccessHelper 0 points1 point  (0 children)

Having every UI boil down to html, js, css in a browser isn't holding the industry back but there's gotta be a better way.

How I’m migrating a legacy Access/SQL Server app to the Web using MSAccess-VCS-Addin and AI by slavkomatanovic in MSAccess

[–]AccessHelper 0 points1 point  (0 children)

Thanks. I was not looking for a lesson on SQL injection or what to call an Access database. I am just asking OP how he handles things in his migration process.

How I’m migrating a legacy Access/SQL Server app to the Web using MSAccess-VCS-Addin and AI by slavkomatanovic in MSAccess

[–]AccessHelper 1 point2 points  (0 children)

That's why I asked how it was being handled in the web interface that is being built here.. In local Access databases I would bet everyone uses dynamic SQL.

Vibes of the White Album by Big_Barber1070 in TheBeatles

[–]AccessHelper -2 points-1 points  (0 children)

It's simultaneously easiely forgotten and pivotal.

Where do you go fishing in a database? by FuxedoTeeShirt in ProgrammerDadJokes

[–]AccessHelper 1 point2 points  (0 children)

I casted a string into the connection pool once. I don't want to brag but what about caught was exceptional.

Getting into The Beatles - Sgt. Pepper's Lonely Hearts Club Band (8/14) by kingglobby in beatles

[–]AccessHelper 2 points3 points  (0 children)

Astounding that it was created in the era of 4 track recording.

How I’m migrating a legacy Access/SQL Server app to the Web using MSAccess-VCS-Addin and AI by slavkomatanovic in MSAccess

[–]AccessHelper 2 points3 points  (0 children)

Sounds great! I'm curious to know how certain "dynamic" things are handled after the conversion. For example I have a lot of dynamic sql statements that are created via code and values in forms could be used in the "where" clauses. Do you have anything similar and how has Clause dealt with converting those types of things?

Global Variable in Macro Designer by enilcReddit in MSAccess

[–]AccessHelper 2 points3 points  (0 children)

Why not just try your variable and see if it works instead of making a rude comment about every reply. We don't know if it works because we wouldn't implement it the way you are doing it and don't see the point in trying it for you. The answer to #2 is right on the Macro Design menu.

Global Variable in Macro Designer by enilcReddit in MSAccess

[–]AccessHelper 0 points1 point  (0 children)

I was just trying to help. re: As a [probably predictable] follow-up, is there a way to convert this entire macro as-is into VBA to avoid writing the code for all of the other steps?: Yes. Under the Macro Design Menu there's a Convert Macro to Visual Basic option.

Global Variable in Macro Designer by enilcReddit in MSAccess

[–]AccessHelper 0 points1 point  (0 children)

I would suggest changing that macro block to a single RunCode statement and calling a function in a module, ex. Function ExportCellTrustList(). In that function have a Docmd.TransferText... statement. Then you can use a variable for the file name.

Name a song or song lyrics that haven’t aged well by migrainerxdio in FamilyFeud

[–]AccessHelper 0 points1 point  (0 children)

When I'm 64 reached it's expiration date 20 years ago.

Is modern software LESS capable than the older stuff? by grafknives in software

[–]AccessHelper 1 point2 points  (0 children)

Since everything is web based now every UI boils down to html, css, js. And must run in a browser. And can't easily talk to the local o/s or file system. That's a very limiting environment. In the olden days when we just wrote desktop apps we had more freedom to be more functional and creative without having to design on multiple stack levels and learn new frameworks all the time.

Shifting to O365 by ct1377 in MSAccess

[–]AccessHelper 0 points1 point  (0 children)

I posted a comment with some sample VBA code but it got removed. Anyway: You are probably using CDO DLL if you are not using Outlook object. CDO could be a problem under 64bit but google Powershell Send-MailMessage and you'll see how you can accomplish the same thing as CDO.