Search found 222 matches
- 20 Nov 2019, 04:24
- Forum: Ask For Help
- Topic: ADOSQL stopped working MS-Office2010 SP2 Topic is solved
- Replies: 1
- Views: 70
Re: ADOSQL stopped working MS-Office2010 SP2 .. solved Topic is solved
Hi, problem is solved, ADOSQL works like it should. The cause was Microsoft Service-Pack roll out for KB4484127 which was distributed at 15. November 2019 - that stopped all writings in Access-Databases from 2010, 2013 and so on. Deinstallation of the KB4484127 did it. The SQL-Error is "Query '' is ...
- 19 Nov 2019, 15:17
- Forum: Ask For Help
- Topic: ADOSQL stopped working MS-Office2010 SP2 Topic is solved
- Replies: 1
- Views: 70
ADOSQL stopped working MS-Office2010 SP2 Topic is solved
Hi, I'm using ADOSQL (exactly: " ADOSQL v5.04L - By [VxE]") since years and everything was fine. But now, since a few days, I've serious troubles on all of my computers (Win10 1903 or 1909 and Win7 latest release). It seems to be an issue with that Microsoft-Office2010 Service-Pack 2 (published at 1...
- 19 Aug 2019, 10:28
- Forum: Ask For Help
- Topic: Retrieving Senders Name from Outlook Message Topic is solved
- Replies: 9
- Views: 479
Re: Retrieving Senders Name from Outlook Message Topic is solved
Hi, I suggest to use COM accessing Email-Properties from Outlook. That works for me (Outlook 2010) oOutlook := ComObjActive("Outlook.Application") oInspector := oOutlook.Application.ActiveInspector Mail := oInspector.CurrentItem ; getting current email object ; Email-properties-list ; https://msdn.m...
- 24 Jul 2019, 08:34
- Forum: Ask For Help
- Topic: How to display a countdown of 60 seconds in Gui? Topic is solved
- Replies: 3
- Views: 219
Re: How to display a countdown of 60 seconds in Gui? Topic is solved
Hi, a different runnig example (shows a green label left top of your screen) #SingleInstance force ; runtime-mearsuring StartTime := A_TickCount ; Start that Progress-Label settimer, showprogress1, 1000 ; your program whatever it does ; your program whatever it does ; for demonstration ... sleep, 10...
- 27 May 2019, 10:16
- Forum: Ask For Help
- Topic: Control AutoCAD Command Line with Com obj? Topic is solved
- Replies: 2
- Views: 317
Re: Control AutoCAD Command Line with Com obj? Topic is solved
Hi, this http://entercad.ru/acadauto.en/ should help you. Here a working example ; Open Autocad, or in my case Bricscad with a (new) drawing in advance #singleinstance force ;Myapp := ComObjActive("AutoCAD.Application") Myapp := ComObjActive("BricscadApp.AcadApplication") mydoc := myapp.activedocume...
- 31 Mar 2019, 05:59
- Forum: Ask For Help
- Topic: Ideas for AHK Proof of Concept
- Replies: 9
- Views: 850
Re: Ideas for AHK Proof of Concept
Hi almost everything is possible in an office enviroment (eg. we are in civil engineering domain), some examples we solved with AHK: internal messages from pc to pc with reporting database in background central address management, database based download links for customers (we mark files in totalco...
- 03 Feb 2019, 05:11
- Forum: Ask For Help
- Topic: FTPv2, Connection stays open, wont close
- Replies: 0
- Views: 287
FTPv2, Connection stays open, wont close
Hi, I tried to use FTPv2.ahk as intended, but my FTP-connection wont close #include FTPv2.ahk server := "ftp.xxxx.xx" Username := "jxx" Password := "Laxxxxxx" ftp1 := new FTP() ftp1.Open(Server, UserName, Password) ? TTip("Connected to FTP") : Quit(ftp1.LastError) sOrgPath := ftp1.GetCurrentDirector...
- 13 Jan 2019, 14:02
- Forum: Ask For Help
- Topic: Outlook .. catch SEND event
- Replies: 2
- Views: 518
Re: Outlook .. catch SEND event
I think, this ItemSend can be the right one.
My thoughts went in the event, which is named here as "send" on the left pane
https://docs.microsoft.com/de-de/office ... litem.open
J.B.
My thoughts went in the event, which is named here as "send" on the left pane
https://docs.microsoft.com/de-de/office ... litem.open
J.B.
- 13 Jan 2019, 10:05
- Forum: Ask For Help
- Topic: Outlook .. catch SEND event
- Replies: 2
- Views: 518
Outlook .. catch SEND event
Hi, I know how to catch Outlook (2010, 32-bit) NEW-Event a so called " Application-Event ", which works #singleinstance force #persistent olApp := ComObjActive("Outlook.Application") ComObjConnect(olApp, "EventApp_") EventApp_NewMail() { MsgBox % NEW MAIL } return But how to catch eg that "Send"-Eve...
- 11 Jan 2019, 16:54
- Forum: Ask For Help
- Topic: Outlook .. Propertyaccessor, setting property
- Replies: 1
- Views: 359
Outlook .. Propertyaccessor, setting property
Hi, I'm dealing with my Outlook2010 Emails by this code #SingleInstance force ; get selected-emails in Outlook-Explorer Selected_Emails := COMObjActive("Outlook.Application").ActiveExplorer.Selection counter := Selected_Emails.count ; loop through Eplorer-selected-mails loop, %counter% { e_item:=Se...
- 03 Jan 2019, 04:37
- Forum: Ask For Help
- Topic: Setting NIC-Speed by AHK
- Replies: 0
- Views: 293
Setting NIC-Speed by AHK
Hi, I've a certain Win10 PC with a Realtek-Nic - and there is no pattern to identify and it is not caused by my HP/Aruba J9773A-Switches connected - this NIC's Speed sometimes, randomly falls back from 1,00 Gbit/sec to 100 Mbit/sec. Detecting current NIC Speed is no issue with WMI and AHK. I need 1,...
- 22 Dec 2018, 08:31
- Forum: Ask For Help
- Topic: 32-Bit AHK, COM 64-bit possible
- Replies: 2
- Views: 395
Re: 32-Bit AHK, COM 64-bit possible
the vice-versa-problem.
I've a 32-bit access-runtime installed which works wich my ahk32-code.
Now I'm challenged to change to 64-bit relase of Office2013 because a sewage-drawing-program wants to use a 64-bit component out of it.
All my installed ms-office's are 32-bit
regards
JB
I've a 32-bit access-runtime installed which works wich my ahk32-code.
Now I'm challenged to change to 64-bit relase of Office2013 because a sewage-drawing-program wants to use a 64-bit component out of it.
All my installed ms-office's are 32-bit
regards
JB
- 21 Dec 2018, 14:47
- Forum: Ask For Help
- Topic: 32-Bit AHK, COM 64-bit possible
- Replies: 2
- Views: 395
32-Bit AHK, COM 64-bit possible
Hi,
is it possible to communicate from AHK32-Bit with a 64-bit-program via Com, e.g. Ofiice2013 or higher ?
regards
JB.
is it possible to communicate from AHK32-Bit with a 64-bit-program via Com, e.g. Ofiice2013 or higher ?
regards
JB.
- 10 Dec 2018, 08:48
- Forum: Ask For Help
- Topic: Protecting AHK code against piracy
- Replies: 17
- Views: 2442
Re: Protecting AHK code against piracy
Hi, if necessary I put (flipped) harddisk-serial in that ahk-program-code to avoid running that script on other machines as intended limit running that ahk-code depending on machine-date e.g. til end of 2019 encrypt ahk-code by https://autohotkey.com/boards/viewtopic.php?t=42494 compile that ahk-cod...
- 18 Nov 2018, 01:30
- Forum: Ask For Help
- Topic: Retrieve name of most-recently launched script
- Replies: 2
- Views: 446
Re: Retrieve name of most-recently launched script
Hi, I'm not sure if it is what you are looking for, but if those processes you wanna know when they are startet, get startet by yourself, there is such a possiblity. a) you start each of thoses processes with a timestamp as (actually unused, unprocessed) startparameter b) in your questioning-ahk-scr...
- 04 Nov 2018, 08:27
- Forum: Ask For Help
- Topic: Runwait comspec problem escaping characters
- Replies: 3
- Views: 512
Re: Runwait comspec problem escaping characters
Hi, that does the trick: ; ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 "F:\Audio.mp3" shellstring:="ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 " chr(34) "F:\Audio.mp3" chr(34) run, %comspec% /c %shellstring%,,hide D...
- 02 Sep 2018, 01:59
- Forum: Ask For Help
- Topic: Explorer: get folder size
- Replies: 1
- Views: 326
Re: Explorer: get folder size
Hi, we are doing the same thing since years on your file server for getting each-projects-folder size every night. Therefore I'm using a small tool named diskuse.exe , to find here https://ss64.com/nt/diruse.html . It is from 2011, on our w2k8r2-server and on win7 and win10 clients it works without ...
- 14 Jul 2018, 01:11
- Forum: Ask For Help
- Topic: How to change pdf printer page size
- Replies: 2
- Views: 507
- 03 Apr 2018, 00:06
- Forum: Ask For Help
- Topic: Controlling AutoCAD R14 with AHK
- Replies: 14
- Views: 1824
Re: Controlling AutoCAD R14 with AHK
Hi, first of all, we are using different Versions of Autocad (Ver 2014, 2016 and now 2018) on Win10 and Win7 and from our point of view, they work without any special modification requirements on both OS's. Furthermore our external Autocad-supporters never ever mentioned that it is required to modif...
- 02 Apr 2018, 12:46
- Forum: Ask For Help
- Topic: CPU Temp that works
- Replies: 6
- Views: 1387
Re: CPU Temp that works
Hi, google-ing I found that this wmic /namespace:\\root\wmi PATH MSAcpi_ThermalZoneTemperature get CriticalTripPoint, CurrentTemperature does the trick when you enter it in your console Window. Source: https://stackoverflow.com/questions/45736193/how-can-we-get-a-cpu-temperature-through-wmi Thats a ...