Search found 124 matches

by jpginc
12 May 2020, 11:00
Forum: Scripts and Functions (v1)
Topic: Windows 10 Desktop manager
Replies: 31
Views: 32409

Re: Windows 10 Desktop manager

I'm glad you are enjoying it :-) it's over 3 years since I put any effort into this code and I'm kinda surprised it still works lol
by jpginc
12 Dec 2017, 23:06
Forum: Scripts and Functions (v1)
Topic: Tiling window manager
Replies: 2
Views: 5343

Re: Tiling window manager

hmm i have seen that before and dismissed it as not quite what i was looking for. looking at it again i think it might be what i'm looking for...I'll check it out thanks
by jpginc
11 Dec 2017, 20:27
Forum: Scripts and Functions (v1)
Topic: Tiling window manager
Replies: 2
Views: 5343

Tiling window manager

Hi guys, I use xmonad or i3 on my linux machines and i don't believe anything exists that does the same function in windows. I have started a little project to try to fill this hole and have a proof of concept script working you can get it here: https://github.com/jpginc/windowsWindowTilingManager I...
by jpginc
06 Sep 2017, 18:57
Forum: Ask for Help (v1)
Topic: Guiclose lable for any gui
Replies: 5
Views: 1858

Re: Guiclose lable for any gui

perfect thanks
by jpginc
06 Sep 2017, 07:37
Forum: Ask for Help (v1)
Topic: Guiclose lable for any gui
Replies: 5
Views: 1858

Guiclose lable for any gui

I'm sure I've seen it document somewhere but i can't find it.

How do I have a guiclose label that fires for any gui (i'm using multiple named GUIs and don't want to have multiple lables)
by jpginc
31 Aug 2017, 18:06
Forum: Ask for Help (v1)
Topic: How to keep leading 0s when pasting in excel Topic is solved
Replies: 7
Views: 2376

Re: How to keep leading 0s when pasting in excel Topic is solved

When you copy a cell in excel with a leading apostrophe, the leading apostrophe isn't copied onto the clipboard. Your code appears correct to me, for example the msgbox here shows 1 (true). selection := "01/02/2017" expected := "01/02/2018" pos := 1 while pos := RegExMatch(selection, "(19|20)\d{2}",...
by jpginc
23 Aug 2017, 07:04
Forum: Ask for Help (v1)
Topic: Automate Wizard Installation
Replies: 31
Views: 11402

Re: Automate Wizard Installation

still here ;-)
by jpginc
02 Jan 2017, 18:16
Forum: Ask for Help (v1)
Topic: Save link as IE ComObject
Replies: 10
Views: 3005

Re: Save link as IE ComObject

Is it windows 10 pro? The laptop i'm working on is home edition and it doesn't work but my Pro edition does work... The embedded browser works though so i'm happy
by jpginc
02 Jan 2017, 02:35
Forum: Ask for Help (v1)
Topic: Save link as IE ComObject
Replies: 10
Views: 3005

Re: Save link as IE ComObject

hmmm strange. still getting the login html. Are you on windows 10? (I am)
by jpginc
02 Jan 2017, 02:01
Forum: Ask for Help (v1)
Topic: Save link as IE ComObject
Replies: 10
Views: 3005

Re: Save link as IE ComObject

If i change the getTransactionAsCSV function in the GoodBudgetAPIClass to: getTransactionsAsCSV() { notify("Exporting existing budget, please wait...") HTTPRequest("https://goodbudget.com/transactions/export", data := "") Clipboard := data MsgBox % data ExitApp notify("") return budget } or getTrans...
by jpginc
02 Jan 2017, 01:19
Forum: Ask for Help (v1)
Topic: Save link as IE ComObject
Replies: 10
Views: 3005

Re: Save link as IE ComObject

The Msxml2.XMLHTTP example doesn't work because it doesn't send the session cookies with it (I have checked the stay signed in for 2 weeks button).

