Username: Save?
Password:
Home Forum Links Search Login Register
    News: Keep The TechnoWorldInc.com Community Clean: Read Guidelines Here.
Participate in the fastest growing Technical Encyclopedia! This website is 100% Free. Please register or login using the login box above if you have already registered. You will need to be logged in to reply, make new topics and to access all the areas. Registration is free! Click Here To Register.
  Show Posts
Pages: 1 ... 4 5 6 7 8 [9] 10 11 12 13 14 ... 27
113  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Orkut FunZone / Re: Cool Scraps Collection on: December 14, 2006, 10:38:29 AM
Hi Dear...
How r u...
...This is 4 U....
.,.,.-.-,-,._,''''''''.,.,.-.-,-,._,'''''
..) `'-::;'>'(.......) `'-::;'>'(
./ . . . ` (. .\...../ . . . ` (. .\
.| . . . . .'). .|....| . . . . .'). .|
..\ . . . . / . /.....'\ . . . . / . /
...(\'._. /);/).......(\'._. /);/)
....`;;-;-;;?.........`;;-;-;;?
.......`)|?...............`)|?
.........||. ,,-'|...........'||. ,,-'|
....( \.'||./_,/.......( \.'||./_,/
......`\||/'________`\||/
||||||||||||||||||||||||||
~~~~~~~~~~~~~~DIL SE~~~~~~~~~~~~~~~~~~~
Chale gaye ho dur kuch pal ke liye, Dur rehkar bhi karib ho har pal ke liye, Kaise yaad na aaye aapki ek pal ke liye, Jab dil me ho aap harpal ke liye.

Ek jaam ulfat ke naam, ek jaam mohabat ke naam. Ek jaam wafa k naam, puri botal bewafa ke naam, Aur pura theka doston ke naam

Daag ansuon se dhoye hain,
Jab bhi tanha huye hain roye hain,
Dil mein kyonkar na uge yaad teri,
Dil mein tere hi khawab boye hain.
114  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / C/C++/C# / Pass Variables to a New Thread in C# on: December 13, 2006, 10:11:50 PM
When you create a new thread in .net 1.1, you cannot pass any parameters to the ThreadStart delegate, which makes passing startup variables difficult. This recipe shows you an easy workaround.

Since the ThreadStart delegate doesn't accept parameters, you need to set the parameters somewhere before you create the new thread. What we'll do is create a small class to store the variables, and then create a function in the class to pass into ThreadStart.

Code:
class myObject 
{
   public string myvariable;

   public void RunThread()
   {
      // use myvariable here
   }
}

You should really use properties instead of a public variable, but this makes the code sample simpler. The method that you pass into ThreadStart must be void, and accept no parameters.

Here's the sample code for creating the object, passing in a variable, and then using the object to create the new thread:

Code:
myObject m = new myObject(); 
m.myvariable = "test data that the thread will need";

// Create the new thread, using the function
// from the object we created

Thread t = new Thread(new ThreadStart(m.RunThread));
t.IsBackground = true;
t.Name = "UpdateBookmarkThread";
t.Start();

Now when the thread is started, it will have access to the variables stored in it's own object instance. This technique is very useful if you need to open multiple threads, passing in different information to each.
115  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Windows / Re: Is it sooo !!! on: December 13, 2006, 09:17:20 PM
Check Out this article http://www.technoworldinc.com/index.php/topic,491.new.html
116  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Windows / Vista: Should I Install 64-bit or 32-bit Version? (x64 vs x86) on: December 13, 2006, 09:16:09 PM
Deciding which Vista version to install can be a difficult decision and can really limit what you can do with your system. Here are practical hints which should help a user decide which version to install. I decided to write this guide after installing 64-bit and 32-bit vista systems on several test boxes.

With the gaining popularity of 64-bit chipsets/processors, many users now have the ability to run either 64-bit versions (x64) or 32-bit versions (x86) of software and operating systems. However, if you only have a 32-bit processor, your choice is easy...

You can only install the x64 version of Vista if you have a 64-bit processor.

For those with 64-bit processors, it seems obvious that installing the x64 version of vista would be ideal. The x64 version has increased security based around the 64-bit structure and programs compiled for 64-bit processors will likely run faster.


What's the problem with installing Vista x64 on a 64-bit system?

1. Most hardware does not currently have 64-bit drivers.

Out of all the boxes that I have installed x64 Vista on, I could always get it to boot up. However, the lack of 64-bit drivers for many hardware devices typically left me without any chance of burning DVDs or listening to audio. Networking devices and card readers were frequently not supported as well. Vista x64 is pretty but it's not very fun without network access or audio.

2. In Vista x64, any driver that is not properly signed will not be able to enter the kernel and will fail to load.

Think how many times you have ignored that warning that a certain hardware driver is not properly signed. With vista x64, if your driver has not be blessed by Microsoft, it will not work. Forget about it.

I have tired to get around this by booting with the F8 option Disable Driver Signature. It doesn't make a difference.

3. Vista x64 currently does not backward support most x86 (32-bit) drivers.

For the most part 64-bit systems run 32-bit applications very well. However, vista x64 doesn't run x86 drivers... at least at this stage.

4. Vista x64 does not support 16-bit software.

You may think that you never, ever run 16-bit software. However, XP actually handles this legacy fairly well.

5. Very little x64 software currently exists.

x64 software runs better on a x64 system with an x64 OS. Currently, however, there is very little x64 software out there. If you have that magical combination, you do get a nice performance boost. Currently, however, this combination is way to far ahead of the curve.


Conclusion:

Most users with 64-bit hardware should install the 32-bit (x86) version of Vista.

Vista x64 is the turning point for operating systems as they transition to 64-bit. Currently, however, the majority of users will be very disappointed by installing Vista x64. The lack of 64-bit drivers for most current hardware will be very disappointing and frustrating to most users. Why push for 64-bit now anyway? The performance gains promised by 64-bit will not be seen for years until 64-bit compiled versions of software is the norm.

You may download torrents of the vista installations here.

Direct Download Links:

Windows Vista 32bit - English

Windows Vista 64bit - English
117  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Windows / Re: Is it sooo !!! on: December 13, 2006, 09:11:10 PM
Windows Vista has 2 Versions, 32 Bit and 64 Bit version..so you can install according to your hardware specification.
118  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Windows / Re: How to get screen shot of desktop on: December 13, 2006, 09:08:27 PM
same procedure can be followed for orkut also..
119  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Jobs (IT Industry) / Re: Jobs Websites on: December 13, 2006, 08:50:39 PM
yes it does comes in IT..It mainly deals in outsourcing of business processes.
120  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Messengers / Chats / Yahoo Messenger Virus Removal Procedure!! on: December 13, 2006, 10:25:46 AM
This brand new virus is now everywhere. It is spreading so fast as it targets users of Yahoo Instant Messenger. Users can protect themselves by not clicking on links sent to them by other users or contained in Yahoo! Messenger status messages of those contacts on their contact list.

If your computer is infected with this powerful Trojan /virus, it sends the nsl-school.org url to all of your friend list in yahoo messenger using your ID and expect that in only a few hours many of your friends will get infected with it.

So how to remove this manually from your computer ?

1: Close the IE browser. Log out messenger / Remove Internet Cable.

2: To enable Regedit

Click Start, Run and type this command exactly as given below: (better - Copy and paste)

REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableRegistryTools /t REG_DWORD /d 0 /f

3: To enable task manager : (To kill the process we need to enable task manager)

Click Start, Run and type this command exactly as given below: (better - Copy and paste)

REG add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_DWORD /d 0 /f

4: Now we need to change the default page of IE though regedit.

Start>Run>Regedit

From the below locations in Regedit chage your default home page to google.com or other.

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main

HKEY_ LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main

HKEY_USERS\Default\Software\Microsoft\Internet Explorer\Main

Just replace the attacker site with google.com or set it to blank page.

5: Now we need to kill the process from back end. Press Ctrl + Alt + Del

Kill the process svhost32.exe . ( may be more than one process is running.. check properly)

6: Delete svhost32.exe , svhost.exe files from Windows/ & temp/ directories. Or just search for svhost in your comp.. delete those files.

7: Go to regedit search for svhost and delete all the results you get.

Start menu > Run > Regedit >

8: Restart the computer. That's it now you are virus free.
121  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Tips & Tricks! / Re: Using Orkut From Mobile Devices! on: December 12, 2006, 05:58:08 PM
Thanks for this Taruna. I'l surely try this..Smiley
122  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Non-Technical Orkut / Re: News: Social networking: Hello there! on: December 12, 2006, 05:56:52 PM
nice piece of info sameera..Smiley
123  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Non-Technical Orkut / Re: Orkut News: The new danger on: December 12, 2006, 05:55:48 PM
One shud be careful while uploading pics on orkut albums..
124  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Javascript Tricks / Re: Shake ur friends orkut page on: December 12, 2006, 05:53:19 PM
send this script to your friend as a scrap!
just copy paste from here to his/her scrapbook.
125  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Firefox Extensions, GreaseMonkey Scripts, etc! / Re: Two New Scrap Flooders on: December 12, 2006, 12:31:51 PM
nice scripts sameera..Smiley
126  THE TECHNO CLUB [ TECHNOWORLDINC.COM ] / Javascript Tricks / Re: Change The Background Color of Orkut on: December 10, 2006, 06:41:41 PM
Hi Redheart,
many users are experiencing the same problem today..so kindly wait for some time..try using the Firefox Browser. Let me know if u still face any problem.
Pages: 1 ... 4 5 6 7 8 [9] 10 11 12 13 14 ... 27
Copyright © 2006-2023 TechnoWorldInc.com. All Rights Reserved. Privacy Policy | Disclaimer
Page created in 0.079 seconds with 23 queries.