Search found 48 matches

by Crashm87
31 Jan 2018, 09:24
Forum: Ask for Help (v1)
Topic: IE iframe and frame
Replies: 9
Views: 7152

Re: IE iframe and frame

I have a website with multiple frames and had many issues getting into it. After extensive forum search and alot of help, these 2 snippets of code are what work for me. IEGet(name="") { IfEqual, Name,, WinGetTitle, Name, ahk_class IEFrame ;// Get active window if no parameter Name := (Name="New Tab ...
by Crashm87
30 Jan 2018, 15:50
Forum: Ask for Help (v1)
Topic: Listview from GUI to Email
Replies: 7
Views: 1597

Listview from GUI to Email

Hello Forum, Wondering if anyone can lend a helping hand. I have wrote a script I use to keep a simple database to keep track of information from incoming calls at work. (vs standard pen and paper). It all works great so far relying heavily on the forums for CSV help and functions. Now I'm wondering...
by Crashm87
03 Jan 2018, 11:19
Forum: Ask for Help (v1)
Topic: Assistance with Functions Topic is solved
Replies: 2
Views: 808

Re: Assistance with Functions Topic is solved

That seems to have done the trick. Thanks alot.
by Crashm87
03 Jan 2018, 09:50
Forum: Ask for Help (v1)
Topic: Assistance with Functions Topic is solved
Replies: 2
Views: 808

Assistance with Functions Topic is solved

Morning all, I stumbled accross a thread last night that suggested using functions throught scripts in place of goto, or gosub. I thought I would give it a try, I am still learning functions, so I thought I would learn as I go and see if I can replace some subs in a script I have. The script takes b...
by Crashm87
06 May 2017, 09:33
Forum: Ask for Help (v1)
Topic: Need help with Run, %clipboard% command
Replies: 9
Views: 2475

Re: Need help with Run, %clipboard% command

Here is example code

Code: Select all

!w::
Send, ^c
Sleep 200
wiki := "https://en.wikipedia.org/wiki/"
clip = %Clipboard%
StringReplace, clip, clip, %A_Space%,_, All
;MsgBox %wiki%%clip%   ;debug
Run, chrome.exe %wiki%%Clip%
return
With this, you should be able to apply the same thing to your Amazon searches
by Crashm87
06 May 2017, 09:26
Forum: Ask for Help (v1)
Topic: Need help with Run, %clipboard% command
Replies: 9
Views: 2475

Re: Need help with Run, %clipboard% command

Web addresses don't support spaces in them, so when you are copying more than one word, the space is seen as a new tab. You would have to StringReplace the space with either a _ and if a Wiki page exists for those words, it will load it.
Example:
https://en.wikipedia.org/wiki/Panel_painting
by Crashm87
11 Apr 2017, 10:02
Forum: Scripts and Functions (v1)
Topic: [Looking for Maintainers/Successors] Clipjump : The Ultimate Clipboard Manager
Replies: 99
Views: 65728

Re: [Looking for Maintainers/Successors] Clipjump : The Ultimate Clipboard Manager

Hello everyone, I've noticed something weird lately when using ClipJump. When I try and copy text from a PDF file (Abode Reader DC), it won't transfer to Clipjump, it doesn't copy at all. Today I tried CNTRL+, I pressed it 10 times and finally it copied it to the clipjump. Next try, worked on the fi...
by Crashm87
08 Apr 2017, 08:54
Forum: Ask for Help (v1)
Topic: Gui data to Excel Sheet
Replies: 1
Views: 874

Gui data to Excel Sheet

Morning Community, I have a script I have written to take information from Gui Edit boxes and push them to excel sheet to make labels. The script searches an old database to see if the label has been made before, if it has it pulls all the data to sheet from database. If it hasn't been made, it open...
by Crashm87
10 Mar 2017, 13:29
Forum: Ask for Help (v1)
Topic: How to find multipal letters in a column in ms excel by these codes?
Replies: 5
Views: 1920

Re: How to find multipal letters in a column in ms excel by these codes?

Try this, I tested it on a workbook of mine, and it selected the cell containing my search FilePath := "..." ; ENTER WORKBOOK PATH HERE oExcel := ComObjActive("Excel.Application") oWorkbook := ComObjGet(FilePath) dataBase := oWorkbook.WorkSheets("Sheet1") InputBox, LookFor, Search, Enter Search Crit...
by Crashm87
10 Mar 2017, 12:06
Forum: Ask for Help (v1)
Topic: Custom GUI to replace Msgbox
Replies: 14
Views: 5436

Re: Custom GUI to replace Msgbox

Thank you both very much. 4GForce , your last post worked perfectly. Thank you very much, I think I am starting to understand the classes for making that GUI. Yeah, Lexikos is right, I went a bit off track with this one. It was the classes I didn't understand, but it is nice to know that there is an...
by Crashm87
10 Mar 2017, 11:56
Forum: Ask for Help (v1)
Topic: How to find multipal letters in a column in ms excel by these codes?
Replies: 5
Views: 1920

Re: How to find multipal letters in a column in ms excel by these codes?

I'm not sure if this will work, but this is the first thing I thought of.

Code: Select all

oExcel := ComObjActive("Excel.Application")
range := oExcel.Range("b:b")

if range.find("p") oexcel.activecell.entirerow.cells(1,2)).select
if range.find("a") oexcel.activecell.entirerow.cells(1,2)).select
by Crashm87
09 Mar 2017, 23:40
Forum: Ask for Help (v1)
Topic: Custom GUI to replace Msgbox
Replies: 14
Views: 5436

