Welcome Guest.   Make a donation to an author on the site May 25, 2013, 07:00:02 AM  *

Please login or register.
Or did you miss your validation email?


Login with username and password (forgot your password?)
Why not become a lifetime supporting member of the site with a one-time donation of any amount? Your donation entitles you to a ton of additional benefits, including access to exclusive discounts and downloads, the ability to enter monthly free software drawings, and a single non-expiring license key for all of our programs.


You must sign up here before you can post and access some areas of the site. Registration is totally free and confidential.
 
Free DonationCoder.com Member Kit: Submit Request.
   
  Forum Home Thread Marks Chat! Downloads Search Login Register  
  Show Posts
      View this member's profile 
      donate to someone Donate to this member 
Pages: Prev 1 ... 120 121 122 123 124 [125] 126 127 128 129 130 ... 147 Next
3101  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 15, 2009, 05:27:00 AM
Worked reasonably well for me but you seem to have overlooked one essential.
Where is the button to press that will command someone to go and get the shopping?
Oh, and could that track my commands in order to predict, for example, when I next want quail's eggs.
I know that Mouser is very keen on this kind of smart software.

Oh, I know he is...neural thinker and all that.  =]  I just randomly bash the keyboard and hope it compiles.   tongue
3102  DonationCoder.com Software / Post New Requests Here / Re: IDEA: Use AHK GUI to make translucent overlay over apps that are not skinnable on: September 15, 2009, 03:00:05 AM
It works!
Thanks.

Sweet.  =]  You're welcome...glad to help.
3103  DonationCoder.com Software / Post New Requests Here / Re: IDEA: Use AHK GUI to make translucent overlay over apps that are not skinnab on: September 15, 2009, 02:27:32 AM
Give this a shot (change variables at top to suit):

[copy or print]
Header_Text := "EVD CAP 8"
Font_Size   := "56"
Font_Style  := "Arial"
Font_Color  := "Yellow"


Gui, 1: +Toolwindow -Caption +Lastfound +AlwaysOnTop
GUI_ID := WinExist()
Gui, 1: +LastFound
Gui, 1: Margin, 0, 0

Gui, 1: Font, s%Font_Size% c%Font_Color%, % Font_Style
Gui, 1: Add, Text, xm+450 ym+5  0x200 vmyText, % Header_Text
Gui, 1: Font
Gui, 1: Color, EEAA99
WinSet, Transcolor, EEAA99

Gui, 1: Add, Button, xm+40  ym+125 w120 h25 vmyButton01 gonClick, NDF + LTC mp2
Gui, 1: Add, Button, xm+40  ym+150 w120 h25 vmyButton02 gonClick, DF + LTC mp2
Gui, 1: Add, Button, xm+40  ym+175 w120 h25 vmyButton03 gonClick, PAL + LTC mp2

Gui, 1: Add, Button, xm+40  ym+220 w120 h25 vmyButton04 gonClick, NDF L-R + L-LTC simo
Gui, 1: Add, Button, xm+40  ym+245 w120 h25 vmyButton05 gonClick, DF L-R + L-LTC simo
Gui, 1: Add, Button, xm+40  ym+270 w120 h25 vmyButton06 gonClick, PAL L-R + L-LTC simo

Gui, 1: Add, Button, xm+230 ym+125 w120 h25 vmyButton07 gonClick, NDF 3-4 + 3-LTC mp2
Gui, 1: Add, Button, xm+230 ym+150 w120 h25 vmyButton08 gonClick, DF 3-4 + 3-LTC mp2
Gui, 1: Add, Button, xm+230 ym+175 w120 h25 vmyButton09 gonClick, PAL 3-4 + 3-LTC mp2

Gui, 1: Add, Button, xm+230 ym+220 w120 h25 vmyButton10 gonClick, Future button 1
Gui, 1: Add, Button, xm+230 ym+245 w120 h25 vmyButton11 gonClick, Future button 2
Gui, 1: Add, Button, xm+230 ym+270 w120 h25 vmyButton12 gonClick, Future button 3

Gui, 1: Add, Button, xm+915 ym+125 w120 h25 vmyButton13 gonClick, Future button 4
Gui, 1: Add, Button, xm+915 ym+150 w120 h25 vmyButton14 gonClick, Future button 5
Gui, 1: Add, Button, xm+915 ym+175 w120 h25 vmyButton15 gonClick, Future button 6

Gui, 1: Add, Button, xm+350 ym+710 w100 h25 vmyButton16 gonClick, Switch to NTSC
Gui, 1: Add, Button, xm+465 ym+710 w100 h25 vmyButton17 gonClick, Switch to PAL

Gui, 1: Show, x0 y0 w1280 h768, Overlay

Return ; End of auto-execute section.


