| Thread | Last Post | Replies |
|
| Problem with structure between C++ and .NET | 10 Oct 2004 10:26 GMT | 1 |
I want to call a C++ function in my additional DLL out of my VB.NET code. Unforunately, this function needs a structure as an argument and here's where the problems begin: This is the C/C++ declaration:
|
| How to get control identification from (Sender as Object) | 10 Oct 2004 08:36 GMT | 3 |
I have this event that is performed by three different controls, how can I know (from sender object) wich control is used to trigger the event? Private Sub HighlightSelectedRow(ByVal sender As Object, ByVal e As System.EventArgs) Handles tbxAmount.Click, lblID.Click, lblExpense ...
|
| Creating an ASP.NET project on another site | 10 Oct 2004 03:51 GMT | 1 |
I have windows server 2003 running on my laptop for development. I have five separate web sites created in IIS and I would like to create a project in one of those five sites. However VS will not let me create a project in a site other than localhost. Any ideas?
|
| [newbie] strange error | 10 Oct 2004 03:48 GMT | 1 |
I'm currently developing a VB.NET application and I encounter a strange error: Look at this code: Private Sub LinkLabel5_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles
|
| Viewstate overhead ? | 10 Oct 2004 03:46 GMT | 1 |
Is there any overhead associated with having viewstate enabled but nothing is being stored in the viewstate? I have an aspx page that uses regular HTML, i.e. <input type=submit value=submit>, and viewstate is enabled in the web.config file of my application. Just curious if ...
|
| .NET Compiler optimization and component updates | 09 Oct 2004 23:31 GMT | 3 |
All, This is a general question regarding how, and if, compiler optimization techniques affect the general concept of being able to update a component of an application without requiring a recompile of client code.
|
| VB.NET interface colours | 09 Oct 2004 23:23 GMT | 3 |
I have just loaded Visual Basic.Net. I find the interfact colours very drab, especially compared to Office 2003. How do I change the interface colours (currently greys & white) Ta Carlo
|
| Where's interop.sqldmo? | 09 Oct 2004 21:59 GMT | 2 |
I have an application that's giving an error during installation. "Error 1935. An error occured during the installation of assembly interop.sqldmo, version 8.0.0.0, PublicKeyToken........" I am not sure what the error is about. I don't know if the app is trying to
|
| application idle time | 09 Oct 2004 15:31 GMT | 4 |
I am working on a vb.net project and would like to have a automatic timeout after a set idle time..Any ideas? Dayne
|
| Getting UTC of a city or country | 09 Oct 2004 14:11 GMT | 2 |
i am working on a project in asp.net which has a page with details about a user. on filling the city or the country i want to know the time in that city or country and display in a label.
|
| reference an object by its name | 09 Oct 2004 10:57 GMT | 3 |
I have a tricky question. Suppose I have a member or local variable named XYZ. I want to reference the object using a string, "XYZ". In code, I want to do the following.
|
| PropertyDescriptor information lost on data bound ComboBox when made invisible | 09 Oct 2004 10:52 GMT | 1 |
I have bound a custom list object to a combo box's data source. This object implements the ITypedList interface and returns a PropertyDescriptorCollection to the fields in the list object. The appropriate list field is then selected via the ComboBox's DisplayMember
|
| undo doesnt work | 09 Oct 2004 09:23 GMT | 2 |
im trying to use the undo function of the richTextBox but its working wrong. when im pressing the "undo" button all the text of the richTextBox is deleted (even if my last action was to delete only one char) whats wrong??
|
| Regex | 09 Oct 2004 07:13 GMT | 1 |
Can someone give me a quick summary of what this does? static $S = array('/javascript:/si', '/about:/si', '/vbscript:/si', '/&(?![a-z0-9#]+;)/si'); static $R = array('javascript:', 'about:', 'vbscript:', '&');
|
| insert trigger, profile could not trace | 09 Oct 2004 05:19 GMT | 4 |
We have merge replication system. In a table, there is a insert trigger. When a record is inserted from SQL analyzer, the trigger works fine. When a C# application insert a record, the trigger did not fire. I even can not trace the insert from the application with profile. ...
|