Forum: C# Jun 5th, 2009 |
| Replies: 4 Views: 940 So what exactly initiates the download? It comes from javascript? You might have to just parse the javascript. Sendkeys would be a cop out :) |
Forum: C# Jun 5th, 2009 |
| Replies: 4 Views: 940 You should override the Navigating event of the browser control. You're going to have to figure out when the URL is the download url (the file name might change, but it might be in a certain path or... |
Forum: C# Jun 4th, 2009 |
| Replies: 2 Views: 566 You don't have to compile the project from the command line to generate a .dll file. In Visual Studio, select the Class Library project type, and that will compile into a .dll file. After you... |
Forum: C# Jun 1st, 2009 |
| Replies: 2 Views: 1,531 I don't think there are services on Windows Mobile, however, you can just run an application in the background on startup (with no UI). |
Forum: C# Jun 1st, 2009 |
| Replies: 5 Views: 1,116 Well the opennetcf library is open source, so you can at least download the source and see how they do it. |
Forum: C# Jun 1st, 2009 |
| Replies: 5 Views: 1,116 Check out the OpenNetCF Desktop Communication Library. It is available here: http://www.opennetcf.com/FreeSoftware/DesktopCommunication/tabid/90/Default.aspx |
Forum: C# Jun 1st, 2009 |
| Replies: 1 Views: 640 It looks like there are 4 C# Twitter libraries listed on the Twitter API Wiki. You can check them out here: http://apiwiki.twitter.com/Libraries#C/NET |
Forum: C# Sep 1st, 2004 |
| Replies: 11 Views: 64,011 All the C++ would be doing is converting 1 into "true"; that's not rocket science. This would work:
while(Convert.ToBoolean(1)) {} |
Forum: C# Nov 17th, 2003 |
| Replies: 11 Views: 64,011 if("a"=="d")
{
//do something
}
else if("a"=="c")
{
// do something else
}
else
{ |