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

Programming & Design - January 2007

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

I want to make a website where I can let Myspace members can get free layouts and stuff. I just don't know what to do or anything. I don't want to copywright or anything.

2007-01-31 03:13:04 · 1 answers · asked by cangianojustin 1

2007-01-31 03:08:45 · 5 answers · asked by tobb y 1

Im a bit stuck can anyone help please? x

2007-01-31 03:05:14 · 5 answers · asked by LuluHC6366 2

there are only 2 textboxes which are to be used . in the first textbox, the last number will be entered and on the second textbox, the output which is the sum of all the numbers (factorial) should be displayed.

2007-01-31 02:59:15 · 4 answers · asked by zerreanne 1

I have tried using the powerpoint method of inserting the file but I can't seem to get it to work. any suggestions?

2007-01-31 02:38:49 · 4 answers · asked by Don L 1

I have to create a Swing application and that should have a free space where the user can draw into and i need to extract the pixel information too.
Which class should i use???????10 points waiting for U................

2007-01-31 02:25:09 · 1 answers · asked by shreya 2

what is the password for sql plus in oracle 8i ?

2007-01-31 02:17:49 · 4 answers · asked by vishnu c 1

I have a picture image saved to my documents and i want to add it as a background to my myspace page. can somebody tell me how to do that or what the code is that i can put in so it will show up?

2007-01-31 02:17:30 · 1 answers · asked by kayla b 2

2007-01-31 01:53:10 · 1 answers · asked by map 1

ar.open {SQL}
ar.(execute) "Updates in (SQL form)"
ar.open and ar.close are fine but theirs no .execute,
how come theirs no .execute command? do i need to check something in the refrences? hope u can understand the question

2007-01-31 01:47:29 · 1 answers · asked by 3nl70b1 1

I have been onto a web hosting site who offer HTML validator checking, when I pointed it towards one of my HTML pages it came back with no character encoding found. Is there something needed to be done to my html pages before up loading them to the web (via FTP client) before publishing. I am new to this.

2007-01-31 01:24:27 · 10 answers · asked by multibite 2

2007-01-31 01:11:52 · 5 answers · asked by Anonymous

That is as simple as inpout32?
I want to send and receive numbers with a com port, not fussed about messages, just single numbers. I want to use usb-parallel adapters, but the description below shows the difficulty.
An early problem I've had is finding the address for comm ports, I once used an UART connected to a serial port, and used inpout32 successfully. But the problem since has been finding that address with added ports such as USB, so I am stuck.

2007-01-31 00:58:16 · 3 answers · asked by Chris cc 1

2007-01-31 00:29:19 · 7 answers · asked by ma21dhav 1

Thomas, Cricketsoda etc. are all a bit basic. Does anyone know any good advanced ones?

2007-01-31 00:18:22 · 1 answers · asked by oz_cruickshank 2

I have good skills with Excel, Access, VBA and VB. I would like to build a website that will enable users to log in and enter data which will be saved in an ms access database over the web. I have some experience writing raw HTML code but am basically a novice when it comes to web site building. What is the best tool/package I should learn in order to deploy this type of application on the Web.

2007-01-30 23:46:18 · 4 answers · asked by Westport 2

and how to learn the basics of it...?

2007-01-30 23:26:51 · 15 answers · asked by darkael08 3

where can I download cc ??
its full name is c compiler I guess
i want it for writing c programs

can anybody give me the links to download it

2007-01-30 22:44:13 · 3 answers · asked by genie 1

2007-01-30 22:16:33 · 3 answers · asked by maha l 1

with asp.net i am implementing the following: when the user clicks the asp button, a javascript confirm box appears. Now, I need to transfer the user's response back to my server code. I am achieving this using a hidden field (where the value of the hidden field changes according to the user's response). My problem is that the HiddenField's value does not change until i "re-click" the button (when the page is posted back). I want to know if there's a way to update the value of the hidden field in my server code without having to perform a postback (by re-clicking the button)

2007-01-30 21:36:58 · 2 answers · asked by butterfly 1

2007-01-30 21:32:04 · 7 answers · asked by Usman Bhatti 1

So the text is sideways along the length of the paper. Thanks so much!

2007-01-30 21:27:37 · 3 answers · asked by ?? 2

i want to make a new forrmatiin to my pc so if any one can help me to do it step by step

2007-01-30 21:24:55 · 2 answers · asked by bassem1002001 1

hi all
i need help with my vb coursework. is it possible for anyone to help me with count in vb. i need the customer to be allwed three attempts to login otherwise it shuts down the program.
tank u very much.

2007-01-30 21:04:59 · 5 answers · asked by Aydiid A 1

I'm using perl (MIME::Lite) to send emails on different languages the body of the mail looks good view in the correct encoding in my outlook 2003 but the subject: looks like this subject:"????" it seems the encoding doesn't reflect on the subject filed.
is this impossible and are there any Email address in different languages for example: japname@japdomain.jp ?

2007-01-30 21:03:35 · 4 answers · asked by Roi L 1

The college wants us to get a software that has to run on the computer and it has to be along with data flow diagrams, software development life cycle, and the coding of the entire software should also be done.Can you please tell me from where can i get such a software or can you please provide me from which website can i get this information.

2007-01-30 20:53:22 · 5 answers · asked by adx_19 1

Hi,
I made an activex, that downloads a file to client..I converted cab file with package&deployment wizard, and signed it..
There is an progressbar on the usercontrol(activex control form)..
and set the progressbar value appropriate value while downloading..
I use these lines:
---------------------------------------------------
Do
DoEvents
bData = InetDwn.GetChunk(CHUNK, icByteArray)
DoEvents
If i Mod (downloading_file_all_size / 10) = 0 Then
' I used this line to increase progressbar value every 10 percent
'downloaded
DoEvents
DoEvents
ProgressBar1.Value = ProgressBar1.Value + 1
DoEvents
DoEvents
i = 0
DoEvents
DoEvents
End If
DoEvents
DoEvents
Put #intfile, , bData
i = i + 1
Loop While UBound(bData, 1) > 0
'but progressbar is appeared after all downloading and show %100

HELP!

2007-01-30 20:50:00 · 3 answers · asked by mobildeveloper 1

fedest.com, questions and answers