Click here to Skip to main content
15,909,332 members
Home / Discussions / C#
   

C#

 
QuestionHttpWebRequest (Caching) problem? Pin
Trapper-Hell10-Jun-08 5:40
Trapper-Hell10-Jun-08 5:40 
AnswerRe: HttpWebRequest (Caching) problem? Pin
Judah Gabriel Himango10-Jun-08 6:19
sponsorJudah Gabriel Himango10-Jun-08 6:19 
GeneralRe: HttpWebRequest (Caching) problem? Pin
Trapper-Hell10-Jun-08 6:23
Trapper-Hell10-Jun-08 6:23 
QuestionUI IP control in VS 2008 .. ? Pin
Yanshof10-Jun-08 5:31
Yanshof10-Jun-08 5:31 
AnswerRe: UI IP control in VS 2008 .. ? Pin
Judah Gabriel Himango10-Jun-08 6:18
sponsorJudah Gabriel Himango10-Jun-08 6:18 
QuestionHow to use regex to fetch url's from a page??? Pin
Technobizz10-Jun-08 4:51
Technobizz10-Jun-08 4:51 
AnswerRe: How to use regex to fetch url's from a page??? PinPopular
Christian Graus10-Jun-08 5:00
protectorChristian Graus10-Jun-08 5:00 
QuestionLinq to SQL failing Pin
Stephen Lintott10-Jun-08 4:50
Stephen Lintott10-Jun-08 4:50 
Hi maby someone can help me with this... I wrote a silverlight chart that gets it's data from a wcf service using linq to sql the following code fails and I have no idea why.


DataClasses1DataContext db = new DataClasses1DataContext();
var speeds = db.sao_GetMonthlyInterfaceData(Convert.ToInt64(code), routerSpeed, dateFrom, dateTo);List<String> values = new List<string>(); 
List<sao_GetMonthlyInterfaceDataResult> sp = speeds.ToList<sao_GetMonthlyInterfaceDataResult>();
IEnumerator<sao_GetMonthlyInterfaceDataResult> enumerator = sp.GetEnumerator();while (enumerator.MoveNext()) 
{
sao_GetMonthlyInterfaceDataResult val = ((sao_GetMonthlyInterfaceDataResult)enumerator.Current);
String ret = ""; 
ret += Convert.ToString(val.BpsIN );
ret += " "; 
ret += Convert.ToString(val.BpsOUT);
ret += " ";ret += Convert.ToString(val.UpdateTime); 
values.Add(ret); 
}
return values;
</pre>

Maby someone out there can help with this.

Thanks

S 

<div class="ForumSig">Stephen Lintott Bsc IT (RAU)</div>

AnswerRe: Linq to SQL failing Pin
Judah Gabriel Himango10-Jun-08 6:17
sponsorJudah Gabriel Himango10-Jun-08 6:17 
GeneralRe: Linq to SQL failing Pin
Stephen Lintott10-Jun-08 20:25
Stephen Lintott10-Jun-08 20:25 
GeneralRe: Linq to SQL failing Pin
Stephen Lintott12-Jun-08 1:35
Stephen Lintott12-Jun-08 1:35 
QuestionListView TopItem change event or Scroll event Pin
eyalbi00710-Jun-08 4:49
eyalbi00710-Jun-08 4:49 
QuestionTell if a path is a FILE or a Directory Pin
Ian Uy10-Jun-08 4:36
Ian Uy10-Jun-08 4:36 
AnswerRe: Tell if a path is a FILE or a Directory Pin
Anthony Mushrow10-Jun-08 4:44
professionalAnthony Mushrow10-Jun-08 4:44 
GeneralRe: Tell if a path is a FILE or a Directory Pin
Ian Uy10-Jun-08 4:46
Ian Uy10-Jun-08 4:46 
GeneralRe: Tell if a path is a FILE or a Directory Pin
Christian Graus10-Jun-08 5:01
protectorChristian Graus10-Jun-08 5:01 
GeneralRe: Tell if a path is a FILE or a Directory Pin
Ian Uy10-Jun-08 5:06
Ian Uy10-Jun-08 5:06 
GeneralRe: Tell if a path is a FILE or a Directory Pin
Christian Graus10-Jun-08 5:22
protectorChristian Graus10-Jun-08 5:22 
GeneralRe: Tell if a path is a FILE or a Directory Pin
Ian Uy10-Jun-08 5:23
Ian Uy10-Jun-08 5:23 
AnswerRe: Tell if a path is a FILE or a Directory Pin
Joe Woodbury10-Jun-08 6:37
professionalJoe Woodbury10-Jun-08 6:37 
QuestionEvents Pin
ellllllllie10-Jun-08 4:11
ellllllllie10-Jun-08 4:11 
AnswerRe: Events Pin
Christian Graus10-Jun-08 4:17
protectorChristian Graus10-Jun-08 4:17 
AnswerRe: Events Pin
AndrewVos10-Jun-08 6:44
AndrewVos10-Jun-08 6:44 
QuestionHow to Flickering in Waveform generated using GDI+ Pin
vinay_K10-Jun-08 4:10
vinay_K10-Jun-08 4:10 
AnswerRe: How to Flickering in Waveform generated using GDI+ Pin
Christian Graus10-Jun-08 4:18
protectorChristian Graus10-Jun-08 4:18 

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.