Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.
If you query only returns one record, you could do it this way:
Dim con as ADODB.connection
Dim rst as New ADODB.recordset
Dim strSQL as string
Set con = application.currentproject.connection
strSQL = "Your SQL"
With rst
.open strSQL, con, adopenstatic, adlockreadonly...
Hello,
Does anyone know how to access the SQL of a stored query using ADO?
The DAO way to do it is:
Dim DB As DAO.Database
Dim strSQL As String
Set DB = CurrentDB
DB.QueryDefs("Some_Query").SQL = strSQL
DB.Close
What's the ADO equivalent of this?
Thanks!
I've got the MailMerge working but I want it to run the merge and then automatically save the file.When I run the command
ActiveDocument.MailMerge.Destination = wdSendToNewDocument
how can I make the new document the active document so I can run the ActiveDocument.SaveAs command?
Thanks...
Hello,
I'm trying to write a subroutine that will update the usermodified field when a person clicks the save user button on a form. However, I keep getting the error: "Object variable or With block variable not set".
The table name is Users, the field I want to modify is UserModified, the...
It's been about 9 years since I programmed in C++ but try changing it to this:
/* This is a program i created by my self*/
#include <stdio.h>
main()
{
char person_fname[25];
int person_age;
/*long int my_age;*/
printf("This program will tell you if you are older or younger than the...