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

Programming & Design - March 2007

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

If you do, what is a good alternate program, hopefully free, for photoshop?

2007-03-12 02:13:37 · 5 answers · asked by Stick 4

I have Windows XP Professional. The clock appears to have been updated ecause it shows the correct time. But all of our appointmens are showing up an hour late. Did we miss an update? Is there a way to fix this. We also have our computers networked through a server that is running Small Business Server with SQL.

Please help so that we are not late for all of our appointments!

2007-03-12 02:00:10 · 3 answers · asked by Proud Momma 6

2007-03-12 01:59:07 · 4 answers · asked by Anonymous

I have this radio station I made using ShoutCast and WinAmp. I wanted to embed the live feed from my station into my MySpace page. Is it possible for one. And second, if it is possible what is the HTML coding for the embedding?

2007-03-12 01:39:57 · 1 answers · asked by Homer 4

I was trying to add a picture link into my space and I just don't know how to do it, could you tell me how to do it.
Am a bit slow so if you can tell me like you would explain to a 4 years old.
-Thank you-

2007-03-12 01:39:19 · 1 answers · asked by JB 2

I want to transfer the database(sql) for my website from one location to another. Currently my database is located in the UK based server and i want ti shift it to the USA based server.

But iam facing the problem it is showing the script time out error. I checked all the connection file but all the thing is okay.
I cant know what is going wrong.

However my other websites are running successfully, only the which is hosted on US based server is showing script time out error.

Is there any one who could tell what the problem may be ?

2007-03-12 01:36:30 · 1 answers · asked by d_king_of_jungle 1

2007-03-12 01:24:13 · 7 answers · asked by nithin g 1

2007-03-12 01:23:26 · 2 answers · asked by nithin g 1

hello,i have decided to change my career and would like some
advice.Im thinking of web desighn.who would you suggest I use
to learn online.I know about learn direct and the OU,do you have anymore ideas and how easy or hard are these courses?

Thanks in advance.

2007-03-12 01:10:53 · 4 answers · asked by Anonymous

2007-03-12 01:00:45 · 3 answers · asked by New_Town_Karachi_Pakistan 1

Hi,I am a student learning vb.net, i am trying to use visual basic 2005 express edition, my instructor told me that vb and vb.net are different and i should not use visual basic 2005 but be using visual basic .net?is she right?but i am not sure,can some one explainto me the diff b/w vb and vb.net

2007-03-12 00:55:50 · 6 answers · asked by nithin g 1

where i get full pj effect for flash mx for free

2007-03-12 00:01:33 · 1 answers · asked by Talha R 1

2

2007-03-11 23:51:08 · 7 answers · asked by sara 1

I need to make a programme that works out the coordinates of the white triangles, given an original (larger) black triangle for a Sierpinski Gasket. I know I need to use recursion.

At the moment, I have a structure which holds the coordinates of the vertices of the black triangle, and I know how to calculate the coordinates by hand... but I don't know how to get the computer to define 3 new black triangles each time a white one is created (up to some user-defined maximum depth).

Help me out, please.

2007-03-11 23:10:01 · 1 answers · asked by sarciness 3

I need to add a voting bar and make them update automatically on the webpage.
but I don't have any basic html knowledge. Anyone can help me or provide my the basic html voting bar code. Thanks.

2007-03-11 23:03:44 · 3 answers · asked by Anonymous

what is the diffrents between compilers and interprenter?

2007-03-11 22:53:57 · 3 answers · asked by Jeyan 1

I was on livejournal updating my entries, lost my connection and refreshed the page. I was sent to this link, filled with Latin text. I was curious so naturally I used a translator..and got weird partial sentences about strange things. Someone please help me with this...it makes no sense, please tell me I am being an asshat and reading something into it that *isn't* there. :-/

http://www.livejournal.com/stc/fck/editor/fckdialog.html

2007-03-11 22:41:10 · 2 answers · asked by Dalmatica Z 2

Explain what u undersatnd by the term 'Machine language'. Write a short report, making use of examples where relevent?

Hello all, its my assignment question, i want some details abt this, and i ned somr research articles links also,
thanks in advance.,

2007-03-11 22:38:41 · 4 answers · asked by Jeyan 1

I am trying to hire someone for a 5-10k job, and it's pretty serious work... but I am getting bad vibes from virtually everyone on craigslist. Worse, 2/3rds of them don't even have their own websites. Among those who do, they are awful sites. So, craigslist is sort of out... and the "hire a coder" websites online do not seem trustworthy.

