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

Programming & Design - October 2007

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

I am unable to do anything in my File Manager. I can't delete files, I am unable to edit html and save editing.
I get the message "we've encountered an error...1. Please check and make sure you have typed correctly. This error has been recorded so that we can check into any problems. If you continue to get this error, please try again later. If you need help, please visit our help area."
I waited several hours and still have this problem.

2007-10-20 17:55:30 · 3 answers · asked by college man 2

was it 4i ; 7i ; 8i ; or 9i?

2007-10-20 17:15:15 · 2 answers · asked by Sunshine 4

i badly need your help. thank you.

2007-10-20 16:18:07 · 3 answers · asked by curiousgal 2

1. Using scanf to read the limits for a loop

Write a program that asks the users for two intergers, and then uses these numbers as the limits for a for loop. The program simply counts between the two values, and displays the current number on the screen.

2. Adding a function

If we consider the value displayed in (1) above to be an angle in degrees, write a function that convert this value to radians and then displays this along side the value in degrees. To make use of pi, include "math.h" within your code, you can then use the pre-defined constant M_PI, M_2PI...etc

2007-10-20 12:15:51 · 4 answers · asked by VeVe 1

When you take computer science do they teach you programming from BASIC to C# or you can pick the one you want to learn. I am learning c++ but in the future when i go to college I want to learn c#. SO how does this work?

2007-10-20 09:30:57 · 1 answers · asked by Best Helper 4

I've used assembly for a few years now, and have always switched across to DOS to use it. This is fine, but I'm sick of windows so I went to Unix. Most of my simple programs Unix (gcc) will take in to account for but the more advanced it wont. Does anyone know where I can find a tutorial that will transition me from one to the other?

2007-10-20 08:59:27 · 1 answers · asked by Anonymous

Im satarting a new business and i would like to open a web page, but im new to this whole thing so i dont know anything about creating a page. Can someone help me

2007-10-20 07:27:07 · 7 answers · asked by Xaltec 1

2007-10-20 07:16:20 · 2 answers · asked by Diana B 2

I worked really hard on a movie (using iMovie HD) with my best friend last night, and then when I logged onto my YouTube and tried to post it, it wouldn't work. I think it has something to do with the format, as video-posting sites will only allow certain formats. I want to know if you can change the format, and if so, how.

2007-10-20 06:42:10 · 2 answers · asked by festafoo 2

i have some backgrounds and some characters i want it so ay i want to put it on newgrounds or somthing b ut first i have to make it
is there some software i can download

2007-10-20 05:10:41 · 2 answers · asked by arm0990 1

On windows XP is it possible to put a link to a program somewhere on the welcome/login screen? This link should be able to be run a program without logging on a user account.

2007-10-20 03:08:10 · 7 answers · asked by Anonymous

system analysis point of view not programmers

2007-10-20 02:01:00 · 4 answers · asked by Anonymous

Hi

I run the following:

// get page results
$sql = "SELECT timestamp1,title,author,substring(body,100) FROM test.articles

ORDER BY timestamp1 desc
LIMIT $startindex, $perpage";

.. etc:

print "

";
print $row->body;
print "
";
print "

";

i get error:
PHP Notice: Undefined property: stdClass::$body in C:\Inetpub.....

the column type for body is test, i read here that substr doesnt work with longtext:
http://bugs.mysql.com/bug.php?id=15757

so i also tried left(body,50), doesn't work!



thanks in advance

aurevoir

Tovia

2007-10-19 20:06:51 · 2 answers · asked by jam 5

I'm trying to tweak my Dreamweaver code. Right now I have a three-column layout with a footer, and I would like the footer to automatically be positioned below the longest of the three columns, instead of having to specify the position of the footer in pixels. How can I do this?

2007-10-19 18:28:02 · 2 answers · asked by drshorty 7

