Search found 42 matches

by julesverne
20 Apr 2023, 15:08
Forum: Ask for Help (v1)
Topic: trying to add a cancel option to this function
Replies: 0
Views: 152

trying to add a cancel option to this function

DISCLAIMER: Posted this on WinSCP.ahk git by lipKau https://github.com/lipkau/WinSCP.ahk/blob/master/Examples/file_upload_with_progressbar.ahk using the example he provided. ONLY because I'm not entirely sure it is still being maintained. Also posted to the WinSCP forums in case it's a WinSCP thing....
by julesverne
27 Jan 2023, 21:13
Forum: Ask for Help (v1)
Topic: Cleaner timestamp for logging
Replies: 10
Views: 696

Re: Cleaner timestamp for logging

Forgive me mikeyww , I misspoke, I wasn't referring to this particular issue. Was referring to some of the more complicated scripts that I've written. I think in particular, some scripts where I've needed to use objects is where my intimidation is happening. When I see words like namespace, static, ...
by julesverne
27 Jan 2023, 16:03
Forum: Ask for Help (v1)
Topic: Cleaner timestamp for logging
Replies: 10
Views: 696

Re: Cleaner timestamp for logging

For anyone interested, my version 1 solution was to just make it a function, which I actually liked better. caveat, the folder path for log contained variables so I chose to just pass the filename as a second parameter. If you want to use this, and your log file path contains no variables, no need t...
by julesverne
25 Jan 2023, 22:32
Forum: Ask for Help (v1)
Topic: Cleaner timestamp for logging
Replies: 10
Views: 696

Re: Cleaner timestamp for logging

I wasn't even aware Version 2 was finally official. Exciting news!
by julesverne
25 Jan 2023, 22:04
Forum: Ask for Help (v1)
Topic: Cleaner timestamp for logging
Replies: 10
Views: 696

Cleaner timestamp for logging

Hi all, Trying to make a cleaner logging system for a script. I need milliseconds and that's proving to be annoying. ; this works but requires two lines of code EVERY time before it writes to the log file ;which is technically not the exact time of the log, since the time is taken down on the first ...
by julesverne
01 Apr 2021, 18:59
Forum: Ask for Help (v1)
Topic: URLDownloadToFile failing
Replies: 2
Views: 203

Re: URLDownloadToFile failing

@boiler so.. arghh.. it was definitely user error. so annoyed. sorry. :headwall: Thank you for your help still, I wouldn't have figured it out without you pointing out that idea. so not a complete waste. Much appreciated it.
by julesverne
01 Apr 2021, 16:53
Forum: Ask for Help (v1)
Topic: URLDownloadToFile failing
Replies: 2
Views: 203

URLDownloadToFile failing

I have a link (it's private so i can't share actual link), but the link has a single apostrophe (quote) in it, as demonstrated below: UrlDownloadToFile, https://fake.com/videofile's.mov,C:\download\videofile.mov If I use any browser it will download without fail. It fails however with UrlDownloadToF...
by julesverne
25 Mar 2021, 20:14
Forum: Scripts and Functions (v1)
Topic: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids (now for v2!)
Replies: 140
Views: 59510

Re: [Library] Neutron.ahk - AutoHotkey Web GUIs on Steroids

I'm using the simple.ahk script and I noticed I can't paste into the form input boxes. Any reason why that would be like that?
by julesverne
23 Feb 2021, 09:12
Forum: Ask for Help (v1)
Topic: Webpage style GUI with Sidebar
Replies: 2
Views: 375

Re: Webpage style GUI with Sidebar

Thanks @Xeo786 !! This is definitely a bit more complicated than I was hoping for, as I will have to refresh myself with css and html. I did watch the Joe Glines YouTube tutorial which puts me a bit more at ease. I am a little concerned about the library itself being so complex that future problems ...
by julesverne
22 Feb 2021, 23:52
Forum: Ask for Help (v1)
Topic: Webpage style GUI with Sidebar
Replies: 2
Views: 375

Webpage style GUI with Sidebar

