topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday May 16, 2025, 1:37 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 60 61 62 63 64 [65] 66 67 68 69 70 ... 122next
1601
Unfinished Requests / Re: idea: time between two time & dates
« Last post by kyrathaba on January 19, 2012, 07:00 AM »
Corrected a minor bug. Please download the corrected version.
1602
Unfinished Requests / Re: idea: time between two time & dates
« Last post by kyrathaba on January 19, 2012, 06:32 AM »
This caught my fancy, so here ya go:

HowLongSince.png


I've attached just the EXE in one zip file (for those with .NET pre-installed or who don't want to install the program), and an Inno Setup of the program in another zip.
1603
Developer's Corner / Re: Introductory C# web-based tutorials
« Last post by kyrathaba on January 17, 2012, 06:36 PM »
I've corrected a spelling error and removed an unnecessary case statement in the switch(), and posted the walkthrough of the screenshot-capturing code here.
1604
Developer's Corner / Re: Introductory C# web-based tutorials
« Last post by kyrathaba on January 17, 2012, 06:17 PM »
Great! Glad it was helpful :D
1605
Developer's Corner / Re: Introductory C# web-based tutorials
« Last post by kyrathaba on January 17, 2012, 07:15 AM »
One of these days I'm going to get around to doing a third C# tutorial series.

For today, though, I just thought I'd share this class I whipped up for a project I'm working on. It takes total milliseconds of elapsed time and converts it to a string description. There are two static methods in the class. One of them can return strings such as:

1.308 Days
2.059 Hours

The other will return descriptions like this from the total milliseconds:

2d 5h 18m 325ms

See the attachment.
1606
Living Room / Re: Bipedal Cycling Robot Can Balance, Steer and Correct Itself
« Last post by kyrathaba on January 15, 2012, 07:16 PM »
WOW!!
1607
Notice: I'm trying to collect threads about my programs in the Other Software section of the site. I don't plan on updating this thread anymore in the future.
1608
N.A.N.Y. 2012 / Re: NANY 2012 Release: Kyrathaba's Source Code Line Counter
« Last post by kyrathaba on January 15, 2012, 01:39 PM »
Future posts about this application will appear in this Other Programs thread.
1609
N.A.N.Y. 2012 / Re: NANY 2012 Release: Kyrathaba's Hangman
« Last post by kyrathaba on January 15, 2012, 12:07 PM »
Further development-related discussion and release-announcements will be conducted on this thread.
1610
N.A.N.Y. 2012 / Re: NANY 2012 Release: Found Money
« Last post by kyrathaba on January 14, 2012, 12:17 PM »
I'm moving the discussion thread for this app to this thread.
1611
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 14, 2012, 08:12 AM »
I'm moving CPM to this thread.
1612
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 12, 2012, 09:10 PM »
v1.0.5.8 is released. Several small but important improvements.
1613
If I or someone can find me a text file listing of 9-digit zip codes with associated city and state, I can easily do this. I found this webpage but it's only got 5-digit zip codes. Using a CSV text listing, this coding snack would be a piece of cake.
1614
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 11, 2012, 08:41 PM »
The report compilation feature is done:

compileReport.png

report.png
1615
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 10, 2012, 07:21 PM »
Okay, several rapidfire releases (yes, I'm a fan of incremental dev/release). Available this evening: v1.0.5.5, featuring compilation of reports:

report.png
1616
N.A.N.Y. 2012 / Re: FINAL: The Official WriteUp for the NANY 2012 Event!
« Last post by kyrathaba on January 10, 2012, 05:54 PM »
I'm overwhelmed at the amazing demonstration of creativity and productivity. Kudos to all the contributors. You're an inspiration.

Thanks. And welcome to the site, davidqxo!
1617
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 09, 2012, 08:17 PM »
v1.0.5.0 is released.
1618
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 09, 2012, 08:16 PM »
I've got it running properly on two test PCs here, and a friends WinXP PC. Dunno about Vista.
1619
N.A.N.Y. 2012 / Re: NANY 2012 Release: GoogolBar
« Last post by kyrathaba on January 09, 2012, 03:31 PM »
LOL, cute app! Make sure it's released well before Thanksgiving  :P
1620
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 09, 2012, 03:06 PM »
First of all, I'm glad that your initial problem was solved.

As for the options not seeming to be persisted: Hmm, interesting. The form's closing event calls a method that writes preferences to file. One portion of the code writes these three options as follows:

Code: C# [Select]
  1. using (StreamWriter sw = new StreamWriter(path)) {
  2.  
  3.                 int i = 0;
  4.  
  5.                 i = (launchWhenSystemBootsToolStripMenuItem.Checked == true) ? 1 : 0;
  6.                 sw.WriteLine("startWithWindows|" + i.ToString());
  7.  
  8.                 i = (showTheSplashScreenToolStripMenuItem.Checked == true) ? 3000 : 0;
  9.                 sleep_delay = i;
  10.                 sw.WriteLine("splashDuration|" + sleep_delay.ToString());
  11.  
  12.  
  13.                 i = (showDidYouKnowToolStripMenuItem.Checked) ? 1 : 0;
  14.                 sw.WriteLine("showDidYouKnow|" + i.ToString());
  15.  
  16.             }

So, in each case, at program startup, these integer values are read from file and converted to menu options being either checked or unchecked.

I'd open the program's AppData folder and try an experiment. Open the program normally and enable these three options, then exit the program normally and examine the three relevant files in the AppData folder. Launch the program normally again (using the installed shortcut rather than a startup manager, and NOT minimized to tray). Disable the options and repeat the experiment. I'm guessing that there's something you're doing as a power user that average users aren't doing, that's causing the issue.

prefs.png
1621
N.A.N.Y. 2012 / Re: NANY 2012 Mugs, etc. -- All participants please read in
« Last post by kyrathaba on January 09, 2012, 02:52 PM »
Very nice! Can't wait to get mine!!
1622
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 08, 2012, 07:20 PM »
I should add that v1.0.4.9 doesn't complete the implementation of reporting. However, I'll release v1.0.5.0 as soon as I get the reporting interface completed.
1623
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 08, 2012, 05:49 PM »
Hey Curt, I may have found the culprit that caused your fatal error.

Make sure the following directories are deleted, along with all their files:

C:\Users\Curt\AppData\Roaming\Kyrathasoft\KyrPrayerMinder\
C:\Program Files (x86)\Kyrathasoft\KyrPrayerMinder\  (or wherever you installed the app)

Then, try installing version 1.0.4.9 which I've uploaded. There's a link in the OP of this thread. Lemme know if it works.

Still would like that translation, even if this works for you.
1624
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 08, 2012, 05:14 PM »
Can you translate the text pictured in your screenshot into English for me?
1625
N.A.N.Y. 2012 / Re: NANY 2012 RELEASE: Christian Prayer Minder
« Last post by kyrathaba on January 08, 2012, 05:12 PM »
Curt, this happened immediately upon loading the application following installation? Where the installer asks, as it's about to exit, if you want to go ahead and run the program?

Did you install while logged in as Admin?
Pages: prev1 ... 60 61 62 63 64 [65] 66 67 68 69 70 ... 122next