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

Programming & Design - November 2006

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

2006-11-25 15:49:03 · 4 answers · asked by stylish................... 1

I can't find the codes for a download button that when user clicks the button it will prompt to Run, Save or Cancel. Anyone can help? Is it the same as ShowDialog or something?

2006-11-25 15:18:08 · 3 answers · asked by Anonymous

I need a customizable data entry program that will keep track of a number of farm buildings. I would like to be able to keep notes on daily inspections, addition of new live stock, medications and cost ext. An online platform would be best. I would need to enter dates, times, and additions and subtractions of animals and feeds then be able to look at a screen that tells me how many animals, how much feed ext. is at that barn at that time.

Please let me know if you know of any programs that would work for me. Thanks

2006-11-25 15:16:02 · 5 answers · asked by GPEMT 1

2d languages are differrent fron 2d softwares

2006-11-25 15:12:39 · 3 answers · asked by pinky 1

Iam building a web site in front page .I would like to add some banners to my web site. How to put HTML code of banner into my web site.let me know detail proceedure.

2006-11-25 15:11:26 · 4 answers · asked by Anonymous

2006-11-25 14:24:35 · 1 answers · asked by Mirwali watandost 1

I am using microsoft word.

2006-11-25 13:54:47 · 2 answers · asked by Monkey 2

Hi I have my code but can't figure out the last part of this.
Here is my code:
using System;

public class CalculateTime
{
// Main method entry point
public static void Main()
{
//initialize variabls
int seconds = 0;

//input number of seconds
string inputSeconds;
Console.Write("Input the number of seconds: ");
inputSeconds = Console.ReadLine();
seconds = Convert.ToInt32(inputSeconds);

//call CalcMin method
CalcMin(seconds);

}

//CalcMin method
public static void CalcMin(int x)
{
int totalMinutes = 0, totalSeconds = 0;
totalMinutes = x / 60;
totalSeconds = x % 60;
//output number of minutes and seconds
Console.WriteLine("{0} minute(s), {1} second(s)", totalMinutes, totalSeconds);

}
}

the last part should be as follows:
Add a second method to the solution. This method displays a passed argument as hours, minutes and seconds. For example 3666 seconds is 1 hour, 1 minute and 6 seconds.

2006-11-25 13:35:00 · 1 answers · asked by Christina 2

how and where can i find aircraft downloads for cfs 2? can you download like f 16's and planes like that?

2006-11-25 12:09:44 · 3 answers · asked by sagitarrius_26 2

Like, you add your personal images, and it creates a collage with all of them..

2006-11-25 11:37:28 · 3 answers · asked by Beto V 1

ok....im trying to make a dynamic website using php and mysql...the only question is....in php, how do i code that i want it to see what the user put in and check it with the database. then if its correct....take them to a custom page? i have the form and all the pages, its connecting to the server and all that good stuff....just cant validate the login info....thanks for the help!

2006-11-25 10:07:18 · 2 answers · asked by stultz_is 2

I am going to create a webpage I want to create the layout but don't know whats the total size. I am going to make it in flash will I am good in flash than in Photoshop. Here is my webpage
http://www.freewebs.com/singhgagand/min.html

2006-11-25 09:38:53 · 3 answers · asked by Best Helper 4

you are your own multi-skilled one-person company, what extra help do you NEED? What can't you do alone?

2006-11-25 09:08:06 · 3 answers · asked by Jay's day 1

Design a C# solution with a Main ( ) method that holds an integer variable named seconds to which you will assign a value. Create a method to which you pass this value. The method displays the seconds in minutes and seconds. As an example 66 seconds is 1 minute and 6 seconds.

Add a second method to the solution. This method displays a passed argument as hours, minutes and seconds. For example 3666 seconds is 1 hour, 1 minute and 6 seconds.

Add a statement to the Main ( ) method so that after it calls the methods to convert seconds to minutes and seconds, it passes the same value to the new method to convert it to hours, minutes and seconds