Is it possible to make an ahk GUI look like a webpage? By that I mean: 1. a static top. (equivalent to freezing the top row of an Excel Spreadsheet. 2. A left-side bar (w \ vertical scrollbar). 3. a main window (basically the rest of the screen that doesn't include the space for the sidebar) w\verti...
by julesverne
22 Jan 2021, 13:35
Forum: Scripts and Functions (v1)
Topic: Using COM for PowerPoint
Replies: 3
Views: 3611

Re: Using COM for PowerPoint

Glad to hear it @SirSocks ! I've learned a lot more since this simple tutorial but we all gotta start somewhere.
by julesverne
16 Nov 2020, 18:29
Forum: AutoHotkey_H
Topic: AHK Icon showing for compiled script with user defined icon
Replies: 1
Views: 1817

AHK Icon showing for compiled script with user defined icon

I just wanted to alert all about a very odd bug with ahk_H vers 1 ahk2exe that was solved by @TheArkive Bug: AutoHotKey icon showing for compiled script that should be user defined icon. When compiling your script and choosing the option to include a user defined icon, you will see the icon in the t...
by julesverne
16 Nov 2020, 18:27
Forum: Announcements
Topic: Upcoming Ahk2Exe changes
Replies: 147
Views: 150434

Re: Upcoming Ahk2Exe changes

Thanks @TAC109
by julesverne
16 Nov 2020, 15:27
Forum: Announcements
Topic: Upcoming Ahk2Exe changes
Replies: 147
Views: 150434

Re: Upcoming Ahk2Exe changes

I just wanted to alert all about a very odd bug with ahk_H vers 1 ahk2exe that was solved by TheArkive Bug: AutoHotKey icon showing for compiled script that should be user defined icon. When compiling your script and choosing the option to include a user defined icon, you will see the icon in the ta...
by julesverne
14 Nov 2020, 12:50
Forum: Ask for Help (v1)
Topic: Keep 2nd GUI always on top except when another app is active
Replies: 2
Views: 334

Re: Keep 2nd GUI always on top except when another app is active

YES!! Thank you @mikeyww I shouldn't be surprised though you're like the AHK guru! This is awesome! Thank you so much!! :D :D :D :D :D :D :D :D :bravo: :bravo: :bravo: :bravo: :dance: :dance: :dance: :superhappy: :superhappy: :superhappy: :superhappy:
by julesverne
13 Nov 2020, 19:00
Forum: Ask for Help (v1)
Topic: Keep 2nd GUI always on top except when another app is active
Replies: 2
Views: 334

Keep 2nd GUI always on top except when another app is active

Hi all, Have a GUI question which includes some requirements. The code below shows two GUI's in one script. I'm trying to get the 2nd GUI (toolbarwindow) to always be on top but still allow interaction with the main GUI (parentwindow). Which is what the script below actually does. Here's the catch, ...
by julesverne
04 Nov 2020, 10:23
Forum: Ask for Help (v1)
Topic: Control goes off the screen
Replies: 4
Views: 308

Re: Control goes off the screen

Wow @mikeyww Thank you again! And what's even better is with your example I believe I understand it too so I can make the modifications I need to. This is awesome! Thank you! :bravo:
by julesverne
03 Nov 2020, 23:38
Forum: Ask for Help (v1)
Topic: Control goes off the screen
Replies: 4
Views: 308

Re: Control goes off the screen

This is brilliant!! Thank you @mikeyww I honestly didn't think this would be a possibility. I'm curious now, using your method, about two things. Is there a way to have a consistent relative space between the bottom of the player and the bottom of the screen? I'd like to put a rectangular graphic th...
by julesverne
03 Nov 2020, 19:33
Forum: Ask for Help (v1)
Topic: Control goes off the screen
Replies: 4
Views: 308

Control goes off the screen

Hi all, This issue has had me perplexed for awhile now. Endgame: Create a GUI and a control that consistently displays correctly regardless of resolution and scale using this simple code below. Gui, Add, ActiveX, x0 y0 w%A_ScreenWidth% h%A_ScreenHeight% vWMP Center, WMPLayer.OCX Gui, Show, % "w" A_S...
by julesverne
21 Jul 2020, 10:56
Forum: Ask for Help (v1)
Topic: Potential Syntax Flaw AHKv1- Please evaluate importance
Replies: 1
Views: 755

Potential Syntax Flaw AHKv1- Please evaluate importance

Julesverne := "hello" ;incorrect elseif syntax <- no space between else and if on line #7, which is very possibly overlooked by the author. ;with open start bracket on the same line #7 this will properly throw a compilation error If (Julesverne = "hello"){ msgbox, % "this message should appear Exam...

Go to advanced search