Jump to content

how to make it look good


yasha
 Share

Recommended Posts

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

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

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" _
)

 

Link to comment
Share on other sites

Oh, you meant the code. I was thinking about the GUI itself for the msgbox.

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...