Recommended Posts

I think they should be 2 different applications as they will each have their own purpose. Also, the only thing i can see with 2 applications is it possibly taking up a fair bit of your time?

I was asking what he was programming in. I might be able to help depending on what he is using to program. I think he has a very good idea.

I think they should be 2 different applications as they will each have their own purpose. Also, the only thing i can see with 2 applications is it possibly taking up a fair bit of your time?

It's not too much trouble - so I may do it. All it would do is delay Notes but also mean that the more mature StickyNotes comes out earlier.

Now here's the thing i'm wondering, should I split the Notes and StickyNotes project in two? Or just keep them as a whole? Reply after you've tried this build.

I was asking what he was programming in. I might be able to help depending on what he is using to program. I think he has a very good idea.

I was referring to this :)

Running Notes.exe throws an exception (HRESULT : 0x80070005 (E_ACCESSDENIED) at Microsoft.WindowsAPICodePack.Taskbar.JumpList.AppendCustomCategories()), and the three leftmost menus have no icons (and have no effect). Is it because I didn't install Notes and only extracted the Notes_0_8_6_0 folder and all its content?

Also, opening the last StickyNote if no StickyNote was opened before throws an InvalidCastException (you're trying to convert an empty String into an Integer).

@djdanster >> From the exception message, I guess he's using VB.NET and WinForms :laugh:

I like notes a ton! It is a way better choice than the boring old windows notepad... but i do get a unhandled exception has occured in your application. if you click continue, the application will ignore this error and attempt to continue. if you click quit, the app will close. Access is denied (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))

any suggestions? :\

I like notes a ton! It is a way better choice than the boring old windows notepad... but i do get a unhandled exception has occured in your application. if you click continue, the application will ignore this error and attempt to continue. if you click quit, the app will close. Access is denied (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))

any suggestions? :\

What did you do to get the error?

StickyNotes Beta 1: Download

There is no changes apart from a jumplist.

This is the brand new split app (No longer part of Notes), so you'll see it has it's own name now.

I'm confused. Is this a similar, yet different program, or just the same program with a new name? (just wondering what you mean by "split app."

