English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - April 2007

[Selected]: All categories Computers & Internet Programming & Design

What kind of software do I need? What kind of books (if any)? Are there any step by step options, or how to options?

2007-04-06 06:35:09 · 4 answers · asked by Steven M 1

I use VB2005. I want to know the registry's location of this numberand the code if possible to implement it.
Any help will be appreciated.

2007-04-06 05:55:11 · 3 answers · asked by Anonymous

What does coding a div layout mean? I make good divs but for some retarded reason, I don't know what that means.

2007-04-06 04:54:22 · 1 answers · asked by Anonymous

2007-04-06 03:36:14 · 4 answers · asked by yasmine 1

like how do u make it a software 4 other computrs to download it..

2007-04-06 03:35:36 · 1 answers · asked by Anonymous

2007-04-06 03:12:20 · 4 answers · asked by saurabh jain 1

This is part of my web page. I want it to show only one sentence depending on whether it has javascript. The problem is, if there is no javascript it shows two titles, the one in and the one in . I need it to ignore the second one.





face=Arial size="18" font color="0f0fff">Extra Pronunciation Practise




2007-04-06 03:02:33 · 3 answers · asked by Dirk 1

hi, i have a website which has a pretty nice website layout. my question is, is there a way i can have the layout work for each page i create instead of me having to insert the html and graphics manually in each new page i create?

2007-04-06 02:19:06 · 5 answers · asked by zasshi 2

can anyone pls explain this program to me?its an emergency n this is very important for my final yr engnr project.I need the explaination by thursday.so pls help..
#include
#include
#include

static void interrupt IntRoutine();
void Send();
short int Flg=0;
int Cnt = 0,Oflow=0,Mytime=0,Adval,Hbc,Hbr;
char St1[4],St2[4],St4[3];


void main()
{

TRISB = 0x00;
PORTB = 0x00;
TRISD = 0x00;
PORTD = 0x00;
TRISE = 0x00;
TRISC = 0xbf;

ADCON0 = 0x81;
ADCON1 = 0x82;

SPBRG = 64;

TXEN = 1;
SYNC = 0;
BRGH = 1;
SPEN = 1;
CREN = 1;

DelayMs(200);
DelayMs(200);
DelayMs(200);
DelayMs(200);
DelayMs(200);

LCD_SendCmd(0x01);

LCD_SendCmd(0x80);
LCD_puts("Ebc:");

LCD_SendCmd(0x88);
LCD_puts("Tim:");

LCD_SendCmd(0xc3);
LCD_puts("Ebr: Bpm");

T1CON = 0x00; // Enable Timer1
PEIE = 1;
GIE = 1;

TMR1IF = 0;
TMR1IE = 1;
TMR1L = 0xaf;
TMR1H = 0x3c;
TMR1ON = 1;

for(;;)
{

if(Oflow)
{
Oflow = 0;
Mytime++;
}


ADCON0 = 0x81;
DelayUs(50);
ADGO = 1;
while(ADGO) continue;

Adval = (ADRESH * 256) + ADRESL;

if(Adval < 100 && Flg == 0)
{
Hbc++;
Flg = 1;
}

if(Adval > 100 && Flg == 1)
{
Flg = 0;
}

if(Mytime > 3 && Mytime < 60) RD0 = 0;

if(Mytime >= 60)
{
Mytime = 0;
Ebr = Ebc;
if(Ebc > 15)
{
RD0 = 1;
}
Ebc = 0;
}

sprintf(St1,"%3d",Ebc);
LCD_SendCmd(0x84);
LCD_puts(St1);

sprintf(St2,"%3d",Ebr);
LCD_SendCmd(0xc8);
LCD_puts(St2);

sprintf(St4,"%02d",Mytime);
LCD_SendCmd(0x8c);
LCD_puts(St4);

Send();
DelayMs(2);

}

}





static void interrupt IntRoutine()
{

if(TMR1IF)
{
TMR1IF = 0;
Cnt++;
if(Cnt >= 50)
{
Cnt = 0;
Oflow = 1;
}

TMR1ON = 0;
TMR1L = 0xaf;
TMR1H = 0x3c;
TMR1ON = 1;

}

}

2007-04-06 01:02:33 · 3 answers · asked by Anonymous

Is there a website from which I could download web making software like Macromedia Dreamweaver (or some software thats similiar) for free?

I'm trying to avoid illegal downloads!

