Click here to Skip to main content
15,897,187 members
Home / Discussions / C#
   

C#

 
AnswerRe: Talking to htpasswd.exe Pin
DaveyM695-Jun-09 11:19
professionalDaveyM695-Jun-09 11:19 
GeneralRe: Talking to htpasswd.exe Pin
Johan Martensson5-Jun-09 11:32
Johan Martensson5-Jun-09 11:32 
QuestionSearch a sentence in a string Pin
paradisonoir5-Jun-09 5:21
paradisonoir5-Jun-09 5:21 
AnswerRe: Search a sentence in a string Pin
Nagy Vilmos5-Jun-09 5:36
professionalNagy Vilmos5-Jun-09 5:36 
AnswerRe: Search a sentence in a string Pin
musefan5-Jun-09 5:48
musefan5-Jun-09 5:48 
QuestionUSB Card Reader Pin
bonkers1235-Jun-09 3:54
bonkers1235-Jun-09 3:54 
AnswerRe: USB Card Reader Pin
Eddy Vluggen5-Jun-09 3:58
professionalEddy Vluggen5-Jun-09 3:58 
GeneralRe: USB Card Reader Pin
Dave Kreskowiak5-Jun-09 4:40
mveDave Kreskowiak5-Jun-09 4:40 
GeneralRe: USB Card Reader Pin
Eddy Vluggen5-Jun-09 5:05
professionalEddy Vluggen5-Jun-09 5:05 
GeneralRe: USB Card Reader Pin
Dave Kreskowiak5-Jun-09 9:59
mveDave Kreskowiak5-Jun-09 9:59 
GeneralRe: USB Card Reader Pin
Eddy Vluggen6-Jun-09 0:13
professionalEddy Vluggen6-Jun-09 0:13 
AnswerRe: USB Card Reader Pin
EliottA5-Jun-09 4:02
EliottA5-Jun-09 4:02 
GeneralRe: USB Card Reader Pin
bonkers1235-Jun-09 23:27
bonkers1235-Jun-09 23:27 
GeneralRe: USB Card Reader Pin
bonkers12310-Jun-09 20:52
bonkers12310-Jun-09 20:52 
AnswerRe: USB Card Reader Pin
Dave Kreskowiak5-Jun-09 4:41
mveDave Kreskowiak5-Jun-09 4:41 
GeneralRe: USB Card Reader Pin
Neophyte305-Jun-09 5:16
Neophyte305-Jun-09 5:16 
GeneralRe: USB Card Reader Pin
harold aptroot5-Jun-09 5:27
harold aptroot5-Jun-09 5:27 
GeneralRe: USB Card Reader Pin
bonkers12310-Jun-09 20:48
bonkers12310-Jun-09 20:48 
QuestionHelp with processing an Image Pin
livewirerules5-Jun-09 3:51
livewirerules5-Jun-09 3:51 
AnswerRe: Help with processing an Image Pin
dan!sh 5-Jun-09 3:54
professional dan!sh 5-Jun-09 3:54 
Questionchange C# to vb.net Pin
Franklinlloyd5-Jun-09 3:45
Franklinlloyd5-Jun-09 3:45 
How do I change this code to VB

Address shipAdd = getUserAddress();

upsRates uRate = readXML(getXMlhttp(sourceAddress, shipAdd, ddlUPS.SelectedValue));

if (uRate.StatusCode == "1") // Status OK
{
UPSCharges = uRate.Rate;
Label2.Text = UPSCharges;
Session["ShippingType"] = ddlUPS.SelectedItem.Text;
}
else
{
ddlUPS.SelectedIndex = 0;
UPSCharges = "0";
Label2.Text = UPSCharges;
Label2.Text = uRate.Error;
}
}
else
{
Label2.Text = "";
UPSCharges = "0";

}
try
{

Session["shipping"] = Convert.ToDecimal(UPSCharges);
double shp = Convert.ToDouble(Session["shipping"].ToString());
double amt = Convert.ToDouble(Session["amount"].ToString());
//Array grandtot=grandtotallbl.Text.Split('$');
//grandtotallbl.Text ="Grand Total : $ " + Convert.ToDouble(grandtot.GetValue(1).ToString() + shp);
grandtotallbl.Text = "Grand Total: $ " + Convert.ToDecimal((shp + amt)).ToString();

}
AnswerRe: change C# to vb.net Pin
dan!sh 5-Jun-09 3:49
professional dan!sh 5-Jun-09 3:49 
AnswerRe: change C# to vb.net Pin
Nagy Vilmos5-Jun-09 5:38
professionalNagy Vilmos5-Jun-09 5:38 
AnswerRe: change C# to vb.net Pin
Franklinlloyd5-Jun-09 5:57
Franklinlloyd5-Jun-09 5:57 
QuestionIndexing Service Pin
ellllllllie5-Jun-09 2:50
ellllllllie5-Jun-09 2:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.