Click here to Skip to main content
15,905,616 members
Home / Discussions / C#
   

C#

 
GeneralRightToLeft TabControl Pin
Mikel Fayad13-Mar-05 0:35
Mikel Fayad13-Mar-05 0:35 
GeneralRe: RightToLeft TabControl Pin
Kodanda Pani13-Mar-05 18:20
Kodanda Pani13-Mar-05 18:20 
GeneralRe: RightToLeft TabControl Pin
Mikel Fayad13-Mar-05 22:03
Mikel Fayad13-Mar-05 22:03 
Generalpanel redraw problem Pin
ddeedee@hotmail.com12-Mar-05 22:30
ddeedee@hotmail.com12-Mar-05 22:30 
GeneralRe: panel redraw problem Pin
leppie12-Mar-05 22:43
leppie12-Mar-05 22:43 
GeneralDisappearing Structure Pin
gmhanna12-Mar-05 18:23
gmhanna12-Mar-05 18:23 
GeneralRe: Disappearing Structure Pin
leppie12-Mar-05 22:31
leppie12-Mar-05 22:31 
Generallistview columns Pin
ekynox12-Mar-05 17:20
ekynox12-Mar-05 17:20 
GeneralSystem.Diagnostics.Process() expert needed... Pin
new_phoenix12-Mar-05 16:34
new_phoenix12-Mar-05 16:34 
GeneralRe: System.Diagnostics.Process() expert needed... Pin
yoaz13-Mar-05 3:03
yoaz13-Mar-05 3:03 
Generallexical analyzer Pin
WaleedH12-Mar-05 11:52
WaleedH12-Mar-05 11:52 
GeneralRe: lexical analyzer Pin
Robert Rohde12-Mar-05 20:22
Robert Rohde12-Mar-05 20:22 
GeneralRe: lexical analyzer Pin
leppie12-Mar-05 22:49
leppie12-Mar-05 22:49 
GeneralRe: lexical analyzer Pin
WaleedH13-Mar-05 5:32
WaleedH13-Mar-05 5:32 
GeneralLogging all Incoming and Outgoing Data on specified port Pin
Gustav Paul12-Mar-05 7:49
sussGustav Paul12-Mar-05 7:49 
GeneralRe: Logging all Incoming and Outgoing Data on specified port Pin
Dave Kreskowiak12-Mar-05 17:55
mveDave Kreskowiak12-Mar-05 17:55 
Questionhow to communicate with a web site Pin
Mohsen Saad12-Mar-05 6:48
Mohsen Saad12-Mar-05 6:48 
AnswerRe: how to communicate with a web site Pin
Judah Gabriel Himango12-Mar-05 6:54
sponsorJudah Gabriel Himango12-Mar-05 6:54 
GeneralRe: how to communicate with a web site Pin
Mohsen Saad12-Mar-05 7:06
Mohsen Saad12-Mar-05 7:06 
GeneralRe: how to communicate with a web site Pin
Judah Gabriel Himango12-Mar-05 7:12
sponsorJudah Gabriel Himango12-Mar-05 7:12 
AnswerRe: how to communicate with a web site Pin
Ghazi H. Wadi12-Mar-05 7:44
Ghazi H. Wadi12-Mar-05 7:44 
AnswerRe: how to communicate with a web site Pin
Bahadir Cambel12-Mar-05 23:31
Bahadir Cambel12-Mar-05 23:31 
I developed a similar application ...Here is the my solution..
First , I created a web service which gets the input , then regarding to these inputs , returns the results...
In the web service
<code>
[WebMethod(Description="Login Operation")]
public string Login(string userName,string password)
{
HttpWebRequest req = (HttpWebRequest) HttpWebRequest.Create("http://[www.desiredsite.com/login.aspx?name="+userName+"&password="+passWord)
req.KeepAlive = false;
HttpWebResponse resp = (HttpWebResponse) req.GetResponse();			
StreamReader sr = new StreamReader(resp.GetResponseStream(), System.Text.Encoding.UTF8);	
string all = sr.ReadToEnd();//So far you send the info, thus you get string having the result page 
...//In these lines of code , regarding to the html structure, you should wrap the info you need
...// clean up the unnecessary tags and find whether the login is succeeded or not by manipulating html
...
return resultString;//This will be the web service's respond string to the application.
</code>

AnswerRe: how to communicate with a web site Pin
tonaxxl13-Mar-05 5:03
tonaxxl13-Mar-05 5:03 
GeneralRepaint frame Pin
Robske12-Mar-05 6:39
Robske12-Mar-05 6:39 
GeneralRe: Repaint frame Pin
Judah Gabriel Himango12-Mar-05 6:58
sponsorJudah Gabriel Himango12-Mar-05 6:58 

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.