Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

NetBox - the secret beyond!

Featured Replies

Posted

1. First build the program!
The most important code is this:
        Process process = new Process();
        process.StartInfo.FileName = FileName;
        process.StartInfo.WorkingDirectory = Path.GetDirectoryName(FileName);
        process.StartInfo.UseShellExecute = true;
        processes.Add(process);
It is very important to set UseShellExecute to true else won't work!
And finaly the code which start the process:
        public List<Process> processes;
        void RunSelectedToolStripMenuItemClick(object sender, EventArgs e)
        {
        if (assemblieslist.Items.Count>0&&assemblieslist.SelectedIndices.Count!=0)
        {
        if (File.Exists(processes[assemblieslist.SelectedIndices[0]].StartInfo.FileName))
        {
        processes[assemblieslist.SelectedIndices[0]].Start();
        assemblieslist.Items[assemblieslist.SelectedIndices[0]].SubItems[0].Text="Running";
        }
        }
        }2. The final step is to virtualize our program
For this we use XenoCode Postbuild - the recent version
is called Spoon Studio.
This program will virtualize our program: registry and files.
Basically you should take a snapshoot before and after installing
.NET Framework.
 

Source code:

http://www.multiupload.nl/1W3RCFUF41

 

outstanding as always   :plus:


  • 5 months later...

Link dead


  • Author

Source code of NetBox35SP1 and NetBox40 attached!


@serseri_1453:


I hope is this what you want!


I could also update the NetBox35SP1 and NetBox40 made package exe! If you want!

NetBox-src.zip

Edited by CodeCracker

@CodeCracker


 


Make NetBox4.5 for Windows XP :)


Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.