| Thread | Last Post | Replies |
|
| To hard-code or not for filtering out inactive records | 08 Oct 2007 17:42 GMT | 3 |
At first, it's easy to say (have a policy) that we'll hard-code for statuscode='ACT' (or maybe instead statuscode <> 'INA') but I think that pigeonholes us and would cause limitations. Example: We want to develop an Employee search screen. Obviously, we don't
|
| in C# | 08 Oct 2007 17:01 GMT | 3 |
i have a radiobutton list, and one label with a textbox. Beside the Texbox i have inserted a fieldvalidator: now, i was wondering if the code that follows is correct, and if it does, where i should put it. What i want to do is this: if is selected YES on the RadioButton,
|
| Reference to a namespace | 08 Oct 2007 16:57 GMT | 4 |
I have an example C# programme which shows me how to communicate with a scientist instrument. It includes the namespace statement "using Ivi.Visa.Interop" If I copy this into a blank winform programme, when I compile, I get an error "The type or namespace name 'Ivi' could not be ...
|
| Basic object design help | 08 Oct 2007 16:24 GMT | 8 |
I'm trying to get my head round designing business objects in C# to use with an ASP.NET application. For example, I have a table in my db for Adverts. The fields look like this: AdvertID int PK
|
| convert type 'byte[]' to 'string' | 08 Oct 2007 16:15 GMT | 7 |
What would be the "right" way to convert type 'byte[]' to 'string'? Thanks EitanB
|
| Passing values from C# from/to a C++ dll | 08 Oct 2007 15:46 GMT | 10 |
Hi, I have this in C++ and I like to call it from c# to get the value but I fail. it will be good if you can give me some information. I tried it in VB.net it works but I use almost the same way as VB in C# but it doens't work.
|
| Enum Enumeration issue | 08 Oct 2007 15:27 GMT | 2 |
Can anyone help me please. I have created an Enumeration, and I loop through it, it all works ok, except the first item returns 2 times. Code is below. When called I Get "Text Edit" 2 times public enum CustomFieldTypes
|
| Creating a reference to an object | 08 Oct 2007 15:16 GMT | 19 |
I want to create a reference to an object, so that changes to the referenced object are reflected in the other object. Like this: object o = 123; object p = o;
|
| Real time share prices | 08 Oct 2007 14:42 GMT | 8 |
Hi All, does anyone know a site that I can query share prices programmatically ( possibly passing in a stock symbol )?
|
| restriction regarding sales of custom control | 08 Oct 2007 14:34 GMT | 1 |
I'm coming from MS competitor world ... Borland to not named it :-) under their platform, if you develop you own control, they tell you to split your control between the design time and the runtime parts. They say we can not redistribute the design time part as usually it
|
| Radiobutton | 08 Oct 2007 14:26 GMT | 1 |
I placed the following code into my page, but i get an error message, why? The code is: if (this.RadioButtonContatto.Checked == "YES")
|
| how i can change image size? | 08 Oct 2007 13:59 GMT | 2 |
i'm wprking with C# 2005 + SP1, and i want load image from image file, and then resize it (like from 800X600 Pixel to 640X480 Pixel), and then save it in another image file, i want do that for resize many images to publish it on the internet, the picture box can load image and ...
|
| Anonymous Method | 08 Oct 2007 13:54 GMT | 2 |
What name does the compiler give to anonymous methods in the output assembly - or what is the "name pattern"? ... can't imagine it would be relevant to anything I do... just curious.
|
| Build bitmap from other images | 08 Oct 2007 13:39 GMT | 2 |
I would like to ask a question for which answer i couldn't find on google. I need to dynamically create Bitmap image inserting smaller parts at specified position. Does framework support such a thing? PK
|
| call a COM DLL from C# application | 08 Oct 2007 13:37 GMT | 1 |
i developed a COM DLL using VS2005. why there are two DLLs i found, one is in project directory having company name and project name as prefix like "ABC.Proj.Exp.dll" and other in the release folder named "Exp.dll".
|