View Full Version : -={ Request for Tutorials here .. }=-
Rollercoaster
23-07-2006, 07:22 PM
see the tutorials that come with max
aarya
23-07-2006, 11:02 PM
i need registry editing video tutoarial
rahul_becks23
25-07-2006, 10:03 PM
Tutorials on low-polygon modeling in 3ds max.
kisorgovinda
25-07-2006, 11:29 PM
After creating a document with a lots of equations(by Microsoft Equation 3.0) in Word 97 I am unable to paste it in Pagemaker as a single Word object. I have to paste in parts. Can anybody help?
rahul_becks23
26-07-2006, 12:27 AM
Tutorials on low-polygon modeling in 3ds max.
kin.vachhani
30-07-2006, 02:36 AM
can any one give me visual basic 6.0 video tutorials link pls....
Sparsh007
31-07-2006, 09:17 PM
I want a tutorial on ethical hacking, (mobile hacking too... if possible)
can we get that??
speedrider_100
02-08-2006, 01:44 AM
Please post link for sams series - visual basic 6.0. It's urgent.
Arun Manna
02-08-2006, 10:40 PM
pls send some good tutorials on AMBA APB with Verilog codes
coolendra
03-08-2006, 12:47 AM
can we hav a tutorial on how to create a multiboot dvd to load win 98 , 2000 , Xp in a 160 GB HDD ??????
Vishal Gupta
03-08-2006, 01:04 AM
^^
This link will surely help U:
http://flyakite.msfnhosting.com/
mannu_techy
03-08-2006, 11:44 AM
please someone tell me how to instal ubuntu on system having windows xp
Banner 4 website ! ! !
wanna create a banner 4 my website, effect like below ... how can i achieve that glowing effect ??? any tutorial, site will teach me ....... professional banner ........ its 2 gud .....
http://img88.imageshack.us/img88/1639/headerwg3.th.jpg (http://img88.imageshack.us/my.php?image=headerwg3.jpg)
or
<img>http://img88.imageshack.us/img88/1639/headerwg3.jpg</img>
Arun Manna
05-08-2006, 12:39 AM
Hi
Im doing a project on AMBA APB and would require some real informative tutorials.Also recommend some good books to study AMBA APB.
Also it wld be nice if there are a few codes for help(in Verliog).
PLZ help .
u can also mail it at arunmanna@gmail.com
rakesh-the gilli
20-08-2006, 03:28 PM
Hai geeky guys! Can anyone tell me how to use the Ryan post XP-(Service Pack 2) package given in august digit to integrate all the hotfixes that released after Service Pack-2.
Vishal Gupta
20-08-2006, 05:41 PM
^^
Use RVM Integrator (http://download.ryanvm.net/files/RVM_Integrator_1.4.1.exe) to integrate Ryan Pack...
rakesh-the gilli
20-08-2006, 09:55 PM
Thanks Vishal Gupta or Vis(halGup)Ta whatever u call yourself.You are doing a wonderful job out there.But the links on RyanVM's page is not working properly,I got it working after a number of clicks.
sanju_nlp
21-08-2006, 09:42 AM
Hi Buddy,
Vishal Gupta
21-08-2006, 12:49 PM
^^
What kind of request is this??? :D
@rakesh-the gilli
u r welcome. ;)
clmlbx
27-08-2006, 04:33 PM
Hi,
Pls Some One Give Me Tutorial To Make One Dvd From My All Windows Cd's ( Bootable )
__________
^^
What kind of request is this??? :D
@rakesh-the gilli
u r welcome. ;)
hi ,
i mean windows like 98,xp, 2000 in one bootable dvd. with all bootable windows .
clmlbx
02-09-2006, 12:42 AM
Hi,
Pls Give Me Tut To Make My Cd Copy Protectable.
So It Can Not Be Copied To Cd Or Nor Any Image Can Be Make .
( Specially Data Cd )
linardni
15-09-2006, 03:03 PM
How to add some text in a video file?
Sinja
18-09-2006, 11:10 AM
hello guys its nice to see all of u helping out in finding tutorials
i really would appreciate any help from u in helping me find a correct tutorial
i am student persuing C#and asp.net in an institute and i would really appreciate a link to a direct download of easy learning or beginers or an easy to learn e book. i have tried google serch but in vain i ave found of loads of material wich are too tedious and in complicated language. and most of them are links to web pages
1. i would like an ebook in pdf or word format on C# and Asp.net
2. it has to be easy to understand and learn im shure most of u have used ebooks on this subject .
3. it obviously as to be a free dowload in pdf or word format file
i thank u guys well in advance of any help given to me in finding these books.
anantkhaitan
27-09-2006, 09:52 PM
Guys..
Can anyone tell me how to trap the arrows keys in C++
See for normal keys you can just have the ASCII values but arrow keys, Function keys, Delete key etc. cannot be trapped by that way.
Ex: Via getch() we can get the key we pressed and identify it by by its ASCII value But for arrow keys it shows some 0 77 etc.
8 -> Backspace
13 ->Return
27 ->Esc
but what for arrow keys???
i have tested it in this one.....
#include<conio.h>
void main()
{
char ch;
clrscr();
do
{
ch=getch();
cout<<(int)ch<<"\t"<<ch<<"\n";
}while(ch!=27); //here 27 means Esc
}
Googled! And Lo!
#include <stdio.h>
#include <conio.h> /* needed for kbhit and getch */
#include <ctype.h> /* needed for isprint */
int main()
{
int ch;
ch = -1;
while (ch != 0x1B) /* watch for an ESC */
{
if (kbhit()) /* check for a keystroke */
{
ch = getch(); /* get the key */
printf("%02X", ch);
if (isprint(ch)) printf("/%c", ch);
if (ch == 0) /* if it's 0... */
{
ch = getch(); /* get the next key */
printf(" %02X", ch);
if (isprint(ch)) printf("/%c", ch);
}
printf("\n");
}
}
return 0;
}
Thnks to http://www.gidforums.com/t-2935.html
anantkhaitan
28-09-2006, 11:25 AM
Thanx Man
I have got all the key values i wanted
they are in hexadecimal form
left arrow -> 0x4B
right arrow ->0x4D
up ->0x48
down->0x50
and many more
try this:
#include<stdio.h>
#include<conio.h>
void main()
{
char ch;
clrscr();
do
{
ch=getch();
printf("%02X%c%c%c", ch,'\t',ch,'\n');
}while(ch!=27);
}
example: you press left arrow
00
4B K
it means ch=0x4B
sre06
28-09-2006, 05:49 PM
can any one please tell me how to get windows vista please tell me my email id is srekus@gmail.com please reply me
Abhishek Dwivedi
02-10-2006, 11:15 AM
Any one know how to make a logon using resorce hacker
Vishal Gupta
02-10-2006, 11:31 AM
^^
U can edit %windir%\System32\LogonUI.exe file in Resource Hacker to edit the logon screen :)
U can play with changing the existing BMPs with ur desired one!
But u'll also hv to change the settings in UIFILE section, if u want to change BMP size/location.
Just play with this file, and u'll get success :D
anantkhaitan
03-10-2006, 08:20 AM
There is a easier and safer way Use Tuneup Utilities 2006
There U will not only get options for changing Logon Screens but
Boot Screen ,Default window icons and many more tweaks
For changing Boot Screens consult this:
http://www.thinkdigit.com/forum/showthread.php?t=21202
mayneu
03-10-2006, 11:29 AM
hi digitizers... i would like to know how to download song files in rm format from raaga.com....
i also know that it wont show the url also once u select the play option....
can anyone help me how to do it or tell me where i can download latest telugu, tamil &hindi songs in rm format (better). video tutorials would be better....
waiting for ur responses,.......
sre06
05-10-2006, 10:03 PM
can any tell me please the solution of this error the error is that i have nortan antivirus 2007 setup file but while installing in one error is coming the error is about auhtentication of microsoft windows istaller . if any one can help then i will be thankfull to them please help
piyush gupta
06-10-2006, 12:52 AM
use
muziqneeds.net to download rm songs
to convert then in MP3 PM me i give you the ware coz its cracked i can't post here
jz2linkinpark
08-10-2006, 08:40 PM
need tutorial on how to connect pc to tv and also tutorial on what to do with an old p3 pc, thank you
sandeep bhatia
14-10-2006, 10:54 PM
My problem is that: I have just installed my windows XP sp2(illegal copy) on my laptop & after that I hide my “c: drive & enabled un access to my D: drive for any user” through registry from my administrator account (which is made by the software itself at the time of installation).
But, now even I can’t be able to access my drives from my administrator account & when I like to access them the following line came in front of me č
“This operation has been cancelled due to restrictions in effect on this computer. Please contact your system administrator.”
Now can you please tell me up that how I can able be able to access my computer freely from my administrator account & if I can’t access these hidden drives then what is the meaning of the administrator account.
Can you help me up with this problem ????
plzz plzz reply soooon.
mtech84
18-10-2006, 07:59 AM
hi group... plz guide step by step..how i connect nokia 6600 with airtelll to pc...for internet connection...my bluetooth... is issc bluetooth device..
warrior
21-10-2006, 09:45 PM
i need a tutorials for commands in WinFIOL or OSS by ericsson gsm switching architecture.
Suhas M
22-10-2006, 05:41 PM
Can anyone please give a tutorial on c/c++. Could you make it basic as i have absolutely no experience in programming.
aneesh kalra
25-10-2006, 04:05 PM
Can somebody please post a tutorial on how to set the graphic equalizer in wmp11,
spykids_666
02-11-2006, 01:28 AM
hello guys,
it has been some years, but there was this guy who had created a home security system, which will show you on the computer which door is opened and other stuff,
this was in digit mag some years back so i dont know how he was. but i need that info on how he did this, does anyone know about it
please help me,
thanks
aadipa
03-11-2006, 03:08 PM
hello guys,
it has been some years, but there was this guy who had created a home security system, which will show you on the computer which door is opened and other stuff,
this was in digit mag some years back so i dont know how he was. but i need that info on how he did this, does anyone know about it
please help me,
thanks
I think it was [deXter] (http://www.thinkdigit.com/forum/member.php?u=220) who did all that, don't remember, it was long time back. Haven't seen him online for long though...
int86
09-11-2006, 04:07 PM
Tutorial for earing through Adsence.
This means that somebody should tell from A-Z. from getting a domain name, hosting ones own site. Maintaining it also. what steps to be taken to increase traffic. it should be in such a way all noobs in this forum should be able to get earnings .( thoughs it take long time and patience).
thoughs all these things are dealt here, but now all these should be in one place, easy to follow for everybody.
The tutorial may be of Day 1, Day 2, Day 3......... type.
the tutorials can also have more than contributors.
I think this going to be one of the best and widespread tutorials.
Bump..................
yogi23
10-11-2006, 04:36 PM
i want to know about dos configuration.
max_demon
11-11-2006, 06:59 PM
tell me a guide where i can learn VB c++ java like that very simply
using videos and much more very easily :D
k_blues24
17-11-2006, 05:49 PM
I want tips & tricks about cable modem (that probably known as broadband 256 KB/s, actual speed getting 30 KB/s) so I can increase my net speed of uploading as well as downloading.
Thank you
jz2linkinpark
17-11-2006, 07:45 PM
i want some tutorials for photoshop, such as cropping part of the image, adding a new background, making human eyes appear green. add cool hair, and adding a tattoo to the skin...thanks!
max_demon
17-11-2006, 08:53 PM
all r posting requests but noone is sending results
nish_higher
29-11-2006, 04:36 PM
I would be thankful if u tell me how to make bootable dvd of windows xp.only xp coz i don't have other windows.i know the tutorial given in digit but its for all versions and kinda high level for me.So plz do this.
Vishal Gupta
29-11-2006, 10:12 PM
^^ this thread will help u: ;)
http://www.thinkdigit.com/forum/showthread.php?t=8512
nish_higher
30-11-2006, 05:12 PM
Thanks man
sre06
02-12-2006, 10:06 PM
is there anyone who can help me i have video problem so the problem is that i have a marriege movie that has a bad qulity of video i wanted to correct it that video has much brightness and many thing i want to correct so any suggest me how to do this pls if any one can do i will be thankfull to you
nish_higher
03-12-2006, 08:50 PM
Can some1 guide me how to install linux on usb pen drive.I have no idea abt that.I have a 1gb pen drive.Plz tell which linux(i think that smaller one) should i install and how.I have athlon x2 3800+pc and another intel e6700 based and i need it for both.
Tech Geek
03-12-2006, 08:58 PM
The guide requires a thumb drive of 256 MB or larger, but other than that it should work on most USB drives. Also, in order to run Linux from your USB drive, your BIOS will have to support booting from your USB device, but most newer computers will be able to do this.
Having a full, lightweight operating system on your thumb drive could be very handy.
http://www.lifehacker.com/software/linux/how-to-install-linux-on-a-usb-drive-160132.php
amit.sirsi
06-12-2006, 03:40 PM
hi i want tutorials on ollydbg, a debugger for windows. tutorial for windbg( by miocrosoft ) will also do....:-)
manoranjan sahoo
09-12-2006, 12:22 AM
life saver
Join Date: Apr 2005
Posts: 19
1.how can make a auto run cd like digit,which can acess its see & contents
2.pls tell me either esx server OR gsx server is required(minimum requirment) for vmware work station 5.5.1
3. give full tutorial for vmware work station
anilmail17
15-12-2006, 02:25 AM
i want some tutorial on common hacking. I know this is not correct place for such tutorials but what is harm just knowing some tricks related to hacking so that we can atleast prevent us from such hacks so plz some hacker or computer genius plz provide some security tips and explain some hacking tools
vbhagyan
02-01-2007, 01:08 PM
hai guys
i need ebooks and tutorials for networks. ( all kinda )
suggest me some sites.....
shankar_ganesh
02-01-2007, 01:37 PM
TUTORIAL ON HOW TO INCREASE WEBSITE TRAFFIC PLS?!
tanmoy_rajguru2005
08-01-2007, 02:11 AM
I want a step by step tutorial for dual booting linux and windows in a new hard disk. No operating system is installed yet.
caleb
08-01-2007, 07:21 AM
How to install plug-ins, programs, sofrware in Linux WITHOUT using jaragon so it is easy for newbies of linux to understand and implement.
anantkhaitan
08-01-2007, 05:47 PM
Tell me how to download embedded jar/java files from sites..
for Eg. take this one : http://www.1980-games.com/us/old-games/nintendo/s/Spartan_X/game.php
Pravas
09-01-2007, 11:10 AM
Final Examination
Subject:-Computer Errors
Full Marks:- Excellent (And Thanks too)
**All questions are related to Windows Operating system**
I.Short Questions:-
1.Why is the higher version Os(Windows) get affected , if we try to install a lower version?
2. What are the major causes of "BLUE SCREEN OF DEATH" ?
3. What causes Minidump error?
4. How to disable automatic restart on system failure?
II.Explain in Brief
1.Why Internet Connection speed, Surfing speed and Downloading speed differs?
2.Why so many computer languages?
blueshift
10-01-2007, 10:40 PM
^^ what the hell is this?
Do you want answers to those?? lol
Siddharth Maheshwari
20-01-2007, 07:37 PM
life saver
Join Date: Apr 2005
Posts: 19
1.how can make a auto run cd like digit,which can acess its see & contents
2.pls tell me either esx server OR gsx server is required(minimum requirment) for vmware work station 5.5.1
3. give full tutorial for vmware work station
Check this for creating autoruns in a cd:- http://www.thinkdigit.com/forum/showthread.php?t=38068
Rollercoaster
22-01-2007, 11:26 AM
Final Examination
Subject:-Computer Errors
Full Marks:- Excellent (And Thanks too)
**All questions are related to Windows Operating system**
I.Short Questions:-
1.Why is the higher version Os(Windows) get affected , if we try to install a lower version?
2. What are the major causes of "BLUE SCREEN OF DEATH" ?
3. What causes Minidump error?
4. How to disable automatic restart on system failure?
II.Explain in Brief
1.Why Internet Connection speed, Surfing speed and Downloading speed differs?
2.Why so many computer languages?
search this on google u will get direct answers
Like BSOD (http://www.google.com/search?hl=en&safe=off&client=opera&rls=en&hs=JCX&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=what+is+the+major+cause+of+Blue+screen+of+death&spell=1)
--------------------------------------------------------------------------------
Can somebody post links to video tutorials / lecture videos on various computer science subjects that are available online for download or streaming?
I would like such videos particularly on traditional subjects like C and Java programming, web technologies, data structures, DBMS, Operating Systems, Data communications, algorithm analysis etc.
Also, are multimedia CBT or video tutorials commercially available in the market on the above topics?
Thanks in advance for any info.
techno geek
05-02-2007, 05:35 PM
Can Somebody Show T Tutorial Of Online Buying.
Means How T Cash Transfer Takes Plzce Between 2 Users.
Yhnx A Ton Un Advance
Duress
06-02-2007, 08:47 AM
HI, i want to have a command line in my taskbar. Anyone know how to do that?
blueshift
06-02-2007, 09:02 AM
HI, i want to have a command line in my taskbar. Anyone know how to do that?
First you need to enable Quick Launch on your Taskbar.
Right-click the taskbar and goto Toolbars>Quick Launch
Then create a shortcut for Command Window. Search for file cmd.exe in Windows\System32 folder. Create a shortcut for that file.
Then cut paste that shortcut and place it in the 'Quick Launch' folder. For that right click blank area(not on the icon) in Quick Launch and click Open folder.
You are done!
C Nagaraj
11-02-2007, 11:32 PM
1. I request Tutorials for Google Sketchup
2. How to create Animated GIFs in Imageready without background. I would like to past 2 Animated GIFs one above the other. Even when I kept them as transparent, backgroud comes when I paste in HTML documet.
Thanks
C. Nagaraj
kunaltech
18-02-2007, 11:28 PM
can anyone give me basic networking tutorial
caleb
18-02-2007, 11:42 PM
Tutorial for booting into multiple Linux Distro's with Win XP as the default OS i.e. atleast 2 Linux Distros and 1 XP
Thanks in advance.
tanush_89
21-02-2007, 11:46 PM
a tutorial for changing expression of human faces in photoshop.
I really wanna know how to do that ????
shashanktyagi1
25-02-2007, 11:45 AM
anyone has any idea how to communicate with sound card using c,c++ or java. mean not just the simple beeps but all aspects. and also how to understand the codecs of any audio format. whichever is easier.
arunoday
09-03-2007, 09:09 PM
excellent
krates
10-03-2007, 03:10 PM
Hello Friend Can You Please Give Me An advice Of How To Create Keyboard Or Mouse Functionally Flash Games
Rollercoaster
10-03-2007, 03:47 PM
here u go friend
Search Google for Actionscripts tutorial (http://www.google.com/search?hl=en&safe=off&client=opera&rls=en&hs=Ied&q=flash+actionscript+tutorial&btnG=Search)
Tutorial at adobe (http://www.adobe.com/support/flash/action_scripts/actionscript_tutorial/)
Could u plz tell me "HOW TO HIDE A FOLDER"? dont tell me the trick using "ALT+<code>" thats prety much old. tell me the one which doesnt use a third party s/w.
Need a litlle help :
Is their a way by which if some1 for say try and open WWW.yahoo.com & instead yahoo it opens smthing else say www.thinkdigit.com
i.e. the browser directs a request to yahoo.com to the url www.thinkdigit.com
Thanx in advance
Rollercoaster
26-03-2007, 06:12 PM
no... thatz called hijacking. and illigal in most forms of usage
nagarjun_424
27-03-2007, 12:19 AM
Can anyone give me a link to a tutorial on how to make a simple camera (digital or normal roll camera)?
I looked on google, but could not find any. I would prefer the digital one!
Rollercoaster
27-03-2007, 09:31 AM
make a camera!!! really!!!
i guess u could look into amature film cam kits but they are expensive and barely available.
http://scientificsonline.com/images/250/30{}30392-76.eps.jpg
sample (http://www.amazon.com/Creative-Toys-Ltd-Build-Camera/dp/B00006416W)
but if ur aim is to learn optics then u should try building a telescope 1st
lenses are available easily
but if u r looking for film chemistry or photo mechanics(behaviour of light specific to imaging) etc then u should prob join a certification course
u can also start by making a pin hole camera (http://www.google.com/search?hl=en&safe=off&client=opera&rls=en&hs=QY2&q=make+pinhole+camera&btnG=Search)
ambandla
27-03-2007, 09:40 AM
Which is the best book for SAP and for Mainframes for a beginner in computers. My friend did B.tech in electronics and has very little programming knowledge.
Which one is better to go for ? SAP or mainframes?
no... thatz called hijacking. and illigal in most forms of usage
Well i know thats calld HIJACKING from my antispyware manual......anyway no illegal stuff ....But this can be really useful in some cases & i mean this in a gud way
Thanx 4replying
assddd
31-03-2007, 02:56 AM
please give a tutorial for how to increase download speed with megaupload.
i hate downloading in the speed of 20 kb/s.
nagarjun rayapuvari
31-03-2007, 09:20 AM
i want the tutorials of the digit from jan 2007 cd or dvd
Prabhagaran
02-04-2007, 03:08 PM
we need a jsp tutorial to connect to SQL server 2005 express edition thru tomcat server
Josan
02-04-2007, 08:19 PM
I need a Tutorial for Audio Production
NucleusKore
08-04-2007, 04:43 PM
I would like to learn javascript. Where can I start. IS there any good book/site? Thanks
khattam_
09-04-2007, 09:04 PM
hi i want tutorials on ollydbg, a debugger for windows. tutorial for windbg( by miocrosoft ) will also do....:-)
http://www.tuts4you.com
I would like to learn javascript. Where can I start. IS there any good book/site? Thanks
http://w3schools.com/
It contains many tuts including that of javascript.
xbonez
15-04-2007, 12:15 PM
can someone plz give a detailed tutorial on how to rip a dvd to avi format using GordianKnot rip pack (its quite complicated)
davinci
16-04-2007, 02:35 PM
pls post a tutorial on making audio(mp3) dvd that can be played on a dvd player(Sony DVD Hi-Fi)
a_meet18
23-04-2007, 04:14 PM
Dear All,
I need the Corel Draw 10 Tutorial but in a single file so that I can print it in one shot.
Pls advice me the link or any trick thorugh which I can get it printed in one shot from corel's help. Aur just let me know the site frm where I can get it..
Thanks !
HI, can nebody tell me how to display " Empty Recent Documents" option in the context menu on right cliking the "recent documnts" option in "start menu".
As like in vista this option comes by default. so can ne1 help me????
i think there must b sum haking to do this.
Anup Nair
27-04-2007, 09:49 AM
Hi, can anyone post Gimp or Paint.Net tutorials.
&&*Shivangi
03-05-2007, 12:36 PM
A tutorial on DIV layouts?
avtarkaint
18-05-2007, 09:42 AM
please any one provide me the tutorial for USF-5 flashing software for mobiles i have purchased it since 6 months but dont know to use it plz guide me friends without damaging my mobile. its includes 12 cds & 90 mobiles cables.
my email id ia avtarkaint@yahoo.com
karmanya
21-05-2007, 07:24 AM
can someone give me 2 tutorials i need one for LISP for beginners. If someone could point me in the right direction.plus im creating a magazine its small scale only about 4-5 pages so whats the best way to put it on the net? i was thinkin of makin an independent site as i need to retain the layout and dont want to just use a pdf
netguy
28-05-2007, 09:38 AM
Convert dat files to mpeg formats..!
I have a lot of video cd format files ie dat files...
i want to convert and write them to dvds
atleast tell me a software that can help me to convert them in to mpeg files
thnax in advance.....
caje143
30-05-2007, 01:47 PM
Hi there,
Well i have got the tutorial for creating a Windows XP Pro Bootable CD with Service Pack 2 integerated with it.. now my query is that i want to create
a Windows XP Bootable DVD with MS OFFICE 2007, Nero, Windows Media Player 11, System Drivers (Important ones like Graphic Drivers, Modem Drivers, Motherboard Drivers etc) and also some other necessary softwares...
well is it possible to create this DVD make it bootable and also i want all these applications that i have mentioned above to be installed automatically, i.e. once i install XP, i want all the drivers and softwares also to be installed...
i already have NLITE with me.. Can you'll suggest me as to how to create this above mentioned DVD?
i have already created a WINDOWS XP with Service Pack2 integrated installation(Unattended)..
Help me with the above situation..
Thanks
shyamno
30-05-2007, 06:08 PM
Can anyone suggest some tutorial sites on designing a Website through Dreamweaver right from basic layout to advanced ones......
poorlyduck
01-06-2007, 01:18 AM
does anybody know ho to make the gadget for the sidebar, I made a design for pc options (turn off, hybernate, lock, log off and mute) but I need help in how to transfrom it to a desktop gadget. thank you.
http://img230.imageshack.us/img230/6606/pcoptionsxd7.png
enticer86
07-06-2007, 01:35 PM
HOW to surf PC internet on cell model Nokia 5200?
i shud btter ask :
How to Create a wireless Internet connection between your device and laptop/PC.
phuchungbhutia
11-06-2007, 02:03 PM
where can i get tutorials or docs for subjects like ..........
AGRICULTURE & FORESTRY
urgent requirement
netguy
13-06-2007, 10:57 AM
Hi all!
I use bsnl's dial up internet....
I have a firewall installed on my computer..
when ever I observe my net speed is get slowed down
i can see tat a process called..."Generic Host process for Win 32 service "
and it uses most of the band width
and most of my band width is used by it
wat is this thing and how could i get rid of this....could some one help me
thanx in advance
venki88
18-06-2007, 08:44 PM
Thanks a lot
jyoti_ranjan87
30-06-2007, 12:29 AM
would anyone please tell me how to create an xp cd that will have all my mother board drivers included..so that i dont have to go for installing drivers after installing xp
hahahari
01-07-2007, 05:25 PM
Triple boot XP,VIsta and Ubuntu.XP and vista in a single HDD and ubuntu in another HDD!!
Pls someone make a tut for this.
and how to remove vista frm a dual boot of Vista and XP :((
linux_ubuntu
01-07-2007, 06:08 PM
Is there any IRC Channel for DIGIT ??? thinking to creat one if not :)
Devaa
07-07-2007, 07:39 PM
Any way you can tell me where to get tutorials about VPN
shyamno
10-07-2007, 08:47 PM
Can anyone post a HTML code for adding a bookmark image on a webpage ...so that when clicked it adds the webpage to Favourites for IE,bookmark for OPERA and FIREFOX....
Mrinal Mohit
11-07-2007, 03:01 PM
Hey guys, i gotta make a project on my school. it's gonna be a map which shows which teacher should be in which class room a la a static Marauder's Map.
I think this is how it would work : A database would store all teacher's timetables. When the user enters a day and a period, then a map with all classes marked on it, will show the teacher in the respective room.
For e.g. say teacher XYZ goes to class IX-A in the 2nd period on Tuesday.
Then, when the user queries for Tuesday - 2nd period, XYZ will show up on IX-A on the map.
I have very little previous experience with DBMS's and programming. Can some1 tell me how to go about it
Mrinal Mohit
13-07-2007, 03:05 PM
Bump
Mrinal Mohit
15-07-2007, 04:10 PM
Bump Again
::.BLOOD!GOD.::
27-07-2007, 01:54 PM
I WANT A guide/tutorial to change my Xp in mac os
plz send me some transformation pack or method to change its look
phuchungbhutia
28-07-2007, 01:24 PM
to make XP look like mac ...... there is a kit called flyakite macosx just make a search in this forum or just google it ..:-)..
answer.com is a great site to make searches for tutorials
http://www.flyakiteosx.com/download/
Tech&ME
16-08-2007, 08:56 AM
Please provide tutorials on adobe premiere 6.0
Can anyone tell be how to insert a transition into the single mode editing in adobe premiere 6.0
Links to Free tutorials site will also do.
ajy0903
17-08-2007, 11:31 PM
Please reply me about mine.
I was trying to make autorun cd/dvd, just like in this picture:
http://www.cdshell.org/files/contributions/reanimatolog/bcdw0s.png
I know this one made using the BCDW and CDShell.
I tried to make like above picture for few months now.
But i failed to it still now.
So, can anyone knows or knows how to make like above picture, please reply me.
psnegi26136
20-08-2007, 10:24 AM
Hey friends, can anybody give a tutorial on Avermagic pro plus e9.
nish_higher
26-08-2007, 08:43 PM
how about something regarding installing vista ultimate (retail) on macbook pro?
patelpk
27-08-2007, 02:19 PM
Hi There,
I Have a tataindicom Broadband connection.
We have 2 laptop in our room but only connection
Both of the laptop are having 1 Nic each + Wireless connection .
With these 2 lan setups can i setup the internet connection sharing between my laptops.
Similar tutor is available for Dataone Connection with 2 Nic here (http://www.thinkdigit.com/forum/showthread.php?t=54225).
If yes please tell me Steps to do so.
Thanks in advance.
napster007
27-08-2007, 04:37 PM
could some one tell me how to forward my ports on my mtnl router? i'm having problems on my utorrent. the version of my mtnl router is T-KD 318-EUI
could some one tell me how to forward my ports on my mtnl router? i'm having problems on my utorrent. the version of my mtnl router is T-KD 318-EUI
entrana
31-08-2007, 02:57 PM
guys cud anyone tell me how to measure the temp of a p4 524, and how to overclock it
mayhemabhi
01-09-2007, 12:33 PM
Tutorial 4 AutoCAD 2008 (Autodesk)
ankushkool
01-09-2007, 01:00 PM
where can i get free php tutorial???
Ganeshkumar
01-09-2007, 08:22 PM
I am planning to develop a Mobile Application....
Any1 have any tutorial regarding thissss?
can anyone tell me how to access and delete files of one computer via another on lan .
Guys....
I want to Schedule a Task In My Computer............
I do know from Control Pannel and then Schedule Task.......
I need to schedule a task by applying codes...........i.e. through programming.
kpk_chandra
21-09-2007, 11:56 AM
can ayone post macromedia dreamwaver(web designing ) tutorial + microsoft frontage
Abhishek Dwivedi
23-09-2007, 09:23 PM
hi guys....can ne one give me da step by step guide on doing what @nui has shown in dat pic???....thx
mansigarg83
25-09-2007, 02:09 PM
Hi,
I have a compaq presario with S-video 7-pin connector and a sony trinitron tv..
I have bought a s-video and red-white-yellow connector from nehru place..
Still I'm not able to see my laptop screen on my television..
I've tried using 800 X 600 resolution also..
Are there some kind of drivers required for this..
please help me by providing a tutorial for the same
Abhishek Dwivedi
05-10-2007, 05:53 PM
A MEGA TUT needed.....
HOW TO CREATE A BOOTABLE DVD WITH XP-SP2 AND INSTALL A FEW SOFTWARE DIRECTLY WHILE INSTALLING XP...
plzz reply verrrrrrrrrrrryyyyy soooooooooonnnnnnnn
arpitt
26-10-2007, 03:00 AM
needs a tut on assembling a pc with full of pictures that can works good for a novice
Charan
26-10-2007, 03:12 AM
needs a tut on assembling a pc with full of pictures that can works good for a novice
Please reffer to this thread Basic Guide purchase a New System (http://www.thinkdigit.com/forum/showthread.php?t=66140) it doesnot have pics but its awesome guide for newbies as well as experts
mukul
29-10-2007, 10:56 PM
can some tell me how to grab all emails from a web page ... and get them seperated with a "," ....plz some one!!! really urgent
omsharma3
01-11-2007, 05:52 PM
how to download songs from raaga?
plz explane step by step...
NucleusKore
01-11-2007, 06:26 PM
how to download songs from raaga?
plz explane step by step...
That's piracy, you'll be reported
Nikkoru
04-11-2007, 03:39 PM
Does anyone know how to create a artwork style similar to that of GTA3?
If possible any tutorials or samples? Thx alot!
talkingcomet
07-11-2007, 07:41 AM
hey guys.. how about designing a forum like this??? ;)
Vegeta
15-11-2007, 02:02 PM
Guys i like the look of I.E.7 more than Firefox i have a trick to make Firefox look like I.E.6 but not I.E.7.Is there any trick
Vegeta
17-11-2007, 02:33 PM
Thanx for not replying i did it myself:mad:
mobileman
20-11-2007, 12:17 PM
hi,
well i m interested to get tutorials or e-books on Adobe After Effects.
be kind to provide, if u can
thanking you in advance
mobielman
vaibhavtek
22-11-2007, 09:15 PM
Guys i like the look of I.E.7 more than Firefox i have a trick to make Firefox look like I.E.6 but not I.E.7.Is there any trick
pls post that trick in this section.
sourav
22-11-2007, 10:17 PM
set up freeproxy help
fun2sh
26-11-2007, 03:40 PM
hey plz post a tut to make a multi-bootable dvd (containin both xp n vista installations together)
rajhot
29-11-2007, 10:10 AM
guys can anyone post a gif tutorial :)
Riteshonline
04-12-2007, 01:25 PM
Hi friends,
Please give me a step by step guidance to create a windows XP live CD.
PS:- I have searched through the entire forum for the key word "Windows XP live CD" and didn't find anything. :)
Just Read Nov 2007 issue!!!
saubrl
05-12-2007, 10:17 PM
Can u tell me how i can make a program(antivirus) load faster at startup in Vista? Any registry tweak??
avtarkaint
13-12-2007, 05:00 PM
i want to cut a scean or a video clip for 5 min or more from a dvd movie so how to do it & how to convert vcd movie to dvd movie & also how to burn 4 vcd movie in one dvd. please guide me becuse i m new bie to pc.
WBR
AVTAR
yamraj
28-12-2007, 08:15 PM
tu terminate sm 1 s acoount on orkut
anuvb101
28-12-2007, 11:30 PM
yhxxxxxxx
Hey.....i need a tut to crete a simple website and host it..?
I am complete nebie to this filed.
puneet_84
05-02-2008, 05:05 PM
i would like to have a tutorial on creating video DVD and VCD from AVI files. how to have more than 2 movies in a single DVD.
how to split movies so that can be burned to CD.
please include this...
vaibhavtek
05-02-2008, 06:00 PM
^^ go here (http://www.thinkdigit.com/forum/showthread.php?p=739850)
bigdaddy486
09-02-2008, 09:29 PM
i want to overclock my 56K modem.. plz help
vivekrules
10-02-2008, 08:51 PM
helllo..
many of my chat friends have made this type of site...
but i have no idea from where they have done this site...
here is the link . http://www.friends-wap.net/
this site is used for mobile.. and it is open only in opera
Can anyone teach me how to make this type of site ?:confused:
vivekrules
13-02-2008, 11:27 AM
??? arey yaar koi to reply do ??? ...
amitava82
13-02-2008, 12:35 PM
go to w3school http://www.w3schools.com/wap/
rohan_shenoy
13-02-2008, 01:22 PM
helllo..
many of my chat friends have made this type of site...
but i have no idea from where they have done this site...
here is the link . http://www.friends-wap.net/
this site is used for mobile.. and it is open only in opera
Can anyone teach me how to make this type of site ?:confused:
It works only in Opera because it supports WML pages.
vivekrules
13-02-2008, 08:24 PM
go to w3school http://www.w3schools.com/wap/
ey thx amitbhai.. can u tell me where i can find the script of that site which i want.. caaz m totaly new in this ..please..... :)
It works only in Opera because it supports WML pages.
ye i know.. thx 4 teling but m finding free script of tat site ! mate
INS-ANI
16-02-2008, 09:41 PM
Hi friends.
I need a tutorial on how to use a wifi enabled lappy as a wireless router.
I have a dell inspiron 1420, with vista basic, and i am going to replace Vista be Xp very soon, and my frnd has sony vaio CR23 with vista home premium.
Also add the pros and cons. How may it affect my lappy?
bigdaddy486
01-03-2008, 05:06 PM
how can i overclock 56k modem?
jamifahad
04-03-2008, 05:51 PM
i want to create my website. i am good with html but i want advanced features like flash movie as an intro and all sorta advanced feature..Can anyone let me know where i can find tut for same?
Thanks
nvidia
04-03-2008, 05:57 PM
how can i overclock 56k modem?
:lol::lol:
Dude you cant overclock a modem:lol:
legolas
04-03-2008, 06:09 PM
:lol::lol:
Dude you cant overclock a modem:lol:
:D nvidia, I very well understand what you mean. And yes, you can not overclock your modem. It would make sense only to alter the electronics of the modulation and demodulation the modem does... you might tweak the modem by searching for certain registry settings, or the 20% BW held by QoS packet schedule or stuffs like that. But IMO, they are as futile as any other. with 56 kbps the max you will get practically is between 40 and 56 kbps (5 -8 KBPS)
On the other hand, since you pointed this thread here (http://www.thinkdigit.com/forum/showthread.php?t=81564&page=7)
have a look at this,
http://www.google.co.in/search?source=ig&hl=en&rlz=1G1GGLQ_ENIN241&q=overclock%20a%20modem&meta=
Gigacore
04-03-2008, 08:09 PM
whooa!.. is this a noobish question or just desperate ?
Anyway, one can increase the speeds of a modem by increasing the baud rate.. but there is nothing such (overclocking) applies to modem.
nvidia
04-03-2008, 08:37 PM
@legoals: Can you please point to a correct link that will tell me how to Overclock a modem instead of google?:rolleyes::D
Btw, that QoS thing can be done by going to gpedit.msc and changing a few settings. This will give you an additional 5-8KBps speed while downloading but this just doesnt classify as Overclocking.
Getting some extra bandwidth isnt Overclocking. Well, if i disable images in FF or IE, then the speed to load a page will increase. Can i call this OVERCLOCKING my browser???:rolleyes::D
AFAIK, there is no such thing where you can "Overclock" a modem.
Please have a look at This (http://en.wikipedia.org/wiki/Overclocking)
legolas
05-03-2008, 02:40 PM
@legoals: Can you please point to a correct link that will tell me how to Overclock a modem instead of google?:rolleyes::D
:D it can not be overclocked. I just wanted to show you the guy who asked this wasn't alone. Its a misconception in using the word "overclocking" for basic registry tweaks which you can see from the google page search I linked here! Hope I cleared the misconception! :D
bigdaddy486
05-03-2008, 04:17 PM
Ok then.... Can i build a Fm radio station to stream music to my mobile from my computer? what all should i need?
nvidia
05-03-2008, 05:34 PM
:D it can not be overclocked. I just wanted to show you the guy who asked this wasn't alone. Its a misconception in using the word "overclocking" for basic registry tweaks which you can see from the google page search I linked here! Hope I cleared the misconception! :D
Oh.. Ok... Now i understand what your post meant:D
Adam Cruge1
08-03-2008, 10:55 AM
I want to create a complete theme using Resource Hacker......Please give me tutorial to do so......do not tell me to download something from net coz I want to make it on my own....Plz help me...
I am new here...but love to have such kind of forum....
Thank you....
tech_devil
08-03-2008, 11:04 AM
First Thing u must post this in Request For Tutorial Here Thread.
Second Thing do not tell me to download something from net coz I want to make it on my own
U are downloading Resource Hacker from the internet.
Third Thing, PM Vishal Gupta I think he has made many new themes by this own.
redhat
08-03-2008, 12:20 PM
You, cannot make themes using Resource Hacker.
With Resource Hacker, you are only changing the "resources", i.e. Images, vids, etc, in a file.
A theme is one, wherein, you can use apply it on another computer with just a click...
So, do you want to create a theme? Or just modify ur computer?
Adam Cruge1
09-03-2008, 11:45 AM
Plz tell me step by step how to edit resource using resource hacker to change the looks of my computer....
Vishal Gupta
09-03-2008, 02:24 PM
^^ It'll help you:
All About Resource Hacker in a brief Tutorial (http://www.askvg.com/tutorial-all-about-resource-hacker-in-a-brief-tutorial/)
aircombat
19-03-2008, 01:56 PM
Please post a general guide on how to secure a website running on Apache.
helloansuman
25-03-2008, 09:40 PM
I have internet connection but it ias very slow.So I can't update it.I have the updates files from it website which are in *.nup extension. But I don't know how to update & where to place the files. Can U please help me.I don't have any fast internet connection near by. Pls help. Thanks.
aravind.gslv
05-04-2008, 11:20 PM
Is there a Maya tutorial here
if so pls give link..
search function not working for me :(
hari_sanker_r
06-04-2008, 08:17 AM
.
hari_sanker_r
08-04-2008, 09:06 PM
.
DigitalDude
08-04-2008, 10:08 PM
^^^^
1. Stop using CAPS :lol:
2. Dont put your authentication details here...
3. delete all your forum software (you cant use Vbulletin without license (costs $160), yabb is extinct, phpbb3 admin is complex...)
4. get SMF forum from simplemachines.org or MyBB
5. refer to the popular tutorial for creating your own forum by gigacore here http://www.thinkdigit.com/forum/showthread.php?t=75983
6. dont spam your forum here after you have created it :p
and for your previous query refer my signature ;)
_
hari_sanker_r
10-04-2008, 10:34 AM
upgraded to this config yesterday :
asus m2n mx mobo
amd athlon x2 4000
nvidia xfx 8400gs
2x1gb ddr2
samsung hdd (ide) 80gb
need tut ot overclock !
vijubizz
14-04-2008, 03:00 AM
Pls someone help how to create a multiboot bootable dvd that can install windows Xp and Mandriva linux
quan chi
01-05-2008, 10:25 PM
how to overclock your gpu.need a good step by step tutorial.
thetillian
03-05-2008, 11:43 AM
I needed flash action script as iam a new, can you help me with basics of flash actionscript.
rahul_bhageria
06-05-2008, 11:16 AM
is there any way to bind an exe file with a jepg file?
is there any way to split the contents of a dvd into two cd's so that the installation automatically asks for the second cd after installing the first?
dheeraj_kumar
06-05-2008, 08:18 PM
Find an exe joiner at
http://www.google.com/search?client=opera&rls=en&q=exe+binders&sourceid=opera&num=100&ie=utf-8&oe=utf-8
I could give you programs, but they are all detected by AV, since virii operate that way. You could code your own... :D
Depends on the contents of the DVD... if it contains cab files for example you can just copy them into 2 cds. The installation will automatically ask the next CD. Or else, make an ISO with 700 mb parts using Alcohol 120% and write each to a CD.
paranj
31-05-2008, 09:19 PM
^^using MagicISO might help too. but u need to [magical word] it cuz its not free! :D
cooldudie3
04-06-2008, 04:30 PM
Any one can open a tutorial about cleaning ur system, like deleting Temp files, cleaning your system and cleaning the registry?
For the registry, I need precise details on how to!
Abhishek Dwivedi
04-06-2008, 09:56 PM
HI cooldudie3...wel the best way for cleaning and on tuning you Computer is via using Tuneup Utilities 2008 (paid) if you are using windows XP
paranj
04-06-2008, 10:15 PM
its not necessarily paid. u can..............well PM me :D
Vishal Gupta
04-06-2008, 10:41 PM
Any one can open a tutorial about cleaning ur system, like deleting Temp files, cleaning your system and cleaning the registry?
For the registry, I need precise details on how to!
Following tutorial might help you:
How to get FREE Space in Windows (http://www.askvg.com/how-to-get-free-space-in-windows/)
thewisecrab
20-06-2008, 02:48 PM
Is there a Maya tutorial here
if so pls give link..
search function not working for me :(
Google not the best search engine for nothing
Anyway link to Maya Tutorial (http://www.highend3d.com/maya/tutorials/)
G33K n G4M3R
25-06-2008, 02:40 PM
How to install software on ubuntu without internet?
Please give me step by step information.
avinash.gamerboy
08-07-2008, 07:45 PM
Installing WORDPRESS on webserver..
if any one has posted pls reply wth link..i am visiting digit after some months so not updated.. :P
can any 1 post a tut on "Utorrent setting" 2 get max speed 4 downloads ?
tut on adding or working with multiple accounts in gtalk ?
Need a tut on how to customize Drupal. I can't get head or tail of the admin panel.
casanova
06-08-2008, 11:51 AM
I would appreciate a tutorial that would guide on changing blogger themes. I mean how to conveniently add those jscripts and meta datas from the previous themes to new one.
And modding those themes, I mean if the themes comes with one sidebar, how to add another one.
prateekdwivedi1
08-08-2008, 07:25 PM
how to get help right from the basics to pioneering blender.PLEEEEEEEEEEASE HELP:(
Most Wanted
08-08-2008, 08:20 PM
^Crazzy bluez.
__________________
need a tut stepwise to make ringtone of any MP3 song.
rakee
13-08-2008, 09:03 AM
I need some tutorials or ebooks on Oracle EBusiness suite-Oracle applications-Modules-User guides
Varad Dilip Choudhari
16-08-2008, 10:16 AM
How To Install A New Theme Template On Blog.
_______________________________________
http://askvarad.blogspot.com
Deof Movestofca
24-08-2008, 02:54 PM
@aadipa i need both for simple bootable and unattended install. thanxLike Unattended Windows Introduction (http://unattended.msfn.org/unattended.xp/)?
Deof Movestofca
27-08-2008, 03:14 PM
A tut to modify charmap.exe to make it more useful (mainly, I just want to be able to resize/maximize it and remove the "CONTROL "Ad&vanced view", 119, BUTTON, BS_CHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 3, 280, 64, 12" and instead make the Advanced view items permanently visible) would greatly appreciated.
adamgil
31-08-2008, 07:18 AM
please post the links for video tutorials of C,data structures.
tut on installing OS on a NEW hdd & old hdd ......
Krazy Bluez
02-09-2008, 04:01 PM
^Crazzy bluez.
Mujhe bulaya kya ???
I need tutorial on how to create addons for Bart PE and how to slipstream software's on to Windows CD's (XP & VISTA)
A list of all good sites and forums for customizing and tweaking's...
am new 2 "BLOGSPOT" ...... plz can any1 post tuts on blogspot ???
categoring, indexing & 3rd party tools 2 b used .......
Deof Movestofca
09-09-2008, 02:26 AM
I need tutorial on... how to slipstream software's on to Windows CD's (XP & VISTA)
Are you looking for something like this: Unattended Windows Introduction (http://unattended.msfn.org/unattended.xp/)?
Krazy Bluez
12-09-2008, 03:27 AM
^ Not unattended one bro...lol I meant for the Bart PE (http://en.wikipedia.org/wiki/BartPE)
s_arka_r
26-09-2008, 04:38 AM
can sum1 plz post a good tutorial on using AVR microcontrollers for beginners?????
lovelyCliffHanger
28-09-2008, 10:28 PM
Hi there,
I m gonna get this iDeneb_v1.1_10.5.4
And I need a good tutorial on Installing Leopard On a PC with existing XP Vista and a Mandriva Spring 2008 Power Pack.... Someday plzz... explain..
I wanna boot Leopard, Mandriva, XP and even Vista!
jaggi
30-09-2008, 01:00 PM
I want to know briefly about TFT & LCD monitors.
Advantages & Disadvantages of TFT over LCD..
Can u pls mail me at jagdeep89@gmail.com
i_am_crack
06-10-2008, 08:49 AM
Dear All,
Thank you for reading.
I have .tiff (image) files with multiple image frames. (that means multple images in one .tiff file) Can any one put some light to how to extact all the images from the .tiff file.
Please do the needful
Thanks and regards
eBRo
http://i35.tinypic.com/f3tlj4.jpg
I need to extract the outline of the above picture. The background needs to be white with the sketch in black. How do I go about it in photoshop?
rock_kiran
19-10-2008, 08:12 AM
I want to create a 3D photoflow using Flash CS3.I tried many tutorials.And I want to get familiar with the term "Papervision 3D".And If possible suggest More Flash Effects Tutorial
also.I look forward hearing soon From Digit.
Thanks.
vBulletin® v3.7.0, Copyright ©2000-2008, Jelsoft Enterprises Ltd.