Click here to Skip to main content
16,005,734 members
Home / Discussions / C#
   

C#

 
Generalabout Datagrid Template columns Pin
chandru_inbox2-Aug-05 2:03
chandru_inbox2-Aug-05 2:03 
GeneralRe: about Datagrid Template columns Pin
Alomgir Miah2-Aug-05 3:05
Alomgir Miah2-Aug-05 3:05 
GeneralZip and Unzip files or folders Pin
aparajita2-Aug-05 1:51
aparajita2-Aug-05 1:51 
GeneralRe: Zip and Unzip files or folders Pin
Christian Graus2-Aug-05 2:14
protectorChristian Graus2-Aug-05 2:14 
GeneralRe: Zip and Unzip files or folders Pin
S. Senthil Kumar2-Aug-05 2:55
S. Senthil Kumar2-Aug-05 2:55 
GeneralRe: Zip and Unzip files or folders Pin
Mohamad Al Husseiny2-Aug-05 3:16
Mohamad Al Husseiny2-Aug-05 3:16 
GeneralDynamic update of comboboxes in datagrid Pin
Atlemann2-Aug-05 1:28
Atlemann2-Aug-05 1:28 
GeneralAbout WebBrowser and save. Pin
Member 20124282-Aug-05 1:10
Member 20124282-Aug-05 1:10 
I have problem about WebBrowser.
When program open webpage http://racing.ustrotting.com/entries.cfm and click button view already.
It's not save webpage after click button view but it's save before click button.
How to do it to save after click button view ?

Best regards

public void savewebpage(AxSHDocVw.AxWebBrowser axWebBrowser1,string strfile)
{
IHTMLDocument2 doc = (IHTMLDocument2) axWebBrowser1.Document;
UCOMIPersistFile pf = (UCOMIPersistFile) doc;
pf.Save(@strfile,true);
}
public void GetMainPage(AxSHDocVw.AxWebBrowser axWebBrowser1,
ref string strfile,string htmlpath)
{
System.Object nullObject = 0;
string str = "";
System.Object nullObjStr = str;
axWebBrowser1.Navigate("http://racing.ustrotting.com/entries.cfm",
ref nullObject, ref nullObjStr,ref nullObjStr, ref nullObjStr);
while (axWebBrowser1.ReadyState != SHDocVw.tagREADYSTATE.READYSTATE_COMPLETE)
{
Application.DoEvents();
}
switch(Task)
{
case 1:
HTMLDocument myDoc = new HTMLDocumentClass();
myDoc = (HTMLDocument) axWebBrowser1.Document;
HTMLInputElement btnView =
(HTMLInputElement) myDoc.all.item("Submit", 0);
btnView.click();
Task++;
break;
case 2:
break;
}
savewebpage(axWebBrowser1,"c:\\myWeb.html");
}

Best regards
tery

GeneralProblem Showing JPEJ from specific location in file Pin
arusmemon2-Aug-05 1:00
arusmemon2-Aug-05 1:00 
GeneralRe: Problem Showing JPEJ from specific location in file Pin
Christian Graus2-Aug-05 16:42
protectorChristian Graus2-Aug-05 16:42 
QuestionSubstring.. How?? Pin
oneyard1-Aug-05 23:52
oneyard1-Aug-05 23:52 
AnswerRe: Substring.. How?? Pin
Guffa2-Aug-05 0:16
Guffa2-Aug-05 0:16 
GeneralRe: Substring.. How?? Pin
oneyard2-Aug-05 16:27
oneyard2-Aug-05 16:27 
GeneralRe: Substring.. How?? Pin
oneyard2-Aug-05 16:41
oneyard2-Aug-05 16:41 
GeneralRe: Substring.. How?? Pin
Guffa3-Aug-05 9:53
Guffa3-Aug-05 9:53 
GeneralRe: Substring.. How?? Pin
oneyard3-Aug-05 18:15
oneyard3-Aug-05 18:15 
Questionhow to get user defined type through webservice Pin
papyrus_lei1-Aug-05 22:49
papyrus_lei1-Aug-05 22:49 
AnswerRe: how to get user defined type through webservice Pin
Christian Graus2-Aug-05 2:17
protectorChristian Graus2-Aug-05 2:17 
Questionhow can i Pin
snouto1-Aug-05 22:46
snouto1-Aug-05 22:46 
AnswerRe: how can i Pin
Guffa2-Aug-05 0:28
Guffa2-Aug-05 0:28 
Questionhow to display/ show() form in a tab page? Pin
nidhelp1-Aug-05 22:26
nidhelp1-Aug-05 22:26 
AnswerRe: how to display/ show() form in a tab page? Pin
Christian Graus2-Aug-05 2:16
protectorChristian Graus2-Aug-05 2:16 
GeneralRe: how to display/ show() form in a tab page? Pin
nidhelp2-Aug-05 16:14
nidhelp2-Aug-05 16:14 
GeneralRe: how to display/ show() form in a tab page? Pin
Christian Graus2-Aug-05 16:40
protectorChristian Graus2-Aug-05 16:40 
GeneralRe: how to display/ show() form in a tab page? Pin
nidhelp2-Aug-05 17:59
nidhelp2-Aug-05 17:59 

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.