topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Monday November 17, 2025, 7:46 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 ... 158 159 160 161 162 [163] 164 165 166 167 168 ... 230next
4051
General Software Discussion / Re: Plain text editor for writers
« Last post by app103 on January 20, 2008, 10:20 AM »
Hmmm, I had exactly the same problem until I hit the "F Lock" key on my keyboard and F1 started working again.

"F Lock"? What is this "F Lock" you speak of? I do not see anything that says this on any key of my keyboard. Nor do I see this on any spare keyboards I have. Where would this be located?
4052
About the most detailed info I have been able to get is from using Wakoopa.

You can make your profile private if you don't want people seeing what you use.

Have a look around my profile to see what kind of data about your software usage you can get. Both the overview and usage pages have plenty of info.

Since the site is still fairly new, they are still adding features to it. If you don't see what you want/need, send the developers there an email and suggest it. They are pretty cool guys and they do listen.
4053
Post New Requests Here / Re: IDEA: toolbar with spec character links
« Last post by app103 on January 20, 2008, 07:32 AM »
Why does it have to be an icon? Why can't it be the actual character on the button?
4054
Post New Requests Here / Re: IDEA: toolbar with spec character links
« Last post by app103 on January 20, 2008, 07:17 AM »
Keep your eyes open for post #2000 and snag a screenshot when it happens. I am likely to miss it. I never seem to pay attention to such things.
4055
General Software Discussion / Re: Plain text editor for writers
« Last post by app103 on January 20, 2008, 07:00 AM »
I just tried Q10, and while it seems pretty cool, I had a really big problem:

F1 doesn't work, so I don't know how to do anything with it that requires a not-known-to-me keyboard shortcut. :(

Anybody got a full cheat sheet?
4056
Post New Requests Here / Re: IDEA: toolbar with spec character links
« Last post by app103 on January 20, 2008, 05:12 AM »
I should be able to do this, believe it or not.

I could use much of the code from my DC Search deskbar project to accomplish this, once that is finished and a few issues it has have been resolved.

I am still working through a few XP theme issues with it. Once I have those straightened out, you will have your special characters toolbar on your taskbar, too.  ;)
4057
Post New Requests Here / Re: idea: Application to turn off a laptop's display.
« Last post by app103 on January 19, 2008, 10:51 PM »
Found some interesting info here at OSROnline (surprise surprise). It would seem you can send an IOCTL to your monitor to get it to turn off, and windows will not interfere. Of course for the average user this may be a problem if the application were to crash or whatever, but in this case i believe it would be the perfect solution. Unfortunately i am not even close to the level of experience required for something like this so perhaps someone else *prods f0dder?* is up to the task.

I found similar info on MSDN late last night.

If his display supports a brightness level of 0, it could probably be done.

There are 3 different related IOCTL's for this to find out what is supported, what the current settings for both AC & DC are, and to change them.

Just like you, this isn't something I feel comfortable messing around with, and I really have no way to test anything I could possibly make, any way. I don't have a laptop and my LCD monitor most likely doesn't support DC power levels.
4058
Post New Requests Here / Re: idea: Application to turn off a laptop's display.
« Last post by app103 on January 18, 2008, 09:24 PM »
The manual for his A205 says:

Fn+F5 switches between monitor output modes

and there are like 10 different ones it is stepping through with internal, external, tv out, and combos of those.

Got this info from another programmer while seeking answers to this problem:

Setting the power management profile to maximum battery lifetime gets you much more additional battery time than turning off the backlight.

c't (a rather good german computer mag) benchmarks battery life when testing notebooks and the last tests didn't show a big difference between backlight on and off.


Edited to link to manual.
4059
Post New Requests Here / Re: idea: Application to turn off a laptop's display.
« Last post by app103 on January 18, 2008, 09:17 PM »
Another option is a utility called "PowerOff"

This will not work either.

3.2.7 Turn off monitor
This action will put monitor in standby (powersaving) mode. You need a monitor that is capable of this feature.

