Search found 140 matches

by Wigi
15 Mar 2022, 16:14
Forum: Ask for Help (v1)
Topic: XML extract data Topic is solved
Replies: 2
Views: 544

Re: XML extract data Topic is solved

Hello,

It works ! :superhappy:

I just do:

Code: Select all

XMLSource := StrReplace( XMLSource, "xmlns=""http://schemas.openxmlformats.org/spreadsheetml/2006/main""", "" )
and I can work around the problem. I will now extend the script but this hurdle is taken.

Many thanks.
by Wigi
15 Mar 2022, 14:57
Forum: Ask for Help (v1)
Topic: XML extract data Topic is solved
Replies: 2
Views: 544

XML extract data Topic is solved

Hello all, Stuck at reading information from a XML file. Below is my simplest code and the structure. I would need to extract the 2 instances of text for the "src" key. I am now trying to target only the first one for testing, index = 0, but the message box remains empty. Could someone please help w...
by Wigi
13 Mar 2022, 13:45
Forum: Ask for Help (v1)
Topic: Automation in case of chrome_renderwidgethosthwnd1
Replies: 4
Views: 430

Re: Automation in case of chrome_renderwidgethosthwnd1

The URL is https://bp04.planning-analytics.ibmcloud.com
for which we need to log in first on a central IBM page.

This is software for cubes and dimensions, so multi-dimensional modeling: reporting, planning, forecasting, etc.
01.PNG
01.PNG (80.87 KiB) Viewed 399 times
by Wigi
13 Mar 2022, 13:39
Forum: Ask for Help (v1)
Topic: Automation in case of chrome_renderwidgethosthwnd1
Replies: 4
Views: 430

Re: Automation in case of chrome_renderwidgethosthwnd1

Thank you for the pointer, I will give it a go !
by Wigi
13 Mar 2022, 13:30
Forum: Ask for Help (v1)
Topic: Automation in case of chrome_renderwidgethosthwnd1
Replies: 4
Views: 430

Automation in case of chrome_renderwidgethosthwnd1

Hello all, I have some experience with writing code in AHK and automating frequently executed actions on my laptop. But for the next little project I am drawing a blank. Can someone have a look and make a suggestion ? I have a web app like this (IBM software): 01.PNG I would like to for example sele...
by Wigi
27 Sep 2021, 16:44
Forum: Ask for Help (v1)
Topic: Windows Explorer - filter out files on a column
Replies: 3
Views: 1019

Re: Windows Explorer - filter out files on a column

Hi all, Just asking if there have been improvements in this area. Did anyone manage to filter or sort in File Explorer using the column headers (like you would do it manually) ? The idea is that I use certain folders quite often and I only need the files with 1 particular extension. Other files shou...
by Wigi
25 Jan 2021, 08:39
Forum: Ask for Help (v1)
Topic: Layout of 1 particular control Topic is solved
Replies: 4
Views: 315

Re: Layout of 1 particular control Topic is solved

Perfect, I must have missed that particular part. Thanks !
by Wigi
25 Jan 2021, 08:16
Forum: Ask for Help (v1)
Topic: Layout of 1 particular control Topic is solved
Replies: 4
Views: 315

Layout of 1 particular control Topic is solved

Hello all, Since my script works, I am now looking at the details :-) I would like to have the text in yellow a few points / pixels lower (Y-axis) such that it aligns better with the bottom of the value 0 in the UpDown. Put differently, for me the Top of the yellow text coincides with the top of the...
by Wigi
23 Jan 2021, 21:26
Forum: Ask for Help (v1)
Topic: Treat selected rows in ListView in order of selection Topic is solved
Replies: 2
Views: 251

Re: Treat selected rows in ListView in order of selection Topic is solved

Thanks Bobo.
I understand. There is no built-in way to do this ?
by Wigi
23 Jan 2021, 21:06
Forum: Ask for Help (v1)
Topic: Treat selected rows in ListView in order of selection Topic is solved
Replies: 2
Views: 251

