topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday March 25, 2026, 6:11 pm
  • 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 ... 1445 1446 1447 1448 1449 [1450] 1451 1452 1453 1454 1455 ... 1515next
36226
General Software Discussion / Re: Question- Lost folder view after win2k update
« Last post by mouser on August 12, 2005, 07:54 PM »
omg i've never seen such a thing. not good.
have you tried rebooting?
36227
Living Room / Re: Programming in general...
« Last post by mouser on August 12, 2005, 07:09 PM »
if you want to play with assembly,
we happen to have TWO real assembler pros here: jibz (one of our columnists) + boro.

and they can answer any assembly question you can dream up.

want to see some insanity, check out some of bor0's assembly programs here:
http://www.dcmembers.com/bor0

youll find [ASM Sources] for :

bcrypt.zip // basic crypt algo.
cddisabler.zip // basic API hooking.
google.zip // google search application.
mousepos.zip // reads/sets mouse position and can read asterisks (*) as well.
osinfo.zip // displays basic information about your OS.
strrip.zip // audio stream ripper.

36228
General Software Discussion / Re: Question- Lost folder view after win2k update
« Last post by mouser on August 12, 2005, 07:06 PM »
there is a button on toolbar (folders)  to bring it back :)
36229
Screenshot Captor / Coming soon.. Arrows, callouts, textboxes
« Last post by mouser on August 12, 2005, 09:10 AM »
i think i have figured out a reasonable way to support editable arrows, textboxes, callouts, etc., in screenshot captor.
look for it in next version.

if anyone has some good free clipart that would be useful for adding to screenshots (maybe like special arrows or thought balloon type things), let me know.
36230
Screenshot Captor / Re: Feature Request: Automatically add border
« Last post by mouser on August 12, 2005, 09:08 AM »
i will add this in next release.
36231
Screenshot Captor / Re: Feature Request: Automatically add border
« Last post by mouser on August 12, 2005, 01:39 AM »
my bad. damn eyes are not what they used to be.
36232
Living Room / Re: Deluxe/Pro versions: Good or Bad?
« Last post by mouser on August 12, 2005, 01:38 AM »
if only the lite version is available for download an evaluation, then its probably a matter of trying to protect themselves against crackers.

sometimes a company will offer two versions of a program and let you download a trial that asks you on each startup if you want to be limited by the lite version features, which is a kind of cool way of letting you see if you can live with the lite version..
36233
Screenshot Captor / Re: Feature Request: Automatically add border
« Last post by mouser on August 12, 2005, 01:15 AM »
heh - were there supposed to be some screenshots?
36234
Screenshot Captor / Re: Feature Request: Automatically add border
« Last post by mouser on August 11, 2005, 09:09 PM »
sure ill add that, i love easy requests.

so you want border around entire image option? or around selected region?

did you try the shadow around image option? it's quite attractive :)
36235
Living Room / Re: This "keyboard" looks so cool for customization freaks
« Last post by mouser on August 11, 2005, 07:28 PM »
another link from lifehacker:

http://www.dvhardwar...net/article6341.html

Logitech launches G15 Keyboard for gamers with LCD display and programmable keys
36236
Living Room / Re: Columnists on vacation - any new volunteers?
« Last post by mouser on August 11, 2005, 06:57 PM »
i'd be particularly interested in someone who felt they could blog about software security developments (ie talkign about spyware, recent security risks, etc.)
36237
Living Room / Re: Our 500th member - woot!
« Last post by mouser on August 11, 2005, 06:54 PM »
and of course thanks to everyone who has participated in this forum, submitted bug reports, donated to the site, and just in general made donationcoder.com a fun place to hang out.
36238
Living Room / Our 500th member - woot!
« Last post by mouser on August 11, 2005, 06:53 PM »
welcome larsthorelius, our 500th member!

this is particularly appropriate given that lars is actually one of those rare people who signed up at the forum who also donated(!)
so that makes this milestone all the sweeter.

thanks lars, i think we'll have a prize for you in the form of a donated piece of software - just give me a few days to figure out what.

36239
Living Room / Re: Programming in general...
« Last post by mouser on August 11, 2005, 06:39 PM »
those are definitely some broad questions.. i'll try to answer a few and others can jump in.

first, there are very very few computer languages that don't have free tools for programming in them.  c++, perl, pascal, python, basic, php are all languages with free compilers and IDE's (interactive development environments).

so money is not an issue; although some of the commercial development environments can make life easier.

a low-level language is closer to the simple instructions that the computer understands.  assembler is the lowest language anyone programs in today - there you would expect to write many lines of code to do even the simplest thing, but you would have complete control over everything and could expect to produce tiny and superfast code.