3.2.7 Turn on monitor
This action will turn on power to your monitor (get it out of stanby/powersaving mode). You need a monitor that is capable of this feature.

It is using the same API calls that we have already tried.

I'll tell you why this will not work.

It should run on Windows 95/98/Me/NT4.0/2000/XP

If he were running Windows 95 it would work. Windows 95 required code to both turn off and turn on the monitor. If you turned it off it would stay off till you made the call to turn it back on. But only Windows 95 works this way.

Power management in other Windows versions will automatically wake the monitor when mouse movement or keyboard activity is detected.

So if he were to use this application, it would behave the same as any attempt the rest of us has made when trying to make a tool to turn it off, because he isn't running Windows 95.

I guess Microsoft saw it as a poor decision to require both calls in Win95, and maybe there was a problem with prank programs turning off people's monitors and requiring a reboot to get them back on again. At some point during the development of their next OS, Microsoft decided there would never be a reason why you would want to type and move your mouse and still have your monitor off.

I guess they don't have any blind coders on laptops, without monitor power buttons, working for them.
4060
Post New Requests Here / Re: idea: Application to turn off a laptop's display.
« Last post by app103 on January 18, 2008, 12:16 PM »
What if you hooked the API that turns the monitor back on, and only allow it on when the hotkey is invoked.

If anyone knows a way to do it, you are welcome to try. I gave up.


That was all the code I compiled. After running, the monitor turned off, and everytime i moved the mouse or pressed a key it turned flashed on and back off. Half-blind, I went to start/run and tskilled my app
:)

Mine was running in my Delphi IDE, and I had notepad as the window with focus to test input ability while monitor was off. No input ability at all with my code, so I couldn't kill my app.
4061
Post New Requests Here / Re: idea: Application to turn off a laptop's display.
« Last post by app103 on January 18, 2008, 10:43 AM »
After testing, I have bad news. I can't get the monitor to shut off and stay off. As soon as any input or mouse movement is detected it comes right back on.

About the only thing that might work would be to close the lid and use an external keyboard.

I am sorry I couldn't help.


Wisdom for Coders: Never use code to turn off the monitor and use a timer to execute it repeatedly to keep it off...you won't be able to use the hotkey to turn it back on (and shut the timer off) or use your pc for anything, without hitting the reset button.  :-[

You can all stop laughing now.
4062
Post New Requests Here / Re: idea: Application to turn off a laptop's display.
« Last post by app103 on January 18, 2008, 08:30 AM »
This will be a tray icon with a menu, but I also want to use a set of hotkeys.

I can't use the win key so pick something else.
4063
Post New Requests Here / Re: idea: Application to turn off a laptop's display.
« Last post by app103 on January 18, 2008, 07:47 AM »
Well, I have it almost finished and it just needs 2 lines of code and a set of hotkeys. (then I have to test it)

I am never really good with picking hotkeys that make sense and don't conflict with other things, so maybe someone else here can make a suggestion for the 2 combos that I should use this?
4064
Post New Requests Here / Re: idea: Application to turn off a laptop's display.
« Last post by app103 on January 18, 2008, 05:49 AM »
I might be able to do this.

I just need to know what hotkey combos you would like to use to turn the monitor off and back on. They have to be something that wouldn't be used by another application for anything.
4065
Developer's Corner / Re: Free icons for developers
« Last post by app103 on January 18, 2008, 05:40 AM »
There are a lot of free ones available over at IconShock that you can use in your projects. They give you a lot of sizes and formats in each set. There is even vector sources available for most of the free ones. (those are free too)

I am not too sure what you would do with most of them, but some of them are quite usable. There are many that could be used for a media player application.

The way to get all of them is to swap them with others on their forum, so that way you get everything. This can take a bit of time. Downloading takes even longer since they will only allow you to download one set at a time and they don't support download managers.

If you want to see some of what they have without signing up, take a look at the right side of the page.