Here is what I wrote and it's not working.
using System;

namespace time
{
public static void Main()
{
// Declare Variables
int sec;
sec = args[0];
displayTime(sec);

{
TimeSpan ts = new TimeSpan(0, 0, x); // where x is the number of seconds
Console.WriteLine( String.Format("{0} minute{1} and {2} second{3}",

2006-11-25 08:50:10 · 3 answers · asked by Christina 2

I'm trying to rebuild my website using Front Page & finding it really hard! When I build it the page looks a certain size, but when I publish it it goes soooo wide. How can I make sure this doesn't happen?
Thanks

2006-11-25 08:27:04 · 3 answers · asked by thekittiesinthehood 2

I'm looking for a Christmas MySpace layout. I Googled it, but there are just so many advertisement sites that it's hard to find a real, good (and free) layout. Especially a holiday one. Do any of you know of a site(s) that you like or that you know are good that have good MySpace layouts?

Thanks!!

2006-11-25 07:52:19 · 5 answers · asked by Katie 1

2006-11-25 07:29:26 · 6 answers · asked by cats are cool jenny is here..... 1

I'm trying to get my cheat codes to work for my game......and it says tart the game with the "cheat" command line parameter. For example, a shortcut to start the game might look like this: "C:\Program Files\Stardock\TotalGaming\GalCiv2\galciv2.exe" cheat. I tried going to the Start run thing and trying the C:\ program thing but it doesnt work....any one know what's up?

2006-11-25 07:19:02 · 2 answers · asked by Anonymous

INPUT: Two lists L1 and L2
QUESTION: Do L1 and L2 represent the same list?
(That is, do L1 and L2 contain the same numbers, each appearing exactly the same number of times?).

My Solution:
temp = head->L1
while search_L2(temp) == true
temp = temp->next
if search_L2(temp) == false
OUTPUT: L1 does not represent L2

Is this a correct algorithm?

Could this algorithm be a randomized algorithm (possibly using hash functions?). If so, how is it possible?

2006-11-25 07:01:18 · 3 answers · asked by ff3101 1

I created my own class to do this, and it's working well enough, but I suspect that this is not really the "proper" way to do it.
I've done some Google searches for them, but you know what a pain it can be to wade through the various programming forums and whatnot that it links you to.

2006-11-25 06:58:42 · 4 answers · asked by chemicalimbalance000 4

I have just recently discovered Microsoft Office Publisher 2003. It seems like creating a website with it is very easy when compared to creating a website using XHTML, CSS, .... .NET/PHP, MYSQL/SQL Server and other programming languages.

But there has to be a catch. If creating a website was so easy, why would we have to spend so much time and energy learning how to code?

2006-11-25 06:33:07 · 4 answers · asked by M 1

I am an old fortran programmer. I was hacked today, and looking to do it! they thought they were getting me. Guess it is what they say about payback. It has been awhile, but lead me in a direction!!

2006-11-25 06:12:50 · 3 answers · asked by Little Tree 2

2006-11-25 05:48:39 · 7 answers · asked by liyakat_ckm 1

two actually! where can I find sites with free rpg games? and where can i find sites with science fair projects?

2006-11-25 05:41:25 · 3 answers · asked by Sgt. Fletcher 3

2006-11-25 05:02:16 · 2 answers · asked by reza 1

2006-11-25 04:18:39 · 2 answers · asked by ashton_35_kingsport 2

i cant find any myspace layouts i like. So i wanted to know if you could make your onw backround and stuff.

if you cant what are some good websites to find layouts?

2006-11-25 04:14:10 · 2 answers · asked by karen! 1

Where can I find a tutorial about it?

2006-11-25 04:11:21 · 2 answers · asked by Carlos M 7

2006-11-25 03:34:45 · 6 answers · asked by BriY 2

fedest.com, questions and answers