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

    • It's amazing that anyone still uses this bloated trash.
    • @Sayan...I have defended you at various points as I hope you know. This headline however is utter trash...shame on you sir!
    • An actual cosmic "Eye of Sauron" had been looking straight at us all along by Sayan Sen Image by Kovin P. Vasquez via Pexels | Not representative An international team of researchers has solved a long-standing mystery surrounding a distant blazar known as PKS 1424+240, helping explain why it produces some of the brightest high-energy gamma rays and cosmic neutrinos ever observed despite appearing to have a relatively slow-moving jet. The findings were published on June 6 in Astronomy & Astrophysics Letters. The study addresses a broader challenge in astrophysics: understanding how extreme cosmic objects accelerate particles to very high energies and produce very high-energy (VHE) photons and neutrinos. PKS 1424+240 is located billions of light-years from Earth. It has attracted attention for years because it is both a powerful source of VHE gamma rays and the brightest known neutrino-emitting blazar in the sky, according to observations by the IceCube Neutrino Observatory. It is also associated with one of the strongest peaks in IceCube's nine-year neutrino sky map A blazar is a type of active galactic nucleus powered by a supermassive black hole that pulls in surrounding matter and launches jets of plasma moving close to the speed of light. What makes blazars unique is their orientation. One of their jets points almost directly toward Earth, making them appear exceptionally bright across the electromagnetic spectrum and allowing scientists to study some of the most extreme physical processes in the Universe. The scientists exclaimed it's like the 'Eye of Sauron' in deep space. Usually, the brightest gamma-ray-emitting blazars are expected to have jets that appear to move very quickly. However, radio observations of PKS 1424+240 suggested that its jet was moving much more slowly, creating a contradiction that became part of a long-running problem known as the "Doppler factor crisis." To investigate, researchers analyzed 15 years of observations from the Very Long Baseline Array (VLBA), a network of 10 radio antennas spread across the continental United States, Hawaii and St. Croix. Using a technique called Very Long Baseline Interferometry (VLBI), astronomers combine signals from widely separated radio telescopes to create a virtual Earth-sized telescope capable of revealing extremely fine details. The team combined 42 polarization-sensitive radio images collected between 2009 and 2025, creating a much deeper and more detailed view of the jet than had previously been possible. The observations were carried out as part of MOJAVE (Monitoring Of Jets in Active galactic nuclei with VLBA Experiments), a long-running program that studies the brightness, polarization and magnetic field structures of jets produced by active galaxies. The project aims to better understand how activity near supermassive black holes is linked to high-energy radiation and neutrino emission. “When we reconstructed the image, it looked absolutely stunning,” said Yuri Kovalev, lead author of the study and Principal Investigator of the European Research Council-funded MuSES project at the Max Planck Institute for Radio Astronomy. “We have never seen anything quite like it — a near-perfect toroidal magnetic field with a jet, pointing straight at us.” The image revealed an unusual geometry. The researchers found that Earth lies almost directly in line with the jet, with a viewing angle of less than 0.6 degrees. In simple terms, astronomers are looking almost straight down the jet. This turned out to be the key to the mystery. Because the jet is aimed almost directly at Earth, a relativistic effect called Doppler boosting dramatically increases its apparent brightness. The study found that this effect boosts the emission by a factor of about 30 while also making the jet appear slower than it actually is. “This alignment causes a boost in brightness by a factor of 30 or more,” said Jack Livingston, a co-author at the Max Planck Institute for Radio Astronomy. “At the same time, the jet appears to move slowly due to projection effects — a classic optical illusion.” The nearly head-on view also gave scientists a rare look at the jet's magnetic field. Using polarized radio signals, they detected a clear toroidal, or doughnut-shaped, magnetic field component. The observations suggest the jet carries an electric current and that its magnetic field helps launch, shape and stabilize the flow of plasma. Researchers believe this magnetic structure may also play a key role in accelerating particles to energies high enough to produce both gamma rays and neutrinos. “Solving this puzzle confirms that active galactic nuclei with supermassive black holes are not only powerful accelerators of electrons, but also of protons — the origin of the observed high-energy neutrinos,” Kovalev said. The research was conducted under the MuSES (Multi-messenger Studies of Energetic Sources) project, which investigates how active galactic nuclei accelerate particles and generate different cosmic signals, including light and neutrinos. Scientists say understanding how protons are accelerated and linked to neutrino production remains one of the major unanswered questions in astrophysics. The findings help explain why some blazars can appear to have slow jets while still producing extremely bright high-energy emissions. More broadly, the study strengthens the link between relativistic jets, magnetic fields, gamma rays and high-energy neutrinos. Researchers say the results provide new clues about how some of the Universe's most powerful natural particle accelerators work and offer important insights for multimessenger astronomy, which combines different types of cosmic signals to study extreme events in space. Source: European Research Council, EDP Sciences This article was generated with some help from AI and reviewed by an editor. Under Section 107 of the Copyright Act 1976, this material is used for the purpose of news reporting. Fair use is a use permitted by copyright statute that might otherwise be infringing.
    • Gotenks98 is right... Outlook (new) is absolute trash. Doesn't Mozilla have an Enterprise Version of Firebird?
  • 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
      511
    2. 2
      PsYcHoKiLLa
      273
    3. 3
      Skyfrog
      75
    4. 4
      +Edouard
      72
    5. 5
      FloatingFatMan
      68
  • Tell a friend

    Love Neowin? Tell a friend!