| Thread | Last Post | Replies |
|
| Send output to specific panel | 11 Oct 2007 21:50 GMT | 5 |
Hello all, I'm a bit of an ASP.NET / C# noob so bear with me. In my codebhind I have taken some data and based on that data I have some javascript to post back to my page. The javascript is in the string variable "BottomCode".
|
| Interface -- C# thing or .NET thing | 11 Oct 2007 21:24 GMT | 5 |
I am wondering if the notion of interface is a C# thing or .NET thing. In other words, is it supported at the language level, like C++'s support of classes, or at the runtime level? Could anyone help? Thanks,
|
| maintain session (cookies, etc) as you use webrequest... | 11 Oct 2007 20:56 GMT | 2 |
I am surfing through a website via webrequest... but the session "dies" from one webpage load to another. It's as if I load each webpage in a "new browser" (conceptually inside my code) where there are not cookies or previous knowledge of the previous webpages I have
|
| Webservice error with non-alphanumeric data | 11 Oct 2007 20:42 GMT | 1 |
I have a C# webservice with a web method that accepts a string parameter that contains encrypted data. For some parameter values with non-alphanumeric values then the web method fails with an HTTP status 400. Is there a way to prevent this error from happening?
|
| String object w/ XML data | 11 Oct 2007 20:01 GMT | 8 |
I serialized an XML document and stored it in an SQL XML column and retrieved it as a string object using a stored procedure. Now I have this string object that has my XML data that I want to write to an XML document but to a memory stream, not physically to the
|
| ComboBox | 11 Oct 2007 19:51 GMT | 2 |
I have a scenario where I have a populated combobox from an enumerated datatype (DbProvider). I then save the text value chosen to XML. When the app is opened up, I would like to read the value from XML, which is no problem and have the combobox check for the value and
|
| Generating a matrix with all possible combinations of values | 11 Oct 2007 19:13 GMT | 4 |
Okay my math skills aren't waht they used to be... With that being said what Im trying to do is create a matrix that given x number of columns, and y number of possible values i want to generate a two dimensional array of all possible combinations of values.
|
| Unidentified Publisher etc. Message | 11 Oct 2007 19:04 GMT | 9 |
Re Unidentified publisher. Don't run the program unless you know ... Different applications created using Visual Studio and C# run without this message popping up. However, one other application does keep on showing this message. All applications that were compared, were produced ...
|
| Transaction object | 11 Oct 2007 18:24 GMT | 2 |
I have a code like this: ========================================== private void cmdProceed_Click(object sender, EventArgs e) {
|
| Translating WinForm menu items dynamically | 11 Oct 2007 18:19 GMT | 5 |
I have database containing translations. I'm creating VS 2005 WinForms application which should use this database to translate menu items to user language. I replaced lines in myform.designer.cs like
|
| DBCommandWrapper | 11 Oct 2007 16:32 GMT | 5 |
I am developing a web service in C# in Visual Studio 2005. I am trying to use the Enterprise Library for data. But it will not recognise DBCommandWrapper. I have added all the relevant references to the EL Configuration, Data Access, etc and I have this at the top:
|
| multiply two objects | 11 Oct 2007 16:20 GMT | 10 |
I have a method that is passed two objects and it needs to return an object that represents those two objects multiplied together. public object Multiply(object a, object b) {
|
| Combating flicker | 11 Oct 2007 16:18 GMT | 4 |
Hello, I inherited a large Winforms project that is suffering from excessive flicker when switching between portions of the application. I've noticed that most parts of the application (user controls and forms) have DoubleBuffered set to true. In addition to that, in the
|
| P/Invoke Problem | 11 Oct 2007 15:55 GMT | 9 |
I have the following C functions exported from a DLL: void copyString2(const char * sSrcBuf, long nSrcBufSize, char ** sDestBuf); void freeString(char * sBuf); The idea is to copy the source buffer into the dynamically allocated
|
| Throwing Exceptions | 11 Oct 2007 15:28 GMT | 4 |
I have a query about throwing exceptions. To throw an exception I type something like: try {
|