the higher the level the language, the more stuff will be taken care of for you by the language, so you can build bigger programs faster.

is assembly really that hard - my favorite programming quote goes like this "no one should be allowed to program in assembly"

those who program in assembly now do it almost exclusively just because they love it.  it's like a puzzle.  but its not for the faint hearted and its very time consuming to make a big program in assembly.  and a nightmare to maintain.

.net i'll let you look on the web for.  it's a microsoft invented class of languages and ways for them to talk to each other.  its also microsoft's attempt to compete with java in terms of a platform neutral web-friendly environment.

scripting languages are generally interpretted - meaning they are not compiled first into machine language for super fast execution.  this makes them generally slower for high-cpu demand tasks, but more flexible and easier to start with. (though there are subtle issues about just-in-time compilations that are starting to blur the distinctions).

the best way i can explain it is that a scripting language is a high-level language designed to let you very rapidly and easily write small utilities.  but for big full applications they are poorly suited, because of speed, resource use, and most of all because they rarely promote structured organized object-oriented code, which is important for big projects.

if you want to really learn the art of programming, i am a huge believer in object oriented programming, and thus i would suggest a language like java or c# (.net).  just because those are relatively complete, clean, high level languages.

i myself was raised on c++ so that's my native language, and it has some real strengths, but it is also burdened with legacy issues and confusing contradictions.

so if you want to write little scripts then use one of these scripting languages, etc.

if you want to make real windows applications quickly without learning the real deep concepts, then try a Rapid Application Development language like Visual Basic or Delphi.

if you really want to learn what true serious programming is all about, then pick an object-oriented language like java or c# and prepare to spend some real time learning.
36240
Developer's Corner / Re: where to start learning to program in c++
« Last post by mouser on August 11, 2005, 06:20 PM »
i revived this thread from our defunct programming section.
36241
Living Room / Re: Getting Started with C#
« Last post by mouser on August 11, 2005, 06:20 PM »
i revived this thread from our defunct programming section.
36242
Activation/License/Language Help / Any chinese readers here?
« Last post by mouser on August 11, 2005, 04:37 PM »
i came across this page which i *think* is chinese instructions on using process tamer;
i'd like to ask the author of the post permission to include the screenshots in the documentation.
but i cant for the life of me figure out how to post or get in touch with poster of the forum.

can anyone help?

http://bbs.52happy.n...id=74512&fpage=1
36243
password corral,
http://www.cygnuspro....com/freeware/pc.asp

freeware(donationware)

found via http://www.lifehacker.com

36244
Living Room / Das Keyboard
« Last post by mouser on August 11, 2005, 03:14 PM »
36245
General Software Discussion / Liberated Games..
« Last post by mouser on August 11, 2005, 03:11 PM »
http://liberatedgames.org/

Liberated Games is dedicated to cataloging all full commercial games that have been liberated and made free in playable form to the public.

36246
Flash Games and 2XL Simulator / Re: can you help with 2xl audio tape recording?
« Last post by mouser on August 11, 2005, 01:29 PM »
yep, same thing.
i'd love to add the tapes.
36247
Clipboard Help+Spell / Re: Programming Question...
« Last post by mouser on August 11, 2005, 12:29 PM »
exactly.
36248
Clipboard Help+Spell / Re: Programming Question...
« Last post by mouser on August 11, 2005, 11:55 AM »
plus im envisioning other plugins, like a weight tracking plugin, todo list plugin, etc.
all designed to set up their own database with custom fields, and helpers to make it easier to work with that info
(like the weight plugin might prompt you each day to enter your weight), etc.
36249
Clipboard Help+Spell / Re: Programming Question...
« Last post by mouser on August 11, 2005, 11:53 AM »
if done right, it might do exactly what you say.

that is a little wizard could ask: "do you want to use this tool for clipboard stuff?"
and if they say yes it would engage the clipboard plugin, create the clipboard database for them, and engage it, making clipboard options now available, etc.

if they want to use the tool for notes,
it would engage that module, create a notes database for them, with the columns useful for that, and engage it, etc.

so basically the idea is to isolate the different uses as different plugins/databases.
if you dont want them youd never be exposed to their options, etc.
36250
General Software Discussion / Re: Anyone know of a good File splitter app?
« Last post by mouser on August 11, 2005, 11:50 AM »
i store my drive images on a separate hd too, but i always break them up into dvd sized chunks just so i can burn them if i want.
Pages: prev1 ... 1445 1446 1447 1448 1449 [1450] 1451 1452 1453 1454 1455 ... 1515next