

We do not expect people to " bust a gut", but (in most cases) neither are we prepared to just " barf up code" (as one of my US colleagues puts it). We try to be net makers and repairers, not fishmongers.
Clipboard for anysend code#
You are by no means the first to have made this comment - and the answer is always the same: The forum ethos is to help you get your code running as you wish, but also to get you to understand why so that you have a better chance of getting it right next time. Think of the old saying: " Give a man a fish, you feed him for a day give a man a net and you feed him forever". This is just an observation, and a comment made with good intention.
Clipboard for anysend full#
Some folks are not full time coders or professional coders but can be small business owners, trying to streamline processes, whilst handling many other aspects of their business, but the fact they have shown interest in AutoIt I felt would be enough encouragement for experienced users to maybe provide some help? Whilst I can handle the date paste into specified text boxes in the CRM, how would I select individual lines of info from the notepad? Name, Company, Email, Tel, Address, and want to automate to insert into a CRM program. Why does this forum expect new folk to reinvent the wheel, fail at the task, and then its only permisable to ask for help?Īnd whilst I'm here, can I ask, I have several lines of contact info in a notepad. However, having browsed the form, I've seen a particular trend and similar replies whereby experienced users here get upset with new folk asking for help, if they haven't already busted a gut trying to figure out a solution for themselves. I too have only discovered autoIt recently, and created a very basic script to automate 1 particular repetitive task and it works fine - but I'm very new, but excited to have found this program. Toast - Small GUIs which pop out of the notification area StringSize - Automatically size controls to fit text Scrollbars -Automatically sized scrollbars with a single command Notify - Small notifications on the edge of the display NoFocusLines - Remove the dotted focus lines from buttons, sliders, radios and checkboxes GUITreeViewEx - Check/clear parent and child checkboxes in a TreeView GUIListViewEx - Insert, delete, move, drag, sort, edit and colour ListView items GUIFrame - Subdivide GUIs into many adjustable frames GUIExtender - Extend and retract multiple sections within a GUI

#Include Activate Notepad WinActivate ( "Untitled - Notepad" ) WinWaitActive ( "Untitled - Notepad" ) Get the text from Notepad $sText = ControlGetText ( "Untitled - Notepad", "", "" ) And display it MsgBox ( 0, "Notepad text", $sText ) Set UNIQUE start and end points for your extract $sStart = "For any " $sEnd = " promotion." Extract the extract $aExtract = _StringBetween ( $sText, $sStart, $sEnd ) Add back the start and end strings $sExtract = $sStart & $aExtract & $sEnd And display it MsgBox ( 0, "Extract", $sExtract ) Put the extract on the clipboard ClipPut ( $sExtract )īut remember, the next time you ask for help, we will expect you to have made much more effort to solve your problem by yourself first.ĪrrayMultiColSort - Sort arrays on multiple columnsĬhooseFileFolder - Single and multiple selections from specified path treeview listingĭate_Time_Convert - Easily convert date/time formats, including the language usedĮxtMsgBox - A highly customisable replacement for MsgBox Put your complete text into Notepad and run this: And as I have some time to spare, here is how you do what you want. Just posting a script you found on the forum does not qualify as "work". We expect you to do some work for yourself here.
