Skip to content
View in the app

A better way to browse. Learn more.

MSFN

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.

tony-inpo

Member
  • Joined

  • Last visited

  • Country

    United Kingdom
  1. I installed xpize and the latest windows updates which windows update told me I needed, then restarted the system. After the black loading screen with the blue bar striping across it got to the blue bit of the load (windows is loading your settings or whatever) then shows my background, then crashes explorer. Asks me to send a error report etc, I do (or don't tried both) and it doesn't come back. Ctrl+Shift+Esc > new task > explorer > crashes and asks to send error report. Same in safe mode (with cmd and without) tried resetting to last known good configuration no help Thanks any help fast would be much appreciated
  2. Hi, I want my user to be able to minimise my application to the system tray, which appears as a Notify Icon with the applications Icon on. I then want the user to be able to double click the icon to maximise the app again, then immediately after, double click the icon to minimise. private void ni_DoubleClick(object sender, EventArgs e) { if (WindowState == FormWindowState.Minimized) { Show(); WindowState = FormWindowState.Normal; } if (WindowState == FormWindowState.Normal) { Hide(); WindowState = FormWindowState.Minimized; } } With this code it performs my operation, but only once, How do you get it to continually loop through this procedure. Thanks Tony
  3. Nice one, cheers for that got it to work now
  4. Hi, first post so hey everybody, hope someone can give me a hand here I can copy files and folders but I have to do it individually. Here’s the code string strOrigFile = somelocation1; //defined by user string strDestLoc = somelocation2; //defined by user // Get the filename only string strFileName = System.IO.Path.GetFileName(strOrigFile); // Determine the full destination path including filename string strDestFile = System.IO.Path.Combine(strDestLoc, strFileName); // Copy the file System.IO.File.Copy(strOrigFile, strDestFile); How do I make it look for all the files in the Directory then copy them? Thanks Tony

Account

Navigation

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.