onClick:
{
    Gui, 2: Submit, NoHide
    If ( A_GuiControl = "myButton01" )
    {
        ; Do stuff here.
        MsgBox, You clicked "NDF + LTC mp2".
    }
    Else If ( A_GuiControl = "myButton02" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "DF + LTC mp2".
    }
    Else If ( A_GuiControl = "myButton03" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "PAL + LTC mp2".
    }
    Else If ( A_GuiControl = "myButton04" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "NDF L-R + L-LTC simo".
    }
    Else If ( A_GuiControl = "myButton05" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "DF L-R + L-LTC simo".
    }
    Else If ( A_GuiControl = "myButton06" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "PAL L-R + L-LTC simo".
    }
    Else If ( A_GuiControl = "myButton07" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "NDF 3-4 + 3-LTC mp2".
    }
    Else If ( A_GuiControl = "myButton08" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "DF 3-4 + 3-LTC mp2".
    }
    Else If ( A_GuiControl = "myButton09" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "PAL 3-4 + 3-LTC mp2".
    }
    Else If ( A_GuiControl = "myButton10" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 1".
    }
    Else If ( A_GuiControl = "myButton11" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 2".
    }
    Else If ( A_GuiControl = "myButton12" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 3".
    }
    Else If ( A_GuiControl = "myButton13" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 4".
    }
    Else If ( A_GuiControl = "myButton14" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 5".
    }
    Else If ( A_GuiControl = "myButton15" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Future button 6".
    }
    Else If ( A_GuiControl = "myButton16" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Switch to NTSC".
    }
    Else If ( A_GuiControl = "myButton17" )
    {
        ; Do other stuff here.
        MsgBox, You clicked "Switch to PAL".
    }
}
Return
3104  DonationCoder.com Software / Coding Snacks / Re: IDEA: Double-click makes a new folder on: September 15, 2009, 12:45:55 AM
what version of AVG are you using? i think newer versions don't have this problem..

A lot of the issue is that this is a recurring problem.  A/V companies will go months without false positives and then, all of a sudden, bam, we get a rash of them.  Unless requested, I don't compile any of my AHK apps with UPX.  I don't care about the file size.
3105  DonationCoder.com Software / Post New Requests Here / Re: IDEA: Use AHK GUI to make translucent overlay over apps that are not skinnable on: September 15, 2009, 12:11:44 AM
If I see the word "Arial" or "Helvetica" in the script, I can just change it later, right?
Yes, it will be easily changed.
3106  DonationCoder.com Software / Post New Requests Here / Re: IDEA: Use AHK GUI to make translucent overlay over apps that are not skinnable on: September 14, 2009, 11:50:16 PM
Any particular font you would like used?
3107  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 05:55:07 PM
skwire: I recommend adding a "donate" button on the about box Wink

You know...this is something I've always struggled with.  To this point, I've never once a) asked for donations or b) put a donation link on any of my software or my website.
3108  DonationCoder.com Software / Coding Snacks / Re: IDEA: Double-click makes a new folder on: September 14, 2009, 05:53:46 PM
Do you happen to recall the password you used when compiling?  We can deompile it easily if so.
3109  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 12:11:51 PM
v1.0.4 - 2009-09-14
    + Added current day display to the status bar.  (Thanks, mouser)
    + Column widths and order are now saved.
    + Columns are now hideable via Menu > View > Choose columns.  (Thanks, mouser)
    * Fixed 'Food item' column not resizing when adding a new item.  (Thanks, mouser)

Website|Download

Bedtime for me.  I'll pick this up later tonight.
3110  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 12:03:03 PM
Maybe you should expand this idea into a simple website.  This way you can 'check the list' while shopping to make sure you don't buy something that is on your friends list that may be expiring.
I think the idea is perfect for a web app so its not tied to a single desktop.
yep, would make a fun website idea too, in case any other coder wants to tackle this coding snack.

Aye, somebody else feel free.  I know next to nothing about web coding.
3111  DonationCoder.com Software / Post New Requests Here / Re: IDEA: Use AHK GUI to make translucent overlay over apps that are not skinnab on: September 14, 2009, 11:58:50 AM
Turns out the safest bet is to have no overlayed boxes at all, and just one positionable, semi-transparent text overlay.
Problem is, I can't seem to separate the code for the text from the code for the boxes. When I try, I get no text...

Code for which text?  The 'CAP#' stuff?  Are you able to take a screenshot and just draw what you want where on it for me (using Paint, etc.)?

Without the boxes, I'll also have to figure out how to space the buttons around using just XY coordinates.

If they're going to be all over your screen, you'd be better off putting each one in its own Gui, # block.
3112  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 11:47:09 AM
how about show expiration data as # days (before or after expiration) when you get under 7 day timeframe?
and maybe show the current date in titlebar or somewhere else clear.

In the next build, the current date now shows in the statusbar.  Were you thinking another column for the # days data?

maybe it would be nice to have an option somewhere to turn off these columns that most users of the software probably wont use (Owner and Share) and remember that if others are going to use it, they probably wont want to be distracted by such features.  just a thought.  also maybe the left hand Food Item column should auto expand its size to fit area?

