topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Sunday April 27, 2025, 7:36 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 2 3 4 5 6 [7] 8 9 10 11 12 ... 66next
151
Site/Forum Features / Re: Read/Unread PM Counts
« Last post by wreckedcarzz on May 22, 2009, 09:05 PM »
That would be a nice edition, take it from:

You have 12 messages. Give out some credits.
Show unread posts (since last visit).
Show latest topics. Show recent posts (full text).
Show new replies to your posts (unreplied topics).

to

You have 12 messages (0 unread). Give out some credits.
Show unread posts (since last visit).
Show latest topics. Show recent posts (full text).
Show new replies to your posts (unreplied topics).

or something like that. Sometimes I will hit the cancel button on a new PM and then forget about it, only to find it days later.
152
Post New Requests Here / Re: IDEA: Fun with Scroll Lock LED
« Last post by wreckedcarzz on May 19, 2009, 11:19 PM »
There was something that did this to all 3 keyboard LEDs (customizable) over at the AutoHotkey forums... not sure what it was called, but it shouldn't be very hard to find (I no longer have it, but it was cool).
153
There are a few ways you can enhance the usabilty of tabs, like color-coding them or making the current tab a little taller than the rest.

You mean like this?
coloredAndTaller.png

Tab Mix Plus :up:
154
Living Room / Re: MnKz - WebBrowser 0.0.1.5
« Last post by wreckedcarzz on May 17, 2009, 05:12 PM »
You should be able to add those easy by making the first option show an InputBox, and the second two show a checkbox next to them to turn them on and off

1) As far as I know, you can't have IE addons/toolbars in your programs (they are closed source and setup specifically for IE's environment) - you CAN make your own search box, however, and have it offer multiple search engines

2) History can be done quite easily, not sure on the cookies (doable, just I am not sure how) - deleting should be simple too.

3) Dim statements keeps information in the computer's memory, like any other program. When you Dim something, it stays in RAM for different time intervals (but is always cleared on the program's closing - see examples below). If you want to save data to disk, that is a completely separate kind of thing (but quite simple).

Dim examples:

Situation 1 - Variable is always accessible within the form (and will always be using memory while the form is open):

Code: vb.net [Select]
  1. Form1
  2.  
  3. Dim AlwaysAvailableOnThisFormVariable As VariableType
  4.  
  5. Form1_Load (...)
  6. End Sub
  7.  
  8. End Form1

Situation 2 - Variable is created within an event (and will only use memory while the event is running):

Code: vb.net [Select]
  1. Form1
  2.  
  3. Form1_Load (...)
  4. Dim AvailableInThisSubVariable As VariableType
  5. End Sub
  6.  
  7. End Form1

Situation 3 - Using a Module to store variables that multiple forms can access (the variable will ALWAYS use memory, regardless of what form(s) is showing):

Code: vb.net [Select]
  1. Module1
  2.  
  3. Dim AlwaysAvailableVariable As VariableType
  4.  
  5. End Module1
155
Living Room / Re: MnKz - WebBrowser 0.0.1.5
« Last post by wreckedcarzz on May 17, 2009, 01:22 AM »
It depends - I have no idea how many API commands you can access in VB, but you can do just about anything you want as far as I know. The API isn't always the easiest (or best) way, but it can overcome problems that could not be with "normal" code. And they are only dangerous as far as Windows goes (I don't think physical harm can be done, but I don't know).