Treat selected rows in ListView in order of selection Topic is solved

Hello all ! I created a gui to list variables name in a different programming language. The idea is that I generate code with AHK, to be injected in that other programming language, in order to output the values at run-time of the selected variables. 00.PNG This works beautifully well ! :dance: My l...
by Wigi
09 Nov 2020, 06:40
Forum: Ask for Help (v1)
Topic: RegexReplace - lazy search Topic is solved
Replies: 4
Views: 522

Re: RegexReplace - lazy search Topic is solved

StrIn := "'The element ''' | vElement | ''' in the dimension ''' | vDimension | '''.';" StrOut := "Expand(" . RegExReplace(StrIn, "''' \| (\w+) \| '''", "''%$1%''") . ")" MsgBox, %StrOut% ? I'm baffled ! This is wonderful and elegant. Thanks ! I will do more testing but I am pretty sure this will b...
by Wigi
09 Nov 2020, 06:08
Forum: Ask for Help (v1)
Topic: RegexReplace - lazy search Topic is solved
Replies: 4
Views: 522

Re: RegexReplace - lazy search Topic is solved

Well done, thanks for this. It's a go ! Now my problem is dat the "subparts" are dynamic. So it's each time a variable and surrounding single quotes, but the number of occurrences/matches is unknown. That's where I got stuck with my loop, it becomes endless. Would it be possible to have a loop that ...
by Wigi
08 Nov 2020, 21:40
Forum: Ask for Help (v1)
Topic: RegexReplace - lazy search Topic is solved
Replies: 4
Views: 522

RegexReplace - lazy search Topic is solved

Hello all, I have a tricky RegEx question. Basically, I would like to rework this string: LogOutput( 'The element ''' | vElement | ''' in the dimension ''' | vDimension | '''.' ); to: LogOutput( Expand( 'The element '' % vElement % '' in the dimension '' % vDimension % ''.' ) ); The task is to ident...
by Wigi
17 Jul 2020, 18:26
Forum: Ask for Help (v1)
Topic: Improved SendTo dialog Topic is solved
Replies: 11
Views: 1962

Re: Improved SendTo dialog Topic is solved

Hi, After some time, coming back with my final approach and script. Select the files / folders to be copied, press F6. A ListView will appear with all folders as the target of shortcuts that are stored in a certain dedicated folder. Then in the ListView, right-click a line and the files/folders will...
by Wigi
07 Jul 2020, 19:30
Forum: Ask for Help (v1)
Topic: Suppress a hotstring based on first character of the line Topic is solved
Replies: 2
Views: 1072

Re: Suppress a hotstring based on first character of the line Topic is solved

Seems like this isn't possible. As a workaround I created my hotstrings as: withh / selectt / forr / doo This gives blocks such as (including Tab character on lines in the middle where indentation needs to be applied): With . End With Select Case Case "": Case "": Case "": End Select For Next Do Loo...
by Wigi
05 Jul 2020, 14:46
Forum: Ask for Help (v1)
Topic: Suppress a hotstring based on first character of the line Topic is solved
Replies: 2
Views: 1072

Re: Suppress a hotstring based on first character of the line Topic is solved

Hi,

Can someone confirm that this is either not possible, either too difficult ?
by Wigi
03 Jul 2020, 12:36
Forum: Ask for Help (v1)
Topic: Suppress a hotstring based on first character of the line Topic is solved
Replies: 2
Views: 1072

Suppress a hotstring based on first character of the line Topic is solved

Hi again, I have another question, hopefully this is feasible. So basically, I want to speed up writing code in VBA. Either I write in the VBE, either in Notepad++ To create a With... End With construct, I use: #IfWinActive ahk_class wndclass_desked_gsk { :O$:with::With{Enter 4}End With{Enter 2}{Up ...

Go to advanced search