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

now i try to learning how to design and create a website,so i hope someone can give me some Tutorials for that.

2007-04-28 00:17:20 · 7 answers · asked by wen9x88 1

I have just made a website for my home town: www.moreni.ro , but I want to make it look much better. Do you have any ideas ? What should I add ? What should I use ? How can I make it more “user friendly” ?

2007-04-27 23:33:17 · 1 answers · asked by Municipiul Moreni 1

what do you think about my design ..

2007-04-27 19:56:34 · 3 answers · asked by matygol 1

2007-04-27 19:39:03 · 3 answers · asked by ketineni_77 1

I have a struct

struct MyStruct
{ string Airline_Node; // Name of up to 20 letters
int Flight_Node;
string City1_Node;
string City2_Node;
int Cost_Node;
int Passangers_Node;
};

In my main I made a dynamic array of structs and now I want to compare the variables

I tried

bool Compare_Flights( struct *Mystruct1, struct *MyStruct2){

//compare code

return true; //true or false depending on compare code
}

but I keep getting

error C2332: 'struct' : missing tag name

any help would be greatly apreciated :)

2007-04-27 18:58:38 · 2 answers · asked by dragongml 3

2007-04-27 18:52:37 · 5 answers · asked by user 1

we formated our webserver and installed same after installing the webserver not functioning but pinging, and our mssql 2005 management studio is working and remote services also working but our website not working
after Hardboot the same then website is working for some time. then the problme is same.

Can u give suggestion for the above problem
u can give mail on syam.sundar007@gmail.com

2007-04-27 17:58:07 · 2 answers · asked by Cash 1

I want to sell Ebooks online and I want my website to send the Ebooks to the buyer's e-mail when they hit the OK button on the Shopping cart. How do I do that?

2007-04-27 14:57:51 · 1 answers · asked by Anonymous

I need to create a program with 2 arrays. One array for Male and One array for female. Both arrays ranging from age 0 to 100. To start both arrays from 0 to 40 need a value of 100 for each age. Then a value of 0 for the rest of the ages up to 100. Then to output the array in a list. The rest of the program with calculations I think I can do I've just been stuck on this array part.

2007-04-27 14:43:43 · 2 answers · asked by Kyle 2

________________ is testing of the capabilities of the system in the user environment with actual data.
a) Alpha testing
b) Beta testing
c) Developmental testing
d) Systems testing

2007-04-27 13:22:48 · 3 answers · asked by tyrellw19 2

The _______________ approach is recommended if the system is complex and consists of many modules, because extra care must be applied in documenting requirements and the manner in which components will be integrated to ensure smooth and successful development.
a) systems development life cycle (SDLC)
b) rapid application development (RAD)
c) object-oriented systems development (OOD)
d) extreme programming (XP)

2007-04-27 12:43:23 · 5 answers · asked by tyrellw19 2

#include <90s8515.h>
#asm
.equ __w1_port=0x18 ;PORTB
.equ __w1_bit=2
#endasm

#asm
.equ __lcd_port=0x15 ;PORTC
#endasm

#include
#include
#include
#include
#include
#define MAX_DEVICES 8

unsigned char rom_codes[MAX_DEVICES,9];

#define xtal 4000000L
#define baud 9600
char lcd_buffer[33];
main()

{
unsigned char j,i;
int temp, devices;

lcd_init(16);
UBRR=xtal/16/baud-1;
UCR=8;

devices=w1_search(0XF0,rom_codes);

sprintf(lcd_buffer,"%-u DEVICE(S) DETECTED\n\r",devices);
lcd_clear();
lcd_puts(lcd_buffer);
delay_ms(2000);

if (devices==0) while (1);

while (1)

{
for (i=0;i {

temp=ds1820_temperature_10(&rom_codes[i][0]);
sprintf(lcd_buffer,"t%-u=%-i.%-u\xf8C\n\r",++i,temp/10,abs(temp%10));
lcd_clear();
lcd_puts(lcd_buffer);
delay_ms(2000);
};
};
}

2007-04-27 12:11:55 · 2 answers · asked by rickyutep 2

Hi, im just learning CSS and I have no clue why this isn't working. The external css style sheet has

.nav {
text-weight:bold;
text-size:3em
}

and the html code has



But they are not showing up bold, they are still showing up as regular text, can anyone tell me what I am doing wrong?

2007-04-27 11:30:27 · 3 answers · asked by Kristine R 4

I just need a simple html code :)