Trial and error usually, or the MSDN documents. The MSDN database can be, in a word, 'useless' most of the time though. My personal method is to code both statements and comment (via the apostrophe: ' ) one of them out and test it - if it works, I will either leave the other line or delete it, depending on if it has functions I may need later (switching to that line at a later date). To go back, you would put Browser.GoBack (and GoForward, GoHome, Stop, Reload, etc)..
156
Living Room / Re: MnKz - WebBrowser 0.0.1.5
« Last post by wreckedcarzz on May 16, 2009, 02:58 PM »
By the way, i got some questions.. please answer:

1.What is the idea if these donations and stuff?
2.What is the "best" non-waiting site to upload/download files?
3.What is the best version of visual basic?
4.What API and API-calls are? how they work and where i need em?
5.I needed lots of help-sites to get all the functions like "Browser.Forward"...Where i can see/how do people know these functions?
6.What "Dim" means?

That`s all...for now... ;D

1) The DC Credits system is a way for forum members to reward one another for good information, programs, or other things
2) If you're serious about getting into coding, mouser does have a great (:-*) FTP/web space server system that he will host for free for you
3) Visual Basic Express Edition 2008 is the newest version, so I would stick with that (Visual Studio has a service pack, not sure about the Express Editions)
4) API calls are calls to deep Windows to do special things - from basic to complex/dangerous things. I don't work a lot with API calls in VB myself (I have learned a bit from various snippets around the web), but API calls can do virtually anything if used correctly
5) I can help you with VB, and have made several small browsers myself (check the NANY 2009 thread for my small browser submission) - I have *lots* of random VB code, and would be happy to help (my contact info/send me a PM)
6) Dim statements are ways to define data in memory - for example, if you wanted to save the current URL to an area in memory, you could do something like:

Code: vb.net [Select]
  1. Dim MyCurrentURL As String
  2. MyCurrentURL = Browser.URL.ToString

Where MyCurrentURL is the name of the variable to hold in RAM, the String is the text data holder, and the 2nd line tells VB to fill MyCurrentURL with the URL value from Browser after converting it to a String (to ensure no errors during runtime).

EDIT: Also, nice work on the browser. I'm downloading it now :up:
157
Post New Requests Here / Re: Vista Multiple Mouse Cursors
« Last post by wreckedcarzz on May 12, 2009, 09:57 PM »
Yea, it does work quite nicely. It doesn't render a second cursor (maybe could be done via an image of the cursor?) but the tooltip suffices just fine :)

I'll have to leave it running and see how it works out :up:
158
Post New Requests Here / IDEA: Hide a tray icon, but be able to use it
« Last post by wreckedcarzz on May 10, 2009, 12:22 PM »
Alright, I have a kind of stealth-application request that I hope someone can help me with.

I need to have a small application that can hide multiple Notification Area icons (it needs to have an INI or some way to remember what icons), but then execute their primary double-click action when a hotkey is pressed (different hotkey for each icon) - but without showing the icon. It would be launched at startup to hide the icons, so a startup delay of maybe 15 seconds would be nice (simple enough for AHK, just make the script sleep, but not sure about other languages).

I don't know if this can be done in AHK, but if someone can manage to code it (regardless of the language) I would be very appreciative :)
159
Post New Requests Here / Re: Vista Multiple Mouse Cursors
« Last post by wreckedcarzz on May 10, 2009, 03:56 AM »
That could work, but I would like to have two separate cursors so that I know where the other one will be at. And while AHK is good, I move windows around CONSTANTLY and many of my windows have similar information (Xfire IMs, for example) that I'm not sure how well AHK would deal with (and those aren't real windows anyways, it is a custom GUI+skinning implementation so that could throw it off as well).

Maybe I'm picky, but I would like to have two independent cursors that I can see simultaneously (maybe the inactive one could be black in color/inverted colors from the default) and can simply switched to via holding/pressing Control+Shift or the middle mouse button or something.
160
Post New Requests Here / Re: Vista Multiple Mouse Cursors
« Last post by wreckedcarzz on May 10, 2009, 01:29 AM »
Right - one mouse, two cursors; I got the two mixed up :P
161
General Software Discussion / Re: My wishlist for desktop organizer
« Last post by wreckedcarzz on May 10, 2009, 01:21 AM »
Fences is awesome, I have it on my desktop computer as well as my dad's, and it has helped us both (he is a "basic" kind of computer user, point-click-and-expect kind of thing, and I am the one to tinker until I hit a BSoD :P). I have all my icons showing on the bottom of my screen, with ObjectDock Plus autohiding up at the top, and when I have too many windows open I can hide my desktop icons to help me focus on what I'm doing (someone HAS to make a version of Compiz Fusion for Windows). I don't think I will go back to the default method unless Fences becomes shareware at some high price (like $40 or something) or isn't compatible with whatever version of Windows that I am be running.
162
Post New Requests Here / Re: Vista Multiple Mouse Cursors
« Last post by wreckedcarzz on May 08, 2009, 07:54 PM »
You mean like you have 2 cursors who do the same thing or you can use 2 mouses?

One cursor with two mice - I was thinking something like a hotkey-togglable thing (ex: Hold Control+Space to use Mouse Cursor 2)
-wreckedcarzz (May 05, 2009, 04:42 PM)
I don't know why, but that sounds like a really good idea. It might be pretty useful to leave one on a window you use a lot, and then have the other one to use with windows that you close and change all the time... I don't know.
-nite_monkey (May 08, 2009, 08:48 AM)

Yea, exactly. Have one on Firefox and one on Xfire, or one on WMP and one in Visual Studio... save a couple seconds here and there, and end up being a little bit more productive (as well as interesting, I've never seen anyone with two cursors, so it would sure get some looks).
163
Living Room / Re: Revolutionary Keyboard
« Last post by wreckedcarzz on May 07, 2009, 08:30 PM »
also good in situations where the user may spread saliva on the desk,

Looks like you met the client I saw last Friday...  ;D

Probably used to a Mac.
-cranioscopical (May 07, 2009, 08:00 PM)

 ;D ;D ;D
164
Living Room / Re: The entitled generation....Are they right?
« Last post by wreckedcarzz on May 05, 2009, 04:56 PM »
Darwin:

The majority of teachers at my high school will allow late assignments at half (or at least decreased) credit in relation to full (ex: at 50% off, a 75% late assignment would be 37.5% late). There is no deadline for late work other than the grading periods (2 per semester). When they end, no more late work can be put in. Also, for the most part, the kids in my classes do turn in work on time, so very few are the "Duh.. what question are we on?" kind.


herneith:

From what I see, it isn't that work is bad or anything, but that there is a massive lack of interest (who, in the general population, is going to need to know how to figure the radius of a circular prism times Pi*R^2 ... <insert long equation from last semesters Geometry class here>). Personally, I don't mind learning, but don't make me learn things I am not going to ever use. That is probably why I got a 69% in Biology - the class itself was good and somewhat fun, but I had almost no interest in the majority of the subject. In contrast, I got an 86% in Windows Programming, and a 79% in Computer Programming and Tech (and forgot to turn in my 20% Final Project... could have had an A >:()

As for pirating software movies, games etc, I suspect it has to do with lack of disposable income.  A popular refrain amongst kids I speak with is 'Why buy it if you can get it for free?'.  Their reasoning being that they don't have the funds to procure these items. Factor in peer pressure which causes embarrassment and and loss of esteem in some instances.  For many, appearances are all such as who has the latest 'thing', you get my drift.

100% true- and when it can be had for free, disposable income (if any) can then be saved for other things that can't be downloaded (like iPods, cell phones, etc). As for peer pressure: Everyone else has the new album from <your favorite band>, and you can get it in 90 seconds via <insert method here> with your friend <name here>'s 5MB broadband internet connection... what's stopping you? 90 seconds and a flash drive later and all you have to do is open iTunes and "Sync"
165
Post New Requests Here / Re: Vista Multiple Mouse Cursors
« Last post by wreckedcarzz on May 05, 2009, 04:42 PM »
You mean like you have 2 cursors who do the same thing or you can use 2 mouses?

One cursor with two mice - I was thinking something like a hotkey-togglable thing (ex: Hold Control+Space to use Mouse Cursor 2)
166
Post New Requests Here / Re: Vista Multiple Mouse Cursors
« Last post by wreckedcarzz on May 04, 2009, 11:13 PM »
I was actually thinking about posting a request like this a couple days ago- anyone know of an app that will do this that is Vista compatible?
167
Living Room / Re: The entitled generation....Are they right?
« Last post by wreckedcarzz on May 04, 2009, 10:30 PM »
It appears that I am part of the generation that is being discussed here, so I figured I would drop in my own personal examples (both good and bad, but all honest). Before you start reading, please take into consideration that this is what I have seen and done myself, and try to refrain from flaming me because of it. This is just a look into my slice of the world, and how I view it.

This type of self-entitlement appears to be endemic in other areas of life such as education.  The students seem to think they are entitled to good grades for showing up to class and handing in their assignments on time.  http://www.nytimes.c.../18college.html?_r=1

In my experience, that totally "wouldn't" be because every single one of my high school teachers thus far has said "If you show up in class and turn in [most of] your work, you will pass" or "As long as you show up and turn in your work, you're almost sure to pass" or "As long as you don't sleep, and you turn in your homework and pass the tests with Cs or better, you will pass"...

That isn't an assumption at my high school - it is told to us as fact. Naturally you're going to carry that with you to college/university because you have been told by a certified person, with a degree (!), that you can pass by sitting in your chair and doing the majority of your work.


Uneasy ground (piracy and the like):

In reference to the initial post by Josh, I have no problem admitting that I have downloaded things off the internet that are copyrighted and whatnot (not that I am proud, but at least I don't cower about it), and the FBI probably should have been at my doorstep ages ago (one of the reasons I support free/donationware - gives me a reason to pay without requiring me to [pay or pirate]). My mom even found I pirated "Quantum of Solace" on DVD because it was still in theaters when I somehow was watching it on our HDTV during dinner. However, you look at me versus the other 2,500 kids at my school, and I suddenly become insignificant. Kids left and right use "Kazaa" and "Limewire", "music store hacks" and even "pass-around" methods (someone buys or downloads & burns a disk/flash drive/etc, hands it out in class - it is then spread out via school-provided network drives, flash drives, the computers' C:\ drives, and more). Even the school ITs themselves (in their 20s and 30s) install pirated copies of Windows XP on ALL SCHOOL COMPUTERS. (Proof from my Business Foundations class computer NSFW!)


Seeing as everyone is probably about to jump all over me, I should point out that we (myself, and the people I know) still DO buy software. Lots of kids play World of Warcraft, and buy the expansions + paying for the monthly subscription. Last Friday I overheard two Mac kids in my English class talking about the girl's new "copy of iLife '09 in a bundle with Leopard." In regard to myself, a good example is that I have purchased every copy of Need for Speed I have in my possession (Undercover was not worth it though >:().

That argument likely warrants nothing more than "I have bought ALL my software though - what does SOME mean in comparison?!?!" - While you have a point, there is a saying that my dad uses a lot, and it applies to the topic of downloading/uploading/sharing digital content as well.

Locks keep honest people honest, nothing more

If someone has the determination, the skills (or connections, no pun intended :P), and the desire to, they are going to get what they want, at the price they want (even if that price is nothing).

And it is not that I, nor most (not all) of my classmates and friends believe that we are "entitled" to what we may download, copy, and otherwise "obtain" through shaky means, but that we can. For example, if I went and asked a random adult here (30+ for means of example) at DC the question:

If there was a brand new car parked outside a dealership, with the title and all other needed paperwork inside along with the keys, would you take it?
I am certain the immediate answer would be "No!"; however, you ask most of those I know that are of driving age (16-mid 20s), and the response makes no difference - it is the guaranteed pause while they coin the idea that counts.

For the technology portion: More security, tighter security, and more laws won't stop people. Only people will stop people. And people won't stop until they can afford their usual real life luxuries, plus their virtual ones, with money to spare. And that doesn't look like it is going to be anytime soon.

 :two:

(Let the flame wars commence!)
168
Living Room / Re: Revolutionary Keyboard
« Last post by wreckedcarzz on May 02, 2009, 03:05 PM »
I've seen those keyboards here in the US- the ones I have seen are called "The Virtually Indestructible Keyboard and Mouse" (Mouse and Keyboard are also seperately available in most cases). Seen it in almost every magazine that TigerDirect sends me.

Anyone use one and like it? I've thought about getting one to take to school & friends' houses so that I don't spread germs and whatnot, and can't be blamed for that upside down F7 key (again) :P
169
not the PC cases (that would be overkill), I was suggesting you use the PSU cases (like I said, from memory they should be about the right size)

Ahh, I was thinking of using the whole case and linking a fan around (similar to what I have now, but less visible) for cooling. Not sure if I wanna dissemble working parts though... (from experience, as soon as you get rid of something you "don't need", you instantly need it again).
170
The cases are empty (two have the motherboards, but that is it) - I've salvaged everything possible that still works. I'll have to put it side by side though, as the IDE cable isn't long enough to stack (and that would be a disaster waiting to happen, making it a good 6 feet (2 meters) or so off the ground).
171
That isn't a bad idea! I'll have to mess with the space I have (and listen to my mom complain "Why is there another computer on the dresser?" :-[), but it would keep the heat down and isolated. I'll try that out in a bit.

Right now, the case is "normal" and closed, except for the front panel. Heat coming from the rear fans seems about normal (vs without side). I'll keep monitoring it and see what it does.
172
I have three other cases available from computer swaps/dead computers/etc, but they are all within -3 to +4 inches in relation to this one, and the drive cage configurations are no different (except for a Dell case, and that one is just ridiculous). I can't get a new case or drives because my mom is trying to save money, so I have to work with what I have on hand, and what I'll earn within the near future (that's why I'm looking for some type of reliable hard drive cooler that doesn't cost more than ~$50). <slightly sarcastic> I would love to get a nice Antec 1200 for it and switch it out, and have it idle as an air conditioner for my room, but that won't happen in the forgettable future :P </slightly sarcastic>

geez, you're making us work for this aren't you...

...

Is it safe to assume your not overly attached to the case or have no real aversion to cutting the thing up?

Yea, that was my plan all along. Work, work! >:D

Nah, the case looks like crap as-is (massive gashes on the right panel from screws/maintenance gone wrong, front isn't in great shape, and the left panel/door takes vice grips to open (seriously), and you have to hit it to get it snapped back into place.

I'm gonna put/bash the side door back on right now and see what happens...
173
The problem with the front fan setup though is that, if I were to cut the hole and put the fan 1/2 in 1/2 out, it would hit more resistance than it is now, because both hard drive slots would be partially blocking it (making it about 1/2 effective instead of the 3/4 or so it is now). The front won't work unless I had a smaller fan - I need something that will fit on top of/under the drives, to blow air on/over/along them. Front and side don't work, and if I went to the back of the drive cage (in relation to the front of the computer) it would have little/no cool air coming in (no fan pulling cool and fresh air in).

The noise from the old 80mm fan was from both the fan itself, and from that causing it to shake and hit the case (several times a second). Right now, I've got the (quiet 120mm) fan held on by two Phillips screws going into the "netting" holes, and it is near silent.
174
With the case closed, the computer actually seems to more heat (the rear fans blow out air that is noticeably hotter than with the side door removed), hence I removed it. I might put my temperature monitor/fan control bay into it and see what it says (the wires, oh god the wires... *shakes with horror*)...

If the drives are running so hot that they are "burning" hot then most likely the spindle lubricant has failed, eg. it's partially solidified.  I've had this happen with a drive from 2001 that hadn't been spun up for a while.

Interesting... this computer did sit dormant for a bit a while back (a couple years now) - it had a dead PSU and I, at the time, couldn't diagnose the issue (but I eventually learned what was wrong all by myself! :D). Dunno if a span of a few months is sufficient, though.

I would think that when they say "a little hot" they don't mean "burning hot".

When I say "burning hot" I mean where I can touch it for ~.5-1 second and have to take my fingers/hand away and say "Ow!", so I would assume as much.

Having the sides off the case actually decreases airflow.

probably wouldn't make that much difference in this setup

personally I'd cut an opening in the case behind the fan, mask the openings in the case either side of the fan, and mount the fan so it's drawing rather than blowing...

I could cut the hole, but the front panel *still* won't fit on with it there. I need a more "permanent" setup than the front mounted fan. I did have a blazing fast 80mm fan there before (about 1/2cm thick, so it fit great), but it is out of balance and makes an awful noise, and then it usually hits the metal case, making more noise... horrible for sleeping :'(

Also, replacement of the drives is absolutely out of the question - I bugged my dad about it back in January/Febuary, and the money is simply not available. Damn economy...
175
BTW, if the HDDs are that old and running that hot NOW is the time to backup all the data on them and replace them.

Isn't having a hot hard drive causing data loss kind of a misnomer?

I read somewhere that Google did a test on their zillions of hard drives and found that the drives that were running on the cool side were more likely to fail than the drives running hot.

That's interesting, never heard of that before. Kind of how a CPU that says at a constant temperature has a longer lifespan and better performance than those with variable temps.

The only thing I notice is that when the drives get hot, speed decreases slightly (up to 50% slower during the really extreme high temps, as seen during Analyze/Defragging with Defraggler). Right now I have a temporary 120mm fan on the front of the case, blowing air between the 2 drives (below C, above D). The case design is not very good (it was made to be a high-end office PC back when it was new, so "Home Server" kind of pushes that, especially with its age). Images attached.

Computer as-is normally (faceplate removed):
DSCN1253.JPG

Up close (both drives visible):
DSCN1254.JPG

Up close 2 (both visible):
DSCN1255.JPG

Up close (length of case visible):
DSCN1256.JPG

Full case:
DSCN1257.JPG

BTW: The IDE ribbons are *not* in the way of airflow, as the images lead to believe. The computer is also ON (and that fan is spinning) in the pictures, too (camera captured it otherwise).

Based on those pictures, any suggestions what I could do to get more air flowing? My temporary solution won't last long (sister/friend comes over, "What's this? OW MY FINGER" is imminent... :-\)
Pages: prev1 2 3 4 5 6 [7] 8 9 10 11 12 ... 66next