The HTTPRequest code doesn't exist in https://autohotkey.com/board/topic/6798 ... nicodex64/ Do you have a link?
by jpginc
01 Jan 2017, 19:04
Forum: Off-topic Discussion
Topic: Japanese TV
Replies: 2
Views: 3330

Japanese TV

Hi Guys, I have a hypothetical question for you, as I would obviously never do anything that was Illegal and I'm not sure of the legality of my hypothetical question. Say you had a house in Japan and wanted to get Japanese TV when you were in another country, how would you do it? I can leave a compu...
by jpginc
01 Jan 2017, 18:56
Forum: Ask for Help (v1)
Topic: Save link as IE ComObject
Replies: 10
Views: 3005

Save link as IE ComObject

Hi Guys, I'm trying to automate getting transactions from my bank into my budget app. You can see the project here: https://github.com/jpginc/budgetHelp I'm trying to extract all the transactions that I have already added to the budget app by using GoodBudget's export as csv functionality. Is there ...
by jpginc
02 Nov 2016, 02:34
Forum: Ask for Help (v1)
Topic: DLL LoadLibrary call fails
Replies: 6
Views: 4769

Re: DLL LoadLibrary call fails

qwerty12 you are the winner. That was the issue. Thanks very much for the help!
by jpginc
01 Nov 2016, 18:10
Forum: Ask for Help (v1)
Topic: DLL LoadLibrary call fails
Replies: 6
Views: 4769

Re: DLL LoadLibrary call fails

So I have 2 computers, both have Windows 10 version 1607 OS build 14393.351. One is Enterprise (works) one is Home (doesn't work) here is a simplified version of the script: one note, I formatted my computer and I'm pretty sure before I had windows 10 pro before... libraryHandle := DllCall("LoadLibr...
by jpginc
01 Nov 2016, 05:38
Forum: Ask for Help (v1)
Topic: DLL LoadLibrary call fails
Replies: 6
Views: 4769

Re: DLL LoadLibrary call fails

FileExists returns A in both cases
by jpginc
01 Nov 2016, 04:41
Forum: Ask for Help (v1)
Topic: DLL LoadLibrary call fails
Replies: 6
Views: 4769

DLL LoadLibrary call fails

My desktop manager's dll calls suddenly stopped working ( https://github.com/jpginc/windows10DesktopManager ) I was using it yesterday, must have been a windows update, and now it's not working. The call on line 12 of this file https://github.com/jpginc/windows10DesktopManager/blob/master/injection%...
by jpginc
06 Oct 2016, 22:38
Forum: Ask for Help (v1)
Topic: InternetExplorer com object post data Topic is solved
Replies: 1
Views: 1119

InternetExplorer com object post data Topic is solved

Hi guys, hey guys, I want to send post data using internet explorer https://msdn.microsoft.com/en-us/library/aa752093(v=vs.85).aspx someone said that this function http://p.ahkscript.org/?p=04363fc3 converts a string to a binary array which is what the navigate function expects but it's not working ...
by jpginc
07 Aug 2016, 17:16
Forum: Scripts and Functions (v1)
Topic: Windows 10 Desktop manager
Replies: 31
Views: 32409

Re: Windows 10 Desktop manager

Hi Pinkfloydd

You could use the JPGIncWindowMoverClass like this:

Code: Select all

windowMover := new JPGIncWindowMoverClass()
windowMover.moveActiveWindowToNextDesktop()
by jpginc
25 Jun 2016, 00:31
Forum: Off-topic Discussion
Topic: *Advice please* I just got fired and I think I hate programming
Replies: 8
Views: 3942

Re: *Advice please* I just got fired and I think I hate programming

I'm thinking that perhaps it was just that that particular company wasn't a good fit for me and that I shouldn't give up on programming just yet. Although at the moment I"m leaning towards a career where I'm able to make use of programming without having to do it as a "9 - 5 thing". A friend of mine...

Go to advanced search