There is currently a total of 127 different sets. I have managed to download 92 of them over the last year (getting the rest today), and they are taking up over 6 gigs on my HD.  :-[
4066
Living Room / Re: What should I do with my audio CDs?
« Last post by app103 on January 18, 2008, 03:56 AM »
Music CD's, original DVD's, saved data, archived pictures, etc.  I always rip my audio CDs, but later I find myself backing them up to several places with the rest of my data and media files. So why not keep the original CDs?  Same with DVD movies - I always copy them to DVD and I only play the copies.  If any go bad, from sitting in the car getting too hot or too cold, whatever, I simply burn new copies.  I lost several original music CDs that way; sitting in my truck console in the summer they actually warped and wouldn't play - back before ripping was as common. I got the original Nero and went to town on all the rest!

I have been doing this since the days of vinyl. Back then I was copying it all to cassette and playing the cassettes. Then bought a dual cassette deck to copy cassette to cassette.

I have even copied CD's to cassette for my husband's car. (he can't be trusted with cd's)

There are some albums in my collection, like Pink Floyd's Dark Side of the Moon, that I have owned originals in every format: vinyl, 8-track, cassette, CD...and now ripped to mp3 so I can listen on my pc.

Before I owned a computer, I was really into the copying to protect my investment from damage. Now it's for both protection and more control over how I enjoy my collection.

And in an odd way, to save space: If I rip all the CD's to MP3, and I burn the MP3's as data back to a CD-RW, I can carry around about 6-10 albums on a single disk and play them in my portable MP3 CD player, and burn a new set of files when I get tired of what is on the disk. Much better than carrying around all those disks. (no, I don't own an MP3 player)

I wish there was a practical way to rip magazines to pdf. I'd sure love to have digital versions of a lot of my older stuff from the 70's & 80's. Crochet & x-stitch magazines tend to get mangled while doing projects.
4067
There is no standard 'recipe format' that could be compatible with all software. I wish there was. Then we could all swap recipe files and they could work in anything written to use it. It would also make it easier to import recipes from websites if they all followed some sort of standard.

Like there is a standard for the xml PAD files, there should be a standard for xml recipe files. I don't know why there isn't already.

The whole idea of being able to create a recipe database on my home pc, consisting of the 20 years of creations I have concocted, really appeals to me. It would make having that pc in my kitchen make more sense.

This is something I have given a lot of thought to, and I do plan on writing my own software to do it at some point in the very distant future.

There are certain features I feel an application MUST have, if it is going to be something I will be happy with, long term.

  • must be able to import/export recipes in some sort of agreed upon standard format
  • must be easy to adjust the yield
  • must be easy to convert between metric & imperial measurements
  • must include a menu planner
  • must include a shopping list builder
  • must be searchable by ingredient/type, capable of handling multiple search terms, and displaying the results in a ranked list (such as "cookies cocoa shortening" results showing all cookie recipes containing both ingredients as ranked higher than cake with the 2 ingredients, or cookies with only 1 of the ingredients)
  • must include an ingredient substitution database (if you don't have a cup of buttermilk, there should be a way to select an alternative)

These are just off the top of my head, but I wouldn't really want to create anything that didn't have those features, nor would I ever want to spend money on another recipe application that didn't have them.
4068
Living Room / Re: Browser Zoom Functionality...
« Last post by app103 on January 16, 2008, 04:13 AM »
It is great for huge images, making them small enough to see the entire image on your screen.

You can also use ctrl+ numpad +/- instead of the scroll wheel on the mouse.

Personally, I prefer the way IE & Opera handles it, rather than Firefox. The way Firefox only adjusts text size can distort & break pages and make things look really screwed up.
4069
Living Room / Re: What kind of tagging system would be appropriate for DC?
« Last post by app103 on January 15, 2008, 05:54 AM »
I think we all should try to bring as much good out of this unfortunate situation as possible...for ourselves personally, for the community, and for the rest of the world.

I think the simplest idea (if anyone actually wants it) is to have an optional filter that users can manually enable that simply prints all expletives when viewing posts with either a row of **** or an icon such as


i like that idea.. but i'd like to suggest that the even simpler and better solution is to do this via a firefox plugin.
that way users can choose for themselves which words they dont like, and can have it applied to any site they visit, not just dc.

Like I said in the IRC channel yesterday, I will be attempting to do something like this for IE as my next project. I have quite a few ideas for it. It won't be like a traditional filter used to protect children. This will be made with adults in mind and will give them a lot more control over what they see.

If someone would like to make one for Firefox that will match it, I am available to discuss ideas with. It would be nice to be able to offer them together and have them match as close as possible in features. That way there would be support for both FF & IE and not just one browser.

I am still working on my deskbar, and I still have much to learn about COM & ActiveX and programming for IE before I will be able to do this, but a lot of what I am learning with the deskbar project will be useful for the page filtering BHO/toolbar project. They have a lot in common, code-wise.

I am not sure exactly when I will be able to start work on this project or how long it will take me to complete it once I do begin. I am not even sure if this is something I will be able to do at all.

All I can promise is that I will try.
4070
I won FontExpert 2006 on a previous giveaway. I love it!

It's the only font manager I have come across that doesn't hijack file associations.

I have tried other font managers that do that and what is worse is how uninstalling those other ones never repair the association properly, which can be pretty tough to fix manually.

FontExpert will still allow you to open fonts in the default Windows font viewer without any fussing. I like that a lot.  :Thmbsup:

I am in the habit of dropping a copy of a font I use for banners & buttons into the folder with the blanks for websites I am working on. Much easier than trying to remember what I used and then finding it in my collection again when I need to make a new button. Also faster to temp install a font by just opening it in the Windows font viewer and minimizing it.

Even though FontExpert is a great app for viewing and temp installing fonts, and can really help a lot with making decisions for what font to use in a project, once the choice is made it's still faster & easier to open the font with the system's built in viewer when all you need is to put a single word on a new button later on. I don't think there is any app that will ever replace that for me and I am glad FontExpert lets me still do what I want, how I want.

I have a huge collection of fonts (over 12,000!). I never really got much use from a huge collection like that till I started using FontExpert. If you have a lot of fonts like me, you NEED this application...so try it out while there is a discount for it.  ;)
4071
Developer's Corner / Re: Comments That Make You Smile :)
« Last post by app103 on January 15, 2008, 12:27 AM »
I was given the source to an application made by my friend & Delphi mentor, BugHunter. Looking through her code is always fun. It's often loaded with odd comments, strange error messages, and easter eggs.

code for NSFW error message
Code: Delphi [Select]
  1. procedure TForm1.AppException(Sender: TObject; E: Exception);
  2. begin
  3.  application.messagebox('BugMX produced an error'#13'Just restart...Bug will fix it :-p','Shit happened',mb_IconError);
  4. end;


And I found this comment that still I have no clue what it was supposed to mean:

//JKL :-) :-| :-(
4072
Living Room / Re: Applications Stealing Focus...
« Last post by app103 on January 14, 2008, 11:38 PM »
There is another way that applications steal focus, and it's just as evil...

Do not flash my taskbar button unless you are going to give me the option to turn that feature off.

If you have a hidden taskbar (like me), when the button flashes it causes the taskbar to unhide and stick till the flashing button is clicked by the user. It doesn't matter if you make the button flash once, 3 times, or keep flashing till the user clicks...the taskbar will still lock itself in the open position till the button is clicked.

If you have seen my taskbar, you will know why I hate the button flashing.

It makes multi-tasking damn near impossible.

Yahoo Messenger and GTalk are the worst offenders of this.

Just imagine this:

I am working on a project when someone messages me on Yahoo or GTalk...  Taskbar flies out halfway across my screen, covering my work till I click the button and bring the message window to the front. I reply to the person and go back to work. A few seconds later it all repeats when they have something else to say to me.

I'd like to be able to have a conversation AND work...not choose one or the other.

There is no way to completely turn off button flashing in Windows, despite what people may think. With TweakUI our options are to flash once, flash x number of times, keep flashing, or let application steal focus. (all of these are unacceptable)

There are other options a developer can use to get my attention than stealing focus or flashing the titlebar and/or taskbar button.

  • Make some noise.
  • Pop up a tiny image in the corner of my screen that will not steal focus.

Again, these should all be OPTIONS.

And don't use tray balloons, as these have the same effect as the flashing button and I have turned that off.
4073
Developer's Corner / Re: Bow to the browser
« Last post by app103 on January 13, 2008, 04:55 AM »
I think you forgot about Opera
4074
Living Room / Re: What kind of tagging system would be appropriate for DC?
« Last post by app103 on January 13, 2008, 03:18 AM »
I have given this tagging thing some thought, and while I generally hate tags, I do have some ideas:

Instead of focusing heavily on the whole 'opt out' aspect of things, there should be more emphasis on ways it can be used to 'opt in', and be more useful to both the community as a whole and each individual member.

Private Use Tags:

This could be integrated with the bookmarks page to sort & tag your bookmarks in a kind of Gmail style way. (only you will see these tags)

This could be used to tag your saved Personal Messages in the same way. (again, only you will see the tags)


Internal Use Tags:

This would be the ones that people like mouser could use for tagging posts for the newsletters and other purposes.

Special Use Tags:

Here is where your NSFW tag goes.

I really don't want to get into the messy debate about this, but I do have this much to say...

I do not want to become a victim of someone else's need to have a tagging system to police their own mind for them.

NSFW is just that...not safe for WORK.

This is generally known as any content that is large enough or loud enough to be experienced by someone else in 'close proximity', that could be offended or their concentration disturbed by what they might accidentally see or hear coming from your PC. This is stuff you could get fired for because it is inappropriate for a work environment.

This is kind of specific to a few things:

  • 'offensive' images
  • BRIGHT and/or LARGE TEXT that might say something 'offensive'
  • sound (technically, this would be NSFW in most places of business)
  • things that make your screen flash

This is not for most normal sized text or terms like 'wtf' or a thread that might contain a light sprinkling of 'profanity'. It's NSFW...not NSFK (not safe for kindergarten) or NSFC (not safe for church) ::)

Nor is it for a thread that contains a post that contains a link to something off this site. Labeling a discussion as not safe for work, that is perfectly safe for work, based on a link that goes to a site that is NSFW is a bit screwed up. The link should be clearly labeled, but not the whole thread.


Public Community Use Tags:

It can be integrated with the RSS to allow people to subscribe to individual tags.

As far as who determines what tags apply to a thread, how about just letting any and all users tag whatever posts they want with as many tags of whatever they want? The list can be ranked by the number of times people have tagged it with a particular term and only the top 5 would apply to the post for the purposes of 'display'.

This could also take care of the problem with tagging old posts as anybody could pitch in and tag whatever ones they want in their spare time.

This would also take away the need for the thread starter to have to tag the thread and let any member that reads it and wants to tag it do it instead, and more effectively.

This is a similar method as the one used on last.fm for tagging artists & songs. They only show the top most used tags.

Any particular thread could have a ton of tags assigned to it, ranging from 100's of people tagging something as 'cool gadget' to 1 guy tagging it as 'reminds me of my wife', and all sorts of tags in varying amounts in between.

If the tags are ranked, it's also becomes a voting system as to the relevance of the tag to a post, by the community as a whole.

Of course with the internal, private, and special use tags, they wouldn't be subject to any sort of rank by the community.



How and where to display all of this? I don't know.

Except for the private use tags, I really don't want to see or use any tags anywhere else on the site, nor do I want anything added to my profile that would reflect the tags of threads I have started. That could be very misleading and give people the wrong impression about me, what I like, etc. (I often post things I think the community will like or find useful and it doesn't always reflect anything about me on a personal level)
4075
Living Room / Re: Wanted: Electronic/Searchable Holy Books
« Last post by app103 on January 12, 2008, 12:38 AM »
I just took a look at the links submitted by Knot4Prophet and on the htmlbible.com page is listed a few MS Access public domain databases for 3 different bible translations, for download. It's provided for anyone that wants to write their own software.

It's a place to start.
Pages: prev1 ... 158 159 160 161 162 [163] 164 165 166 167 168 ... 230next