Column width and order saving is in the next build as is column selection.  The Food Item resize issue is fixed, too.  I must've broken that at some point.
3113  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 11:35:38 AM
I see you bought new whips and chains, eh, boss?  Bahahaha.   tongue tongue tongue tongue
3114  Main Area and Open Discussion / General Software Discussion / Re: Do you touch-type or hunt-and-peck? on: September 14, 2009, 10:10:54 AM
skwire: true, but see this: the more they type, the better people get at touch-typing.

Agreed.  However, I think one class to get them some basics is a good thing.  You know...trying to head off bad habits before they start.

I think people learn more from the other classes they have now, than on a class of touch-typing. That's why I mentioned it might be an optional extra class, but never a class to replace one of the current classes.

Sure, I don't condone, say, a whole series of keyboarding classes in lieu of more important ones.  I think one class should be sufficient to get the basics down.  The rest, as you say, will come with practice.
3115  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 10:05:56 AM
v1.0.3 - 2009-09-14
    + Added "In the freezer?" option.  This will put an asterisk in the new Freezer
      column and keep the line coloured blue.  You can toggle this switch using the
      appropriate entries in the right click (or Edit) menu.  If you toggle it so
      it's out of the freezer, it will take on the normal colouring rules.

  • If you don't like that solution, by all means, say so.  =]
  • Regarding the colour rule ranges, I can set them however you like.
  • As for your other idea(s), just flesh them out and I'll see what I can do.

[attachthumb=#]
3116  Main Area and Open Discussion / General Software Discussion / Re: Do you touch-type or hunt-and-peck? on: September 14, 2009, 09:06:17 AM
For people that specialize in something unrelated to computers, it's just a waste of school resources and of their own time.
I would disagree.  Even if a person is in a field unrelated to computers, they are still going to have to write/type reports all the way through their schooling.
3117  DonationCoder.com Software / Coding Snacks / Re: IDEA: Double-click makes a new folder on: September 14, 2009, 09:04:06 AM
Conquer, would you mind recompiling this without UPX compression?  That would solve the issue for all the folks that are getting the false positive.
3118  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 08:47:24 AM
v1.0.2 - 2009-09-14
    + Added ability to set owner names.  Menu > Settings > Edit owner list.
    + Added ability to read from a food.txt file.  Menu > Settings > Edit food list.

Website|Download
3119  Main Area and Open Discussion / General Software Discussion / Re: Do you touch-type or hunt-and-peck? on: September 14, 2009, 08:11:58 AM
I touch-type but have never taken formal classes or anything.  However, if a child has the opportunity to take a formal class, by all means, they should.
3120  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 07:32:40 AM
v1.0.1 - 2009-09-14
    + Added row colouring based on proximity to expiration date.

Website|Download

[attachthumb=1]

Obviously, the colours are modifiable if you don't like them.  Alternately, you could go with coloured icons for each row (or both).  Let me know.
3121  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 05:39:18 AM
Misspelling on my name in about Wink

Copied from the forum...but I'll change it as per your other post.   Wink

Do we get pie charts for share?

No pie charts.  embarassed

"Wastenot" is such an awesome name, better than 'whats in the fridge'.
I'm so impressed, and grateful !

I'll get the colours in.  What sort of breakdown would you like?  Something like this:

1) Two or fewer days to expiration equals red.
2) Between three and five (?) days equals yellow.
3) Six or greater days to expiration equals green.

Your thoughts?
3122  DonationCoder.com Software / Post New Requests Here / Re: Idea: Invert Volume on: September 14, 2009, 05:25:08 AM
Does it really make sense to you, how does the computer know how to interpret one code differently?

Yes, it does, since it's handled by the HID API.
3123  DonationCoder.com Software / Post New Requests Here / Re: Idea: Invert Volume on: September 14, 2009, 05:04:09 AM
It looks like this is going to have to be solved this via the Windows HID API as demonstrated here: http://www.autohotkey.net/~TheGood/AHKHID/

As I don't have access to your laptop, you're going to have to do the bulk of the legwork.  First of all you will need to install AutoHotkey and then download all four files linked at the top of that page.  If you can use examples 1 and 2 on that page to get me the information I need, I can write this for you.  I will assume your device will show on the "Other" tab of example 1 since it's neither a mouse nor a keyboard.  Once you have that TLC info (The UsagePage and Usage numbers), you will need to enter that information into example 2, click Add and then Call, and get me the data that it spits out when you rotate that volume knob.  I hope all this made sense.
3124  DonationCoder.com Software / Post New Requests Here / Re: Idea: Invert Volume on: September 14, 2009, 04:28:01 AM
Actually, now that I think about it...a knob would only have one VK code.  Let me see what I can come up with.
3125  DonationCoder.com Software / Post New Requests Here / Re: Idea - Whats in my fridge? on: September 14, 2009, 04:20:46 AM
Proof-of-concept: [attachimg=1]"Waste Not" download

Saving and loading are implemented.  More to come...

[attachthumb=2]
Pages: Prev 1 ... 120 121 122 123 124 [125] 126 127 128 129 130 ... 147 Next
DonationCoder.com | About Us
DonationCoder.com Forum | Powered by SMF
[ Page time: 0.116s | Server load: 0.08 ]