| Thread | Last Post | Replies |
|
| How to validate left argument in my operator == method | 31 May 2007 06:30 GMT | 2 |
I have these to methods: public override bool Equals(object obj) { if (obj == null)
|
| Attributes to expose C# enum through COM Interop | 31 May 2007 06:27 GMT | 1 |
...just like the MIDL "enum" so I have access to this thing from the host side. Is it as simple as giving the enum a public attribute/guid? thanks! tima at predator dash software dot com
|
| pined pnael | 31 May 2007 02:43 GMT | 1 |
in visual studio there are pinned panels. they are very responsive. How can create in my c# application pinned panel that works like vs also? so far I found nothing form google , built-in help. I know on PC's with less capable graphic card, the pinned panel may well
|
| Moving the caret in a multiline RichTextBox | 31 May 2007 01:18 GMT | 2 |
I'm trying to implement a backspace on the "bottom" line of a multiline text box. I want it to be ignored if it's already at the beginning of that line. I think I've got the part about removing each character from the string that represents that line, but how do I back up the ...
|
| Windows Service installation.... | 31 May 2007 01:09 GMT | 1 |
I have written a Windows service which is consuming a webservices. When i am trying ti install the windows service using installutil.exe it gives me an errorr:- Exception occured while initializing the installation:
|
| datgridview to datatable | 30 May 2007 22:06 GMT | 1 |
i have a datagridview bound to a dataset that is populated with data from a query from the source datatable. the data is then modified by some procedures but still maintains the same schema. how do i update a different datatable with the updated data from the datagridview? the
|
| How to know http method from a webbrowser? | 30 May 2007 22:02 GMT | 2 |
Hi, I'd like to know current webbrowser's method ( get or post), how can I know? I looked for a long time, but I still have no idea. who can help? Regards
|
| Is it possible to run setup file from C# code? | 30 May 2007 21:53 GMT | 5 |
I have this method in my c# vs.net 2003 code: ================= Start Code ================= private void isOutlook() {
|
| OpenFileDialog Event Handling | 30 May 2007 21:39 GMT | 2 |
I need to use the OpenFileDialog class to get the name of a file, but I don't want it to check to see if the file is really there since I may just want to type an arbitrary name in and create it later. I assume the correct way to do this is to handle the OK button click event. ...
|
| How to check if my com add-in already installed in this computer | 30 May 2007 21:14 GMT | 1 |
in a c# project. string guid = "HKEY_CLASSES_ROOT\MatarotToolbar.Connect" RegistryKey key = Registry.LocalMachine.OpenSubKey( "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\" + guid);
|
| MS SQL Connection Error from Client | 30 May 2007 21:00 GMT | 5 |
I am new about C# and MS SQL. I have done a new program which use MS SQL Database and I've install it to a new computer. But program doesn't run on new computer. I give SQL Server Connection Error (provider:SQL Network Interfaces, error: 26 - Error Locating Server/
|
| How to remove automatic generated lines in Form.Designer.cs refering non-existing objects ? | 30 May 2007 20:53 GMT | 3 |
Assume the following sequence of user actions starting with a Form and an e.g. StatusStrip: 1.) User doubleclicks on the StatusStrip 2.) VisualStudio jumps to the new generated source code mystatusstrip_itemClicked() { ..... }
|
| how to read/write settings (using .ini, xml, whatever)? | 30 May 2007 20:42 GMT | 11 |
I want to read/write user settings. I thought about using .ini or .xml files. Are there classes in c# to handle this? The stuff I find on the 'net seems old. Titan
|
| mshtml | 30 May 2007 20:21 GMT | 1 |
My C# webservice uses the mshtml reference. On my local computer it works fine but on my host server I get the error: Parser Error Message: Could not load file or assembly 'Microsoft.mshtml, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one
|
| Release build not optimizing | 30 May 2007 19:58 GMT | 35 |
I'm using MSBUILD to build release and debug versions of a winform project (VS.NET 2005). The project file has conditionals to file reference DLLs depending on the build configuration (debug or release). The generated EXE PDB file for release is 2KB smaller than
|