2007-04-05 23:17:12 · 5 answers · asked by HardCore 4

2007-04-05 22:39:36 · 5 answers · asked by noble soul 1

I'm so lost....I've read other people's answers but everyone got this error after installing service pack 2 for windows....mine does it because of messenger....anyone got any ideas? I tried the defragment, checked the system for errors and I did a disck cleanup as well. still the same error. help guys....thanks alot!

2007-04-05 22:19:05 · 2 answers · asked by Tibs 1

2007-04-05 22:18:28 · 1 answers · asked by gold_sunlight.2007 1

i want to design a HTML mail with images and text..... plz lemme know how to do this on photoshop....

2007-04-05 22:12:44 · 1 answers · asked by Anonymous

I'm working on a website and would like it to have its text-input boxes to have rounded corners. I can do it in a table, but I'd like to be able to do it with CSS so the look of the input box goes throughout the site.

What I have now is a 3x3 table, with the outside cells making up the border, and the inside cell being the input box. My graphics are such that the left and right middle cells are the "rounded" parts (think "(" and ")") and the top-middle and bottom-middle cells are actually 1x1 pixel graphics (the intent being that I can use this for a short input [ie, "age",] or a longer input type [street address] without having to create new graphics for each possible text-input-box length.) The four remaining cells (the corners) have transitionary graphics (that help the border go from the curved sides to the straight tops and bottoms.)

My table-based one is located at http://oddshift.com/rctest/ so you can check it out and let me know if what I'd like to do is possible.
Tnx!

2007-04-05 22:04:59 · 3 answers · asked by Mike Z 5

While using System.out.printf in Java, can I use the precision specifier to format an integer variable, such that it prepends the integer with zeros? If yes, how?


I need to get an output like

+0061

(such that 61 is the integer and the + sign is forced and the two zeros are prepended by the precision specifier)
and I tried using

System.out.printf("%+.4d" , number);

but it throws an exception to me at runtime.

2007-04-05 21:15:06 · 1 answers · asked by Anonymous

try and copy pasting this link. do not click it. copy-paste it. it doesnt work when u click it. it shows an animated JPEG format. http://naruto-arena.com/images/avatars/uploaded/193586.jpg

2007-04-05 18:40:21 · 5 answers · asked by kingsword11 2

I need to disable right clicking on a webpage, but I don't want to use Java or anyother language besides HTML. Does anyone know the code to do this?

2007-04-05 17:51:14 · 6 answers · asked by Vincent 2

2007-04-05 17:12:08 · 3 answers · asked by R.S. ŞмЇГЭў 2

I know there's a tag for autoplay & looping, but what about mute???

2007-04-05 17:02:48 · 1 answers · asked by agfreeman 2

I've just started C programming and how can I make a program to trace the ip of the receiver of the packets/data that I send across the internet? For example, I open the program and send an email and the program traces the data and gives me the receiver ip.

2007-04-05 16:53:00 · 2 answers · asked by Albert 4

I changed my screen saver & I guess it took a needed DLL that is reserved for my window system. Please help.

2007-04-05 15:57:59 · 7 answers · asked by Queen of the Nile 1

2007-04-05 12:49:40 · 2 answers · asked by marwan m 1

2007-04-05 12:39:37 · 1 answers · asked by Anonymous

2007-04-05 11:44:37 · 4 answers · asked by zboog s 1

0

I wrote this program, it does successfully compile but when running it hangs. and i think the prob must be something like wrong use of function.

#include
#include

void sp_to_dash(char *str);
char s;
int main(void){
printf("Please Enter a expression: \n");
scanf("%c",s);
sp_to_dash("s");
system("pause");
}
void sp_to_dash(char *str){
while (*str)
{
if (*str==' ') printf("%c",'_');
else printf("%c",*str);
str++;
}
}

2007-04-05 11:03:51 · 4 answers · asked by Anonymous

do
{
cout << "Please enter your grades.\n";
cout << "Period " << i << ":\n";
cin >> grade;
if(toupper(grade)== )
i++;
}while(i>0 && i<9);

im trying to make the "toupper" work so that all the "grade" entries are in capital letters. how do you do that?

2007-04-05 09:38:38 · 4 answers · asked by Kaitlyn 2

2007-04-05 09:22:26 · 2 answers · asked by William T 1

I only need 400 lines of code so a simple game.

2007-04-05 06:58:55 · 2 answers · asked by Jon S 2

fedest.com, questions and answers