I am a PhD student and we are designing a very large, complicated experiment that will run over several months...and has about 100 requirements involving a lot of server side programming & database stuff. The funds are coming from a grant... not me. I was a systems analyst for a consulting firm before this, and so I can write requirements and speak to a developer. I just can't figure out how to hire them. (My PhD is not in computer science or I'd do it myself at this point... but I am a bad coder)

2007-03-11 21:58:22 · 8 answers · asked by jane 2

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration.Assemblies;

namespace CalculateWage
{

public class GetEmployeeName
{
public string LastName, FirstName;
}


public class GetEmployeeWorkHour
{
public int NumberofHours;
}

public class GetEmployeeWage
{

public int WagesforaWeek, HourlyRate;
}


public class GetEmployeededuction
{
public int Medical, UnionFee;
public int TotalDeduction, FederalTax;
}

public class GetNetpay
{
public int Netpay;
}



class Wage
{

static void Main(string[] args)
{

GetEmployeeName GEN = new GetEmployeeName();

GetEmployeeWorkHour GEH = new GetEmployeeWorkHour();

GetEmployeeWage GEW = new GetEmployeeWage();

GetEmployeededuction GDED = new GetEmployeededuction();

GetNetpay GNP = new GetNetpay();

Getinteger I = new Getinteger();

Getstring S= new Getstring();


GEN.FirstName = S.GetString("\nEnter ur First Name: ", "");

GEN.LastName = S.GetString("\nEnter ur Last Name: ", "");

GEH.NumberofHours = I.GetInteger("\nEnter no of hours worked: ", 0);

GEW.HourlyRate = I.GetInteger("\nEnter hourly rate:", 0);

GEW.WagesforaWeek = ((GEH.NumberofHours * GEW.HourlyRate) * 7);


Console.WriteLine("\nwages for a week:{0}", GEW.WagesforaWeek);

Console.ReadLine();


GDED.FederalTax = (GEW.WagesforaWeek * (18 / 100));
GDED.Medical = (GEW.WagesforaWeek * (5 / 100));
GDED.UnionFee = 8;
GDED.TotalDeduction = (GDED.FederalTax + GDED.Medical + GDED.UnionFee);
GNP.Netpay = (GEW.WagesforaWeek - GDED.TotalDeduction);


Console.WriteLine("\nName:{0}", GEN.LastName);

Console.WriteLine("\nThe gross pay of {0} is {1}", GEN.LastName, GEW.WagesforaWeek);

Console.WriteLine("\nThe total deduction is:{0}", GDED.TotalDeduction);

Console.WriteLine("\nThe net pay of {0} is: {1}", GEN.LastName, GNP.Netpay);

Console.ReadLine();
}



}
}

2007-03-11 21:51:46 · 1 answers · asked by sp 1

i have two form, then i create a button in form1 and a listview in form2, when the button click, i want the listview in form2 to be show in form1, how can i do that? load form2.lvwDisplay cannot work...

help...

2007-03-11 21:34:04 · 1 answers · asked by bfughine 1

2007-03-11 21:29:10 · 2 answers · asked by Anonymous

Hi there,

I want to dowanload a PHP code from the server, how to do that , is there any software that can do that for me, or if you know any way to get around with?

Regards,
Omer

2007-03-11 21:23:23 · 3 answers · asked by Omer 1

Hi all,
I'm working on this website that lets you predict which stocks (the ones trading in the stockmarket like NYSE/NASDAQ) are going to rise and fall. Its very similar to socialpicks.com or feelingbullish.com. The main core of the site is the ranking algorithm. I've done a small working example here Please take a look at it
http://stockbuddy.awardspace.com/

Now How should i rank the USER if his prediction comes true or if it goes wrong, Please help me out, i'm not satisfied with the ranking i've used in the above system
Thanks a lot

2007-03-11 20:36:35 · 1 answers · asked by swamy g 1

I've had one jdk 1.3 installation for long but when i tried it to install again after reinstallig the OS... it went on to 100% but said atlast "failed with error code -1"... now i need to download the jdk 1.3 again but the sun website says EOL.. but desperately needed it urgently..

2007-03-11 20:30:35 · 2 answers · asked by karty 1

We developed a web site using java, jsp,Oracle as back end and OS as windows. We are able to find thousand companies who are supportiung MySQL or SQL. We need Oracle. I appriciate for their time

2007-03-11 20:08:46 · 2 answers · asked by happy2goout 1

fedest.com, questions and answers