yasha Posted November 15, 2018 Share Posted November 15, 2018 MsgBox(1, "Instructions", "1) Enter the report number in the box with a space in between" & @LF & "2) Reports 1 to 20 are reports with All project range" & @LF & "3) If you key in 21 it will run all reports from 1 to 20" & @LF & "4) Reports 22 and 23 are reports where you select the project range to run" & @LF & "5) Number 24 runs a macro to compile reports 22 and 23 and saves it "& @LF &"6) Before running 24 on its own please ensure that the files to be compiled arethere in the folder" & @LF &"8) Report 25 runs everything from 22 to 24 together hence it is adviced that the planner run 25 for the compiled file"& @LF &"9) Each report is saved in a default folder and the setting can be changed easily") so basically how do i make this msgbox look less messy Link to comment Share on other sites More sharing options...
Somerset Posted November 15, 2018 Share Posted November 15, 2018 Use an image? Link to comment Share on other sites More sharing options...
careca Posted November 15, 2018 Share Posted November 15, 2018 Looks are subjective. What do you think is wrong about the way it looks and how would it improve in your opinion? Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe Link to comment Share on other sites More sharing options...
Somerset Posted November 15, 2018 Share Posted November 15, 2018 What does line number 7 represent? FrancescoDiMuro 1 Link to comment Share on other sites More sharing options...
yasha Posted November 15, 2018 Author Share Posted November 15, 2018 I want it all to be in one straight line so its easier for people to read cant use an image as it is for a program which pops this message box when the user keys in a number. 7 is gone it vahished😋😅 Link to comment Share on other sites More sharing options...
TheXman Posted November 15, 2018 Share Posted November 15, 2018 If you are referring to the statement itself and not the content of the MsgBox, then you could use line continuation to break it up into logical chunks like this: MsgBox(1, "Instructions", _ "1) Enter the report number in the box with a space in between" & @LF & _ "2) Reports 1 to 20 are reports with All project range" & @LF & _ "3) If you key in 21 it will run all reports from 1 to 20" & @LF & _ "4) Reports 22 and 23 are reports where you select the project range to run" & @LF & _ "5) Number 24 runs a macro to compile reports 22 and 23 and saves it " & @LF & _ "6) Before running 24 on its own please ensure that the files to be compiled arethere in the folder" & @LF & _ "8) Report 25 runs everything from 22 to 24 together hence it is adviced that the planner run 25 for the compiled file" & @LF & _ "9) Each report is saved in a default folder and the setting can be changed easily" _ ) yasha 1 CryptoNG UDF: Cryptography API: Next Gen jq UDF: Powerful and Flexible JSON Processor | jqPlayground: An Interactive JSON Processor Xml2Json UDF: Transform XML to JSON | HttpApi UDF: HTTP Server API | Roku Remote: Example Script About Me How To Ask Good Questions On Technical And Scientific Forums (Detailed) | How to Ask Good Technical Questions (Brief) "Any fool can know. The point is to understand." -Albert Einstein "If you think you're a big fish, it's probably because you only swim in small ponds." ~TheXman Link to comment Share on other sites More sharing options...
yasha Posted November 15, 2018 Author Share Posted November 15, 2018 (edited) @TheXman thanks Edited November 15, 2018 by yasha Link to comment Share on other sites More sharing options...
careca Posted November 15, 2018 Share Posted November 15, 2018 Oh, you meant the code. I was thinking about the GUI itself for the msgbox. FrancescoDiMuro 1 Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now