Re: Custom GUI to replace Msgbox

Thanks again for the help. I ran this, and it kept asking for static variable for vCNumberTxt , I removed the v from the front, and it displayed the GUI, but no information. I added the other comma after Add, Text , like this Gui CMB:Add, Text, vCNumberTxt and it showed the information. So I added t...
by Crashm87
09 Mar 2017, 16:22
Forum: Ask for Help (v1)
Topic: Custom GUI to replace Msgbox
Replies: 14
Views: 5436

Re: Custom GUI to replace Msgbox

Sorry, here is the entire script. Labels in a loop :sick: Hard to fully test without the excel file but I tested the loop part and this works ... #SingleInstance Force FilePath := "C:\Users\Tammy\Desktop\2016 SUMMER TIRES FINAL.xlsx" oExcel := ComObjCreate("Excel.Application") ;~ oExcel.Workbooks.O...
by Crashm87
09 Mar 2017, 10:13
Forum: Ask for Help (v1)
Topic: Custom GUI to replace Msgbox
Replies: 14
Views: 5436

Re: Custom GUI to replace Msgbox

Sorry, here is the entire script. #SingleInstance Force FilePath := "C:\Users\Tammy\Desktop\2016 SUMMER TIRES FINAL.xlsx" oExcel := ComObjCreate("Excel.Application") ;~ oExcel.Workbooks.Open(FilePath) ;~ oExcel.Visible := true oWorkbook := ComObjGet(FilePath) dataBase := oWorkbook.WorkSheets("Sheet1...
by Crashm87
09 Mar 2017, 08:40
Forum: Ask for Help (v1)
Topic: Frames and COM Topic is solved
Replies: 6
Views: 2548

Re: Frames and COM Topic is solved

How about: framecount := document.parentWindow.frames.length framecount -= 1 ; subtract 1 to get the right number of the array myFrame := wb.document.parentWindow.frames[framecount].document.body.innerHTML msgbox % myFrame This will always target the last frame on the page. That's assuming, of cour...
by Crashm87
09 Mar 2017, 08:39
Forum: Ask for Help (v1)
Topic: Custom GUI to replace Msgbox
Replies: 14
Views: 5436

Re: Custom GUI to replace Msgbox

Thanks for the answers. @Helgef, that is working, it displays the messagebox, however doesn't continue looping when I press no, which I can't figure out. @4GForce, I implemented yours into the middle of my loop, and same thing, I can get a msgbox to appear, but I can't get loop to continue when pres...
by Crashm87
08 Mar 2017, 16:32
Forum: Ask for Help (v1)
Topic: Frames and COM Topic is solved
Replies: 6
Views: 2548

Re: Frames and COM Topic is solved

enter8 wrote:There may be a better way, but you can get the number of frames with

document.parentWindow.frames.length
Thank you, that helps alot.

Maybe I'll implement an IF statement and store number of frames in a variable.
by Crashm87
08 Mar 2017, 16:29
Forum: Ask for Help (v1)
Topic: Custom GUI to replace Msgbox
Replies: 14
Views: 5436

Custom GUI to replace Msgbox

Hello, I made a custom GUI to replace my messagebox so I could change the font, but I can't get the controls of the buttons to work the same way they do when inside a loop. My messagebox code is: MsgBox,3, Customer Storage Information ,% "Row number: " c.row "`n" . "Customer Number : " cnumber "`n" ...
by Crashm87
08 Mar 2017, 13:42
Forum: Ask for Help (v1)
Topic: Frames and COM Topic is solved
Replies: 6
Views: 2548

Re: Frames and COM Topic is solved

Thank you. That pointed me EXACTLY where I needed to go. I was able to figure out what the problem is from your post, and not sure if there is way to 'work around' this or not. What's happening is, the frame count changes depending on how my browser reaches the screen. If it is the first time I go t...
by Crashm87
07 Mar 2017, 10:31
Forum: Ask for Help (v1)
Topic: Script doesn't work
Replies: 10
Views: 2338

Re: Script doesn't work

are you trying to close a window by pressing Up+&?

Go to advanced search