-={ Request for Tutorials here .. }=-

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.
 
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.
 

clmlbx

Technomancer
How To Make A Bootable Dvd From Multiple Windows

Hi,
Pls Some One Give Me Tutorial To Make One Dvd From My All Windows Cd's ( Bootable )
__________
Vishal Gupta said:
^^
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 .
 
Last edited:

clmlbx

Technomancer
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 )
 

Sinja

The Demun
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

Burning Bright
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
}
 

Thor

Ambassador of Buzz
Googled! And Lo!
Code:
#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 *www.gidforums.com/t-2935.html
 

anantkhaitan

Burning Bright
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
 
Last edited:

Vishal Gupta

Microsoft MVP
^^
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

Burning Bright
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:
*www.thinkdigit.com/forum/showthread.php?t=21202
 

mayneu

Journeyman
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

Broken In
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

Cyborg Agent
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
 
Top