Also, this version does not have an icon in the Start Menu, nor does it put a shortcut on the Desktop (It's icon is that of a generic Windows 7 app exectuable icon). Is that coming in an updated version?

Haven't tried this yet, out of curiosity, what language are you writing this in?

Edit: Opened it up with reflector, I see it's C#, I code in C# as a job so I feel pretty knowledgeable in it, if theres anything you would like done that you don't have time for, or something is confusing you, let me know.

What about my question? Is there a way for this to be a portable app?

@firey >> He's using VB.NET, there are references to Microsoft.VisualBasic in the exceptions thrown by Notes.

Hopefully for 1.0 - but as this is a Beta there is currently no need.

I'm confused. Is this a similar, yet different program, or just the same program with a new name? (just wondering what you mean by "split app."

Also, this version does not have an icon in the Start Menu, nor does it put a shortcut on the Desktop (It's icon is that of a generic Windows 7 app exectuable icon). Is that coming in an updated version?

This app was once part of an app called "Notes", also the icon is getting changed in the next beta.

What about my question? Is there a way for this to be a portable app?

@firey >> He's using VB.NET, there are references to Microsoft.VisualBasic in the exceptions thrown by Notes.

Hmm, okay, well below is some C# code.. that could be translated in VB to work with this, it's basically loading code for multiple notes.

NOTE: THIS IS C#, if the project is in VB it could be easily translated, as it's pretty much the same.. just no curly braces and commas

Couple quick ideas, #1, use arrays to handle your "new windows" instead of just declaring it with the same name. Do something like the following for loading notes (this won't cover positions, but it will help), and use a separate form to handle this, but have that "form" always be minimized to the system tray. Use that to manage the open notes and such.

The code below would work well for loading notes, it would be part of frmLoad or something (as you use frmMain for your notes)

 frmMain[] main; //Put this in your class dec  (outside of your form code), as we will use it to load notes, this also lets each note talk to the main form
int intNoteIDX = 0; //use this to track indexes


//Use this for loading old notes,  
//In here you could load up an INI, or CSV, or .DAT which houses your notes
//Lets say you have a .txt that is layed out id;title;note (or use some other symbol to separate)
streamReader sr = new streamReader("notes.txt")
string[] split = new string[3] //however many fields.. could do more for tracking color, position, whatever this is just a base
string read = "";

while (!sr.EndofFile)
{
    read = sr.ReadLine();

    main[intNoteIDX] = new frmMain(this);  //Would require you to modify your frmMain to accept a frmLoad (or whatever variation) reference [the parent]
    main[intNoteIDX].StartPosition = FormStartPosition.Manual;
    main[intNoteIDX].Top = (intNoteIDX > 0 ?  main[intNoteIDX - 1].Top +  main[intNoteIDX - 1].Height + 5 : 50);
    main[intNoteIDX].Left = (intNoteIDX > 0 ?  main[intNoteIDX - 1].Left +  main[intNoteIDX - 1].Width + 5 : 50);

    //You would need to public your textboxes
    split = read.split(';'); //replacing ';' with whatever char you decide
    main[intNoteIDX].titleLabel.Text = split[1]; //Guessing that's your title?
    main[intNoteIDX].TextBox1 = split[2]; //Guessing that's your note area?

    main[intNoteIDX].Show();

    intNoteIDX++;
}
sr.close();

//Then down here would be used to create a new note, just change the code to call back to the "parent" form, could static it if you don't want to reference
//in your note form just do something like
parentFrm.newNote();  //parentFrm is passed via the constructor in the example I used above

//then in your parent form
intNoteIDX = 0;
foreach (frmMain m in main)
{
   if (m != null)
      intNoteIDX++;
  else
     {
          main[intNoteIDX] = new frmMain(this);
          main[intNoteIDX].StartPosition = FormStartPosition.Manual;
          main[intNoteIDX].Top = (intNoteIDX > 0 ?  main[intNoteIDX - 1].Top +  main[intNoteIDX - 1].Height + 5 : 50);
          main[intNoteIDX].Left = (intNoteIDX > 0 ?  main[intNoteIDX - 1].Left +  main[intNoteIDX - 1].Width + 5 : 50);
          main[intNoteIDX].Show();

         break;
     }
}

The above code is rough and could easily be tweaked and modified, but I think it would add a lot to your program, both from a management side, aswell as functionality. Then to close the program, just loop through each sticky note in the array, save it in your data file (that stores note info), then kill off that form object.

And yea, it is VB.NET there are references to it in the source, well I know VB too, so the offer still stands :p

I tired to install it on Windows XP on a school computer and it prompted for Admin comfirmation, trying to install as a standard user it errors out. I would like to see a non-installation version of it if possible.

EDIT: It seems it installed but running the software is erroring out. Also I was wondering if an import into OneNote Function is availible.

Thanks for the reply Jan.

A couple of suggestions:

Will there be a font changing area for sticky notes? I noticed that when you copy and paste from a different app, it keeps that app's font. Also, will you be putting in bullets or special characters? I can see myself using this at work more so than One Note that I am using now.

Excellent app, I am loving it!

post-1544-0-38978200-1299083328.png

Jumplist works fine for me, but as someone mentioned ONeNote, that brings up a great idea for me; can you give us the option of choosing where to place the notes like on the drive? I'd love to place my notes in Dropbox, so that all my computers would have the same sticky notes :D

Thanks for the reply Jan.

A couple of suggestions:

Will there be a font changing area for sticky notes? I noticed that when you copy and paste from a different app, it keeps that app's font. Also, will you be putting in bullets or special characters? I can see myself using this at work more so than One Note that I am using now.

Excellent app, I am loving it!

You'll be able to change the font of text in Beta 2.

You maybe able to insert special characters in Beta 3.

Jumplist works fine for me, but as someone mentioned ONeNote, that brings up a great idea for me; can you give us the option of choosing where to place the notes like on the drive? I'd love to place my notes in Dropbox, so that all my computers would have the same sticky notes :D

Super awesome idea! I'd love to have something like that - possibly StickyNotes 1.2 - 1.3?

I tired to install it on Windows XP on a school computer and it prompted for Admin comfirmation, trying to install as a standard user it errors out. I would like to see a non-installation version of it if possible.

EDIT: It seems it installed but running the software is erroring out. Also I was wondering if an import into OneNote Function is availible.

StickyNotes does not work on Windows XP.

This topic is now closed to further replies.
  • Posts

    • Glow 26.9 by Razvan Serea Glow provides detailed reporting on every hardware component in your computer, saving you valuable time typically spent searching for CPU, motherboard, RAM, graphics card, and other stats. With Glow, all the information is conveniently presented in one clean interface, allowing you to easily access and review the comprehensive hardware details of your system. Glow provides detailed information on various system aspects, including OS, motherboard, processor, memory, graphics card, storage, network, battery, drivers, and services. The well-organized format ensures easy access to the required information. You can export all the gathered data to a plain text file, facilitating sharing with others for troubleshooting purposes. No installation needed. Just decompress the archive, launch the executable, and access computer-related information. Glow runs on Windows 11 and Windows 10 64-bit versions. Glow 26.9 changelog: New Features The processor hardware detection engine has been significantly enhanced beyond traditional Intel and AMD architectures. Native support is now available for modern platforms such as Apple Silicon (M-Series) and the newly introduced NVIDIA Spark. In addition, all ARM-based processors can now be accurately distinguished between ARM32 and ARM64 architectures, providing precise hardware reporting. This marks a major milestone for Glow's hardware detection capabilities. The RAM manufacturer identification algorithm has been expanded. JEDEC vendor codes for popular brands such as Patriot, PNY, Team Group, GeIL, Lexar (Longsys), and Asgard/Gloway have been integrated into the database. This significantly reduces the likelihood of incorrect or "Unknown Manufacturer" results and improves overall hardware detection accuracy. New Public IP Address and Internet Service Provider (ISP) features have been added to the Network section. To ensure reliability, this information is retrieved from the trusted service ipwho.is. When Hiding Mode is enabled, no requests are sent and these features remain hidden, as they may expose sensitive information. The search engine used in the Installed Drivers, Installed Services, and Installed Applications sections has been enhanced. You can now perform more flexible and accurate searches using initials, partial matches, and loosely arranged character sequences. The TS Preloader loading bar has been rebuilt using our modern TS Custom Controls graphics library, developed entirely in-house. As a result of this infrastructure upgrade, the loading bar now features smooth rendering and rounded corners that align with the visual style of Windows 11. [TS Updater] A new validation algorithm has been added to check whether the target application is currently running before the update process begins. Bug Fixes Resolved a condition that could prevent TS Preloader from shutting down safely during rare application crash scenarios. Fixed a text alignment issue in the Network section affecting the display of DNS addresses. Alignment is now rendered correctly. [TS Updater] Fixed an issue that could prevent the updated application's executable "*.exe" file from being located after the update process. [TS Updater] Fixed a bug that could leave outdated "*.sha256" files in the application directory after an update. [TS Updater] Fixed a rare issue that could cause subfolders to be moved into the root directory after an update. [TS Updater] Fixed an issue during the first launch that could cause flickering and a temporary white window appearance due to Windows Defender interactions. Changes A small improvement has been made to the internet connectivity detection algorithm. Connectivity checks are now performed in the background with minimal impact on the user interface thread. The keyboard shortcuts in the top menu have been reorganized and simplified to provide a consistent experience across all Türkaysoft applications and to avoid potential conflicts with standard Windows shortcuts. The TS Preloader splash image has been updated with a Türkiye-themed stadium design to celebrate Türkiye's qualification for the 2026 FIFA World Cup—its first appearance in 24 years. Congratulations, Türkiye! The TS Custom Controls module has been updated to version 26.6, delivering improved stability and a more polished visual appearance. [TS Updater] The application icon has been redesigned to provide a more modern and refined look. Note: Always unzip the program before using it. Otherwise you may get an error. Download: Glow 26.9 | 1.8 MB (Open Source) Links: Glow Homepage | Screenshot | Github Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • DWARF mini review: the world's smallest smart telescope for night and day sky captures by Steven Parker DWARFLAB reached out to me asking if I was interested in checking out the DWARF mini, which is a portable astronomy telescope designed for amateur astronomers. Why do I say it's for amateurs? Well, for starters, it's not what you'd call "high end"; it's more of a professional-grade starting point for amateurs serious about capturing what's up there in our night and day skies. A typical amateur astronomer is most likely thousands of dollars deep into the hobby, and I will make no claims that this DWARF mini (at a fraction of the cost) could replace it all, okay? Well, if you read on, it will be clearer what I am trying to convey. Disclosure: DWARFLAB provided a free sample without any editorial input or review pre-approval. I have always been interested in looking up and observing the night sky. I see satellites crossing the sky above my garden most nights, and I am always looking at the moon. Yeah, I have a 200MP camera on my phone, but at 200X zoom, AI takes over and makes the pretty moon pictures that I snap, the DWARF mini does not, you get an actual true picture of what you can barely see with the naked eye. Before we start, let's share the highlights of the DWARF mini in bite-sized format: Pocket-Sized & Ultra-Lightweight Weighing just 1.85 lbs (840g), the DWARF mini easily fits into a backpack or large pocket. Its all-in-one, compact design makes it the ultimate grab-and-go digital telescope for hiking, camping, or traveling to dark-sky locations. Intuitive App Control & Built-in Sky Atlas Go from unboxing to your first shot in just 3 minutes! The DWARFLAB App provides a seamless experience with an interactive star map. Simply select your target and start exploring without the steep learning curve of traditional setups. Auto GOTO & 360° Pivot Freedom Enjoy pinpoint automated tracking with full 360° rotation. Powered by a high-sensitivity Sony IMX662 sensor (1/2.8-inch, 2.9μm pixels), it captures amazing, low-noise astro details, bringing faint nebulas and star clusters to life with stunning clarity. Pro-Level EQ Mode & Long Exposure Unlock advanced deep-space imaging with Equatorial (EQ) Mode. Supporting impressive single-frame exposures up to 90 seconds and featuring built-in light pollution filters, it easily cuts through city glow to reveal intricate celestial structures. Smart Cloud Processing & All-Ages Fun Effortlessly enhance your raw data with integrated cloud processing for professional-grade results. Perfect for beginners, kids, and adults, this telescope makes exploring and sharing the wonders of the universe an exciting, family-friendly adventure. The packaging is a pretty minimal affair with the outer box opening like a flap to reveal the plastic mould of the DWARF mini sitting in it. Below, the Sun filter, charging cable, cleaning cloth, and documentation can be found. DWARFLAB also provided a Mini Hydraulic Tripod ($89.99), and I highly recommend getting it if you plan on purchasing the DWARF mini, as it fully supports the motorized tracking feature of the telescope; plus, at 840g, the weight of the telescope, you will need a tripod that supports more than the weight of a smartphone anyway. What's in the box DWARF Mini Smart Telescope × 1 Sun Filter x 1 Type-C to Type-C Cord x 1 Cleaning Cloth x 1 User Guide With that out of the way, here are the full specs: DWARF mini Dimensions (DWH): 60.70 mm x 100.38 × 183.61 (2.39" x 3.95" x 7.23") Weight: 840g (1.85lbs) Aperture diameter: 30 mm (telephoto), 3.4 mm (wide angle) Image Sensor: SONY IMX662 1/2.8" (Telephoto) OmniVision OS02K10 1/2.8" (Wide-angle) Focal length: 150 mm (telephoto), 6.7 mm (wide-angle) Equivalent focal length: 1016 mm (telephoto), 45 mm (wide-angle) Shutter Speed: Tele - 1/10000-90s, Wide - 1/10000-30s Maximum exposure time: 90s (telephoto & wide-angle), Both in EQ mode Rotation range: Lens: 225°, Base: 360° Effective Pixels: 2.07M Maximum Resolution: 1920 × 1080 (Telephoto & Wide-angle) Built-in filters: Astro, Dark, Duo-Band (Telephoto), Astro (Wide-angle) Output: JPG, FITS, TIFF, MP4 Shooting Mode: Photos, Videos, Astronomy, Burst Shooting, Time-lapse Photography Storage: 64 GB Battery: Built-in 7000 mAh, supports external USB charging Charging Port: Type-C NPU: 1 TOPS Features: WiFi, NFC NFC One-Touch Connection Astronomy Post-Processing/Appointment Shooting/Astronomy Mosaic Wi-Fi Transmission Range: 15m (open environment) Color: Black Compatibility: iOS & Android smartphones/tablets Warranty: 2-years (24-months) MSRP: $399 Design Charge port On/off button Lens On the DWARF mini itself, it is a pretty minimal affair. On one side, there is a Type-C USB port to charge the non-removable 7000 mAh battery, and on the other side, a large button to power on or off the telescope. The button is flanked by an LED that is green when connected via the DWARFLAB app, or lights up red when being powered off. Below the button, there are four LEDs that indicate battery power. The DWARF mini does not have any sharp edges as all sides are rounded off; it has a good heft to it, but the weight of it feels quite balanced in the hand, so it isn't top or bottom-heavy. On the front there is the DWARFLAB logo which is quite small and there are no other markings on it. The tripod offers full 360° rotation of the motorized base, which allows for tracking for the time-lapse mode, but also for the 90-second captures of nearer objects in the sky, such as the Sun or the moon. Usage To get started, simply power on the DWARF mini and open the DWARFLAB app, tap on Connect, and it will scan for the DWARF mini over the Wi-Fi network. The device supports both 2.4 GHz and 5 GHz Wi-Fi, as well as Bluetooth for discovery, so connection issues were minimal in my experience with it. As previously noted in the specs, the DWARF mini will stay connected with a phone or tablet up to 15 meters in an open environment, such as a backyard. Lighting status Powering on: The green circular light will rotate and breathe in turn Powering off: The red circular light is gradually extinguished Connecting: Green light strip rotating Connected: Green light strip solid/always on 4 lights 1= 0-25%, 2= 25-50%, 3= 50-75%, 4= 75-100% battery power To view the full lighting status, such as tracking mode and connection failure, you can check the user guide on the official DWARFLAB page. DWARFLAB app Above, you can see the steps undertaken to connect the DWARFLAB app to my Galaxy S26 Ultra. Weirdly, I got an alert that a firmware update failed to get uploaded to the DWARF mini the first time, but upon retrying, it worked. Then place the DWARF mini outside, make sure your smartphone or tablet is connected to it, and then head back inside, because you can manage it from the comfort of your home. Simply enter the Atlas tab in the app and search for what you want to capture, and then tap on the camera icon; the DWARF mini will then attempt to track the object and give you a live view right on your connected device. Results I've had the DWARF mini since April, but even though my garden is south-facing, I had a lot of trouble trying to capture a good image of the moon. In the end, it was possible after I took it with me on a trip to my parents in Southend, UK, at the end of May. Here is a capture of the moon, resulting from 20 stacked images over a 90-second exposure. What you are seeing here is not AI-assisted. A good example of what I mean is the latest flagships with their 200MP cameras claiming to capture things like closeups of the moon, and while they are not as good as the above example on the DWARF mini, the resulting image on smartphones is actually AI-assisted above 30X zoom. Here is an example of a similar shot at the moon at 200X zoom using an HONOR Magic8 Pro. The difference is clear. Next, here we have a shot of the daytime moon. Here is a shot of Arcturus, the red giant star, which is the fourth brightest in the night sky. As previously mentioned, it could be a bit clearer, but clouds passing in front of it muddied the shot a bit. The Sun The DWARF mini also ships with a sun filter, meaning you can take great shots of the sun as well. Tracking Sun Resulting (stacked) shot Live zoom The pictures themselves are limited to Full HD, and some of the examples actually came out in HD (1280x720), but this is because the standard telescopic result is in 720p while "Wide" is in 1080p. Above you can see how in the app the Sun is tracked, the resulting capture, and Live zoom. I have only scratched the surface of what is possible with this telescope; I found several examples online of shots of the Milky Way, among others, such as nebulae and galaxies. All of this requires patience and knowledge, although if you know what you are looking for, simply enter it in the Atlas tab in the DWARFLAB app, tap the camera icon, and the telescope will attempt to track it. Conclusion The good The DWARF mini definitely places itself in a price point that makes astrology accessible to anyone looking to get started in the hobby. Say you want to have a closer look at the moon, simply enter it in the Atlas, and the Live view also lets you zoom in and snap pictures. The bad Some issues I came across while operating the DWARF mini were that it sometimes failed to connect unless I held my smartphone right next to it, and finding and tracking sometimes took several attempts to get it calibrated. I discovered that it helped if I sort of positioned and pointed the telescope in the general area it was supposed to detect, but this obviously wouldn't work with objects you can't see with the naked eye; more testing is required for that. Another bit of advice is to ensure that the lens is clean. While making the examples of live zooming on the sun, I discovered that the telescope lens and sun filter were not completely clean, and only after cleaning with a microfiber cloth was I able to get a decent shot of the sun. Where to buy and a coupon Okay, $399 is not cheap for a side hobby, but nor is a $1,500 smartphone flagship that you'll most likely have for a couple of years. This is a one-time entrance into astrology, and it won't become obsolete in one year like a smartphone. It's a thumbs up from me. The DWARF mini is available to buy right now in the U.S. and U.K. at the links below. DWARF mini for $399 on the official site DWARF mini for $399 on Amazon U.S. Use the NEOWIN5OFF coupon code for an additional 5% off at checkout (expires June 21) As an Amazon Associate, I earn from qualifying purchases.
    • Adobe Acrobat Reader Dis Continued
    • The name, you mean? If so, it's actually the objects common name. There's another one called NGC 7293 which is also known as Helix Nebula (because we're looking at a helix structure top down) but other times also known as the Eye of God. You'll understand when you see it
    • Welcome to Neowin! Enjoy your stay!
  • Recent Achievements

    • One Month Later
      lamborghiniv10 earned a badge
      One Month Later
    • Week One Done
      lamborghiniv10 earned a badge
      Week One Done
    • Reacting Well
      X-No-file earned a badge
      Reacting Well
    • One Month Later
      pestcontrol46 earned a badge
      One Month Later
    • Week One Done
      pestcontrol46 earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      505
    2. 2
      PsYcHoKiLLa
      272
    3. 3
      Skyfrog
      75
    4. 4
      +Edouard
      71
    5. 5
      FloatingFatMan
      69
  • Tell a friend

    Love Neowin? Tell a friend!