2007-04-27 11:03:40 · 2 answers · asked by [name here] 1

2007-04-27 10:27:40 · 2 answers · asked by Anonymous

i just got it and i can't figure it.

2007-04-27 10:18:27 · 1 answers · asked by Anonymous

2007-04-27 09:29:00 · 2 answers · asked by susan_heydari 1

2007-04-27 08:18:37 · 4 answers · asked by ahelas_123 1

I have the boost method written. I just need to know how to have the speed increase for a set amount of time.

2007-04-27 08:02:56 · 1 answers · asked by majiesto 2

hello everyone i just wanted to know how can i modify a text file once i opened it and searched trough it and arrived at a point where the search returned something , i want to remove that line EG :


Do While stream_reader.Peek() > -1


nome_read = stream_reader.ReadLine()
If nome_read = nome Then
"Here I should remove the current line from the text file"
End If



lista_utenti.AppendText(nome & vbNewLine)


Loop

thx in advance

2007-04-27 07:06:43 · 1 answers · asked by cor_sibu 2

Whats the best and easiest way to center a website so that it will appear centered no matter what browser or size of screen you use.

2007-04-27 05:27:04 · 8 answers · asked by john s 1

To give you an idea of what I am looking for:
Maybe if you are familiar with "Alice" a book that teaches OOP by manipulating "objects" within a 3D enviornment, says an array is like a "collection of boxes... (I assume that they didnt say LIST of boxes for a list can have an item removed and therefore, the lists order is redone) ...that hold objects". Without pseudocode, or language, could someone explain following their terms of definition, what would a two dimensional look like using the boxes? I assume one item in a box is one dimensional however, but if more than one item was in a box, is that what is considered multidimensional? If two items are in each box, is that two dimensional? Thanks ahead of time for all useful answers.

2007-04-27 04:39:56 · 6 answers · asked by avengress 4

What will be the exact code

I can't see how I said value"send messge"

I guess my stupid question would be I don't need to program any ASP or CGI script in order to make a submit button work, do I? Because I only know simple coding. And I just want the info to be said to an email address

Thanks

2007-04-27 03:28:14 · 6 answers · asked by orange 1

I've already learnt HTML and CSS like this, but have ended up spending money buying books that didn't suit before I found the one that worked. I know different people prefer books written in different ways, but there are a lot out there so can someone give me a pointer?

I say more for reference as I understand the priniciples and there are plenty of introductory tutorials available on the net. Cheers!

2007-04-27 03:27:22 · 3 answers · asked by finch 5

i'm currently searching for cool layouts for my class website...
some of them are using css or html..... so i'm not sure wether they are same... any cool website that does't require to download like createblog??

2007-04-27 03:23:59 · 4 answers · asked by help_me 1

In general, what is Service Oriented Architecture? Feel free to provide more details!!

2007-04-27 03:15:46 · 2 answers · asked by Anonymous

Hi i am vijay shankar. working as a software developer in .net.
i am facing a big problem with crystal reports.
at present we are creating static crystal reports and binding directly with dataset.the design and all we are doing static. any knows how to do this in dynamic. means by coding how we can place the objects in report.
thx in advance

2007-04-27 02:14:09 · 3 answers · asked by VIJAYASHANKAR P 1

You must have used a word processor and used its spelling & grammer checking features- would you intend to have for the grammer checking module & mentioned the limitation you have observed in your word processor module

2007-04-27 01:42:25 · 3 answers · asked by Megha S 1

fedest.com, questions and answers