Click here to Skip to main content
15,906,081 members
Home / Discussions / C#
   

C#

 
GeneralRe: crystal report problem remove one row Pin
Member 99567779-Apr-13 0:19
Member 99567779-Apr-13 0:19 
Questionwhere can i find flow free puzzle game Pin
GREG_DORIANcod8-Apr-13 6:14
professionalGREG_DORIANcod8-Apr-13 6:14 
AnswerRe: where can i find flow free puzzle game Pin
NotPolitcallyCorrect8-Apr-13 7:16
NotPolitcallyCorrect8-Apr-13 7:16 
QuestionC# and attachments Pin
annex457-Apr-13 4:09
annex457-Apr-13 4:09 
AnswerRe: C# and attachments Pin
Dave Kreskowiak7-Apr-13 4:56
mveDave Kreskowiak7-Apr-13 4:56 
AnswerRe: C# and attachments Pin
BobJanova8-Apr-13 1:29
BobJanova8-Apr-13 1:29 
AnswerRe: C# and attachments Pin
Manfred Rudolf Bihy8-Apr-13 1:56
professionalManfred Rudolf Bihy8-Apr-13 1:56 
AnswerRe: C# and attachments Pin
Jason Gleim8-Apr-13 3:46
professionalJason Gleim8-Apr-13 3:46 
Questiondetect sound Pin
saynasystem7-Apr-13 1:54
saynasystem7-Apr-13 1:54 
AnswerRe: detect sound Pin
NotPolitcallyCorrect7-Apr-13 2:19
NotPolitcallyCorrect7-Apr-13 2:19 
GeneralRe: detect sound Pin
Manfred Rudolf Bihy8-Apr-13 1:59
professionalManfred Rudolf Bihy8-Apr-13 1:59 
GeneralRe: detect sound Pin
NotPolitcallyCorrect8-Apr-13 2:38
NotPolitcallyCorrect8-Apr-13 2:38 
Questionproblem to remove single marker in google maps api Pin
Asaf Shay6-Apr-13 11:54
Asaf Shay6-Apr-13 11:54 
AnswerRe: problem to remove single marker in google maps api Pin
Eddy Vluggen8-Apr-13 7:37
professionalEddy Vluggen8-Apr-13 7:37 
Questionreporting Pin
abdallah ramdan salem abdo6-Apr-13 9:34
abdallah ramdan salem abdo6-Apr-13 9:34 
AnswerRe: reporting Pin
Sandeep Mewara6-Apr-13 22:46
mveSandeep Mewara6-Apr-13 22:46 
GeneralRe: reporting Pin
abdallah ramdan salem abdo16-Apr-13 9:59
abdallah ramdan salem abdo16-Apr-13 9:59 
AnswerRe: reporting Pin
Sandeep Mewara16-Apr-13 19:40
mveSandeep Mewara16-Apr-13 19:40 
GeneralRe: reporting Pin
abdallah ramdan salem abdo17-Apr-13 4:26
abdallah ramdan salem abdo17-Apr-13 4:26 
GeneralRe: reporting Pin
abdallah ramdan salem abdo16-Apr-13 10:01
abdallah ramdan salem abdo16-Apr-13 10:01 
AnswerRe: reporting Pin
Mycroft Holmes6-Apr-13 23:23
professionalMycroft Holmes6-Apr-13 23:23 
AnswerRe: reporting Pin
Abhinav S7-Apr-13 18:17
Abhinav S7-Apr-13 18:17 
Questionfor c# dot net help Pin
Member 99691976-Apr-13 4:11
Member 99691976-Apr-13 4:11 
QuestionRe: for c# dot net help Pin
Kenneth Haugland6-Apr-13 4:13
mvaKenneth Haugland6-Apr-13 4:13 
Questionhow other website xml file use in our website Pin
anghan226-Apr-13 0:43
anghan226-Apr-13 0:43 
string Data = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>" +
"<request>" +
"<header>" +
"<username>awesome</username>" +
"<password>xmlrocks</password>" +
"</header>" +
"<body>" +
"<shape>round</shape>" +
"</body>" +
"</request>";

string URL = "https://technet.rapaport.com/HTTP/SimpleXML/Prices/GetPriceSheet.aspx";
WebRequest webRequest = WebRequest.Create(URL);
webRequest.Method = "POST";
webRequest.ContentType = "application/x-www-form-urlencoded";
Stream reqStream = webRequest.GetRequestStream();
string postData = Data;
byte[] postArray = Encoding.ASCII.GetBytes(postData);
reqStream.Write(postArray, 0, postArray.Length);
reqStream.Close();
StreamReader sr = new StreamReader(webRequest.GetResponse().GetResponseStream());
string Result = sr.ReadToEnd();

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.