|
Re: How to add columns in DataGrid in VB.Net
5/7/2003 11:13:01 PM
(Total replies: 1)
|
| For the second part, this link might give you some tips: http://aspnet.4guysfromrolla.com/articles/021203-1.aspx
Anyway, you cannot have datagrid columns without binding it to a data source. |
|
|
|
|
|
|
Re: DateTimePicker
7/1/2006 11:08:07 AM
(Total replies: 0)
|
| DateTimePicker controls is a WinForms control, not a ASP.NET control. If you are talking about the Calendar ASP.NET control, it is in System.Web.UI.WebControls namespace.
Hope this helps? |
|
|
|
Re: Error on update button.
4/9/2006 10:28:50 AM
(Total replies: 1)
|
| Not sure if this is too late, but: You have not added the parameter @Partnum which is defined in the actual query. |
|
|
|
Re: windows.open Problem
4/9/2006 10:14:48 AM
(Total replies: 1)
|
| Give a different window name (second parameter for window.open()) when opening webform C. Giving same name will only replace the existing content if there is already a window with that name.
HTH |
|
|
|
Re: Outlook contacts...
4/9/2006 11:01:40 AM
(Total replies: 0)
|
| Will this help? http://gsexdev.blogspot.com/2005/09/importing-vcards-from-vcf-files-to.html |
|
|
|
|
|
|
Re: c# make another application alwaysontop
4/9/2006 10:54:21 AM
(Total replies: 0)
|
| I have not tried this, but:
Step 1: Find the window handle of the Office application (see http://support.microsoft.com/default.aspx?scid=KB;en-us;302295)
Step 2: Use SetWindowPos Win32 API; one of the parameters required for this API is the window handle you obtained this in step 1 (see http://www.developer.com/net/csharp/article.php/3347251)
Hope this helps. |
|
|
|
Re: how i can make my program talk to other appls
4/9/2006 10:45:33 AM
(Total replies: 0)
|
| As long as other applications provide public APIs that can be used from .NET, you can just make use of those APIs to make use of those apps' services. For example, Microsoft Word (and Excel, Outlook too) provides COM-based API that you can use from your C# (or any .NET lanugage for that matter) based app to interact.
However, if apps don't have such API, then you may simulate keyboard inputs, but it might end up being raw for some applications, if not for most. Check this one: ... |
|
|
|
Re: Question about VS 2005
4/9/2006 10:30:32 AM
(Total replies: 0)
|
| May be my reply is too late: Yes, I have intalled both on the same box. They work well without any problems. |
|