I know this might sound like a silly question but, can anyone explain to me (in beginner's terms) how to change the spacing between text when using Photoshop? (I have the 7.0 version)
I was typing out some text in trying to create a specific image and hit "enter" & the space bar to go to the next line as I always do but, I noticed that the 2 lines of text are too far apart from what I am trying to do. How do I de-crease the space between the lines so that my 2 lines of text are closer together?

2007-10-19 16:45:01 · 3 answers · asked by Anonymous

I have a site I might like to transfer to a new hosting site. THis is a auction site. Any ideas and would they be able to help me with technical problems?

2007-10-19 15:08:31 · 10 answers · asked by mdjgirl7 4

I want my table to have a border but NOT the cells. How can I do this?

2007-10-19 15:04:40 · 4 answers · asked by Anonymous

Here's a simple example of a javascript.



Whenever I run programs like these, Internet explorer gives me a warning as follows:
To protect your security, IE has restricted this webpage from running scripts or ActiveX controls that could access your computer. Click here for options. It sometimes also warns me that it could damage my computer too. I am able to run it after asking IE to allow access. How can I run javascripts if such is the case? Any comments or suggestions? I do have anti-virus installed.

2007-10-19 12:30:09 · 4 answers · asked by cidyah 7

i downloaded my pictures to my labtop and now i want one of them as a screensaver or wallpaper

2007-10-19 12:08:44 · 8 answers · asked by mzpuff2006 2

2007-10-19 11:52:51 · 7 answers · asked by Anonymous

hi,
sometimes(in Autocad) when i measure the distance between to points,objects,etc. i come across some odd decimal quantities,for example 4.99888 instead of 5 as it should be,is it the permitted telorance of the softwear(can i adjust it?)? or is it a result of my mistake in drawing(how can i make it gone?)?


I appreciate in advance...

2007-10-19 11:45:19 · 1 answers · asked by Anonymous

I realize there is a lot to it, but could a person be taught the basics (enough to create their own simple website) without having to take classes? Anyone have any good ideas where I could learn the basics without spending a lot of money and time?

2007-10-19 08:53:26 · 4 answers · asked by Fedup 2

1) All the Excel cells referenced in the code below contain numbers
2) The existing code shown will run fine

The actual question is:
How can I change the line below from

A) debt = (Range("G" & column).Value * 1)
to
B) debt = debt + (Range("G" & column).Value * 1)

without causing the code to fail.

How do I add "debt" to itself plus the value in the cell specified. I tried Casting both inputs...making a String variable for the Range input, but nothing worked. This is completely perplexing to me.


Function CALLED(ParamArray list() As Variant) As Integer

Dim code As Variant
Dim column As Integer
Dim debt As Integer

column = 1
debt = 3

For Each code In list
Do While (Range("A" & column).Value <> (code * 1))
column = column + 1
Loop
If (Range("E" & column).Value <> "CALLED") Then
debt = (Range("G" & column).Value * 1)
End If
column = 1
Next code

CALLED = debt

End Function

2007-10-19 08:48:15 · 4 answers · asked by Mendelson 2

my Question is:
wat is the best programming language for a biggner to start with? having a bit of background on visual basic and HTML.
but should he begin with somthing simple like visual basic HTML or C or C++ or Java?
wat would be most suitable so he could learn bit by bit then maybe get more proffessional?
needed for designing applications (games :)) and Websites!!
Do u have an experience in programming languages?
Or could u give me sometips?
Thanks a lot.

2007-10-19 08:36:44 · 10 answers · asked by Anonymous

and how do I make it like myspace

2007-10-19 08:19:56 · 3 answers · asked by Anonymous

What are the features of each editor?

2007-10-19 08:19:46 · 5 answers · asked by Lily 1

&& how much yearly does it cost
i like to design layouts and messing around with html soo i think i would manage a website well
can some one tell me where to buy one=/

2007-10-19 07:58:05 · 4 answers · asked by Anonymous

for example I am studying in the US, say C++, and its in a computer language, but how do French/Spanish people write their codes? ...Do they learn the codes in the english language like the words: if, else, do while in.
I'm asking this because if I go to a country like France would I be able to program there, or they use a different program language?

2007-10-19 05:43:41 · 12 answers · asked by *Klara * 2

consider this general question:

what comes after the letter c in the alphabet

answer is : d.

how can i check to see if the answer is correct or not without using a form, but using the alert,prompt, confirm methods. how would i incorporate the if/else statements



what am i missing or doing incorrectly?


feedback is greatly appreciated

2007-10-19 04:57:43 · 2 answers · asked by Kaikz 1

fedest.com, questions and answers