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

Programming & Design - December 2007

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

2007-12-06 16:08:03 · 8 answers · asked by Anonymous

hmmm.

2007-12-06 15:52:49 · 12 answers · asked by Anonymous

2007-12-06 15:33:25 · 6 answers · asked by Paelo C 1

I have an INSERT command, but I want MySQL to tell me if the command will be successful without actually executing it. Is there some MySQL syntax that makes this possible? Thanks!

2007-12-06 15:29:25 · 2 answers · asked by J 2

what is a good free flash development tool

2007-12-06 15:16:15 · 3 answers · asked by Philip Augustus 3

This is my first attempt at doing a Power Point Presentation.
Ive nearly finished it and with a WAV file, it totals up to a massive 53MB!!!! Looks good tho.....but not practical. I have 21 slides with various effects. Help please......or shall I start all over again?

2007-12-06 10:58:23 · 3 answers · asked by hollyb20 4

2007-12-06 10:54:49 · 1 answers · asked by DARRYL C 1

I'm attempting to learn how to write games for a PC pretty much from the ground up and I need some help figuring out where to begin

What I want to know
-what parts of the game do I have to design first?
-What software is commonly used to aid in design?
-any other info I might need

thanks.

2007-12-06 10:25:33 · 1 answers · asked by polo_player13 2

2007-12-06 10:00:54 · 3 answers · asked by cheryl g 1

0

I have a variable byteIncrement. I want to increase it by one for a loop so I have byteIncrement += 1. I keep getting an error that says I can not convert from int to byte. The data type byte stores an int from 0 - 255 though. Can someone give me some tips on how to fix this? I know I could just declare an integer, but since I don't need a number that big I just wanted to go with a byte.

2007-12-06 09:59:53 · 1 answers · asked by jhn_grz 3

Hello,
I am struggling with a regular expression.
I want to extract strings which have 1 or 2 digits from a list of strings.
example:
m=lr10.moscou
m=lr101.moscou
m=lr20.moscou.
I only want to dispay lr10 and lr20
I tried this regular expression
m=lr(\d\d)
but it doesnt work for me
It will be very cool if someone could advise me.
thanks

2007-12-06 07:36:44 · 3 answers · asked by am_bidar 1

Urgent! Please help! This project is due soon and I can't continue until I know this! I'm trying to use an abstract class (SongComparator) like so:

SongComparator comparator = new SongComparator();
playlist_1. sort(comparator);

But the first line comes up with this error message: SongComparator is abstract; cannot be instantiated. But if I don't use the first line of code, the variable comparator is never defined. Please help. How do I use these?

2007-12-06 07:04:22 · 1 answers · asked by wildbluefaerie 2

I have heard using frames is frowned upon. I also heard that frames help in navigation.

2007-12-06 05:30:28 · 5 answers · asked by Apprentice Ghost 3

2007-12-06 05:24:16 · 3 answers · asked by nczmoztwantd 1

I need some help on it though.
It's for my science teacher.
it's all written out with HTML.
www.jrichardson.info
is the site.
could you tell me how you think it looks so far?

2007-12-06 05:06:41 · 7 answers · asked by [.MamaBugg.] 4

Anyone aware of a decent online (or desktop) app for properly indenting my HTML or XML tags. I dont want the tool to fiddle with attributes or chop my text at a certain length, just indent nested tags.

Tidy Online doesnt work well in my opinion.

Thanks for any recommend.

2007-12-06 04:46:54 · 3 answers · asked by zerohourx 1

I built a website, using dreamweaver cs3, and I want to use dreamweaver to upload it to my tripod.com page, Can somebody please help me!?

2007-12-06 04:33:01 · 1 answers · asked by Anonymous

i already know how to use photoshop and i little in illustrater. will this help in learning after affects?

2007-12-06 04:32:04 · 1 answers · asked by thejokerkid 2

I want to send an email complete with graphics and links. I tried using Publisher, but that only lets me send emails through Microsoft Outlook.

2007-12-06 04:30:16 · 2 answers · asked by debryc 2

2007-12-06 04:22:36 · 7 answers · asked by trplttsr 1

I would like a dropdown list to appear, then a new drop down list appears after a choice is made. The new drop down will have new choices that are only availble when a certain choice is made based on the choice of previous level. I want to be able to do this four levels deep.

2007-12-06 02:19:42 · 3 answers · asked by Thomas W 1

see I hav my xam comin up tomorrow and pl xplain to me wat arrays are in simple words....

2007-12-06 02:14:17 · 4 answers · asked by Raga s 3

I have a kind of particular problem which is I don't know how to use Javascript although I must create a simple page in a short period of time.

Anyway the thing is I have to create a "next" button or something and when I click on it, the page will randomly show a word among all the others, say, "Anywhere", "Nowhere", "Everywhere". Sure,I'm going to insert new words into the html document,however I don't want to see the same word before other words do not appear on the page. I mean for example "Anywhere" will not appear if both "Nowhere" and "Everywhere" have not appeared yet. If the other two words have appeared, then "Anywhere" can be seen again. The same rule applies for each word.

Could someone please write some code fragments for this specific problem ? and I want to know where to insert the entire code.. Thanx!

2007-12-06 02:05:48 · 2 answers · asked by nothing_imp7 1

Copy the example snippet of code & get it to run. Then modify the code so it
includes the message "Good Evening". Another IF statement should do the trick
however there are several other ways to do the same thing, You may make multiple
versions of the program.



<br /> </head><br /> <body><br /> <p><br /> If the time on your browser is less than 10, <br> you get a "Good Morning" greeting. <br><br /> Otherwise you will get a "Good day" greeting.<br /> </p><br /> <br /> <script type="text/javascript"><br /> var d = new Date()<br /> var time = d.getHours()<br /> <br /> if (time < 10)<br /> {<br /> document.write("<b>Good morning</b>")<br /> }<br /> else<br /> {document.write("<b>Good day</b>")<br /> }<br /> </script><br /> <br /> <p<HR><br /> This example demonstrates the If...else statement.<br /> </p><br /> <br /> </body> </p> <p> <small> <a href="/en/2007-12-06">2007-12-06</a> <span>01:51:58</span> · <span>5 answers</span> · asked by <u>:Phil</u> <b>5</b> </small> </p> </div> </div> <div class='question'> <div class='question-top'> <div class='question-top-left'> <b> 0 <span style='color:green;'>⤊</span> </b> </div> <div class='question-top-right'> <h2 class='question-title' lang="en"> <a href="/question/20071206055908AA9doPS" lang="en">SQl Query for the Problem?</a> </h2> </div> </div> <div class='question-main'> <p class='question-content' lang="en"> Hi Friends,<br /> <br /> I have the below problem in writing an sql query.<br /> <br /> Assume we have a table with two columns.the pattern being <br /> <br /> col1 col2<br /> <br /> X 1<br /> X 2<br /> Y 3<br /> Y 4<br /> Z 5<br /> Z 6<br /> This is the pattern there are n no of rows having same value in col1 and different value in col2.I need to write a query which feach me the rows having least value in col2(comparision between the two records)<br /> <br /> The required solution is <br /> <br /> col3 col4<br /> X 1<br /> Y 3<br /> Z 5 </p> <p> <small> <a href="/en/2007-12-06">2007-12-06</a> <span>00:59:08</span> · <span>3 answers</span> · asked by <u>Gogo</u> <b>1</b> </small> </p> </div> </div> <div class='question'> <div class='question-top'> <div class='question-top-left'> <b> 0 <span style='color:green;'>⤊</span> </b> </div> <div class='question-top-right'> <h2 class='question-title' lang="en"> <a href="/question/20071206020343AAqi0hd" lang="en">Given two x,y points, how can I calculate their angle(direction)?</a> </h2> </div> </div> <div class='question-main'> <p class='question-content' lang="en"> for example, I have the following points:<br /> P1(1,1)<br /> P2(1,2)<br /> P3(2,1)<br /> P4(2,2)<br /> <br /> I want a formula that can give out the direction:<br /> GetDirection(P1,P2)=North<br /> GetDirection(P1,P3)=East<br /> GetDirection(P1,P4)=North East </p> <p> <small> <a href="/en/2007-12-05">2007-12-05</a> <span>21:03:43</span> · <span>2 answers</span> · asked by <u>I need answers</u> <b>1</b> </small> </p> </div> </div> <div class='question'> <div class='question-top'> <div class='question-top-left'> <b> 0 <span style='color:green;'>⤊</span> </b> </div> <div class='question-top-right'> <h2 class='question-title' lang="en"> <a href="/question/20071206015632AAJ3JDJ" lang="en">Lazarus eof endless loop?</a> </h2> </div> </div> <div class='question-main'> <p class='question-content' lang="en"> My problem is this: I have two forms, one with a string grid that reads 4m a file and the other with edit boxes that write to the file (after pushing the ok btn) - writing either new records or editing current records. what happens is: the data writes alright in the editing/writing form, but the string grid on the other form doesn't update and my update procedure causes the string grid to enter an endless loop (and it appears to be pointing to the record that was jus updated).<br /> The same code in Delphi works, so it might be something with the file class...<br /> <br /> Plz help (im a novice programer at best, also lemme know if you need any info for clarity... </p> <p> <small> <a href="/en/2007-12-05">2007-12-05</a> <span>20:56:32</span> · <span>1 answers</span> · asked by <u>Bob S</u> <b>1</b> </small> </p> </div> </div> </div> <div style='margin-bottom:16px;'> <div class="pagination"> <p class="pagination_title"> Questions asked in December 2007: </p> <p class="pagination_description"> Showing <span class="font-medium">601</span> to <span class="font-medium">630</span> of <span class="font-medium">771</span> questions </p> <div class="pagination_body" role="navigation" aria-label="Pagination Navigation"> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-20" rel="prev" aria-label="&laquo; Previous"> Previous </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/" aria-label="Go to page 1"> 1 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-2" aria-label="Go to page 2"> 2 </a> <a href="#" aria-disabled="true"> ... </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-17" aria-label="Go to page 17"> 17 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-18" aria-label="Go to page 18"> 18 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-19" aria-label="Go to page 19"> 19 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-20" aria-label="Go to page 20"> 20 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-21" class="active" aria-current="page"> 21 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-22" aria-label="Go to page 22"> 22 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-23" aria-label="Go to page 23"> 23 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-24" aria-label="Go to page 24"> 24 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-25" aria-label="Go to page 25"> 25 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-26" aria-label="Go to page 26"> 26 </a> <a href="https://fedest.com/en/category/computers-and-internet/programming-and-design/page-22" rel="next" aria-label="Next &raquo;"> Next </a> </div> </div> </div> <div class="pagination" style='margin-bottom:16px;'> <p class="pagination_title"> Questions asked in other months: </p> <div class="pagination_body" role="navigation" aria-label="Dates Navigation"> <a href="/en/category/computers-and-internet/programming-and-design/2007-12" class="active" aria-current="page"> december 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-11" class="" aria-label="Go to november 2007"> november 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-10" class="" aria-label="Go to october 2007"> october 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-09" class="" aria-label="Go to september 2007"> september 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-08" class="" aria-label="Go to august 2007"> august 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-07" class="" aria-label="Go to july 2007"> july 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-06" class="" aria-label="Go to june 2007"> june 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-05" class="" aria-label="Go to may 2007"> may 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-04" class="" aria-label="Go to april 2007"> april 2007 </a> <a href="/en/category/computers-and-internet/programming-and-design/2007-03" class="" aria-label="Go to march 2007"> march 2007 </a> <a class="" aria-disabled="true"> ... </a> <a href="/en/category/computers-and-internet/programming-and-design/2006-07" class="" aria-label="Go to july 2006"> july 2006 </a> <a href="/en/category/computers-and-internet/programming-and-design/2006-06" class="" aria-label="Go to june 2006"> june 2006 </a> </div> </div> </article> </section> <div style="background:#888;padding:8px;margin-top:16px;"> fedest.com, questions and answers </div> </body> </html>