| Thread | Last Post | Replies |
|
| struggling to save a tiff as a PNG and keep filesize down | 29 Feb 2008 22:21 GMT | 9 |
I have a Tiff (fax) with the following properties: width: 1728 height: 1090 x resolution: 204
|
| ComboBox Setting both DataSource and SelectedIndex | 29 Feb 2008 22:01 GMT | 2 |
This problem should be simple. I am using Visual Studio 2003, Version 1.1 I am writing a desktop application in which I am binding a DataTable to the DataSource of a ComboBox.
|
| language (sopken) translation | 29 Feb 2008 21:04 GMT | 8 |
I need to translate some text messages wich are in a file wich is in windows .ini format, eg:- [Info]
|
| Missing sqlceme35.dll | 29 Feb 2008 20:44 GMT | 15 |
I am trying to write an application that pulls data out of a SQL Server CE database file, an SDF file. It works just fin on my computer (running XP Pro). But when a co-worker tries to run it on his XP Pro computer, he gets an error that it is unable to load a DLL, namely
|
| Module & Class detection | 29 Feb 2008 20:38 GMT | 2 |
I'm looking for a tool to retrive informtion in which class/module a running C# program executes code. Just to avoid setting huge amount of break points :)
|
| Custom Page class sets all querystring values as properties, but what about UserControls? | 29 Feb 2008 20:31 GMT | 5 |
I have many querystring values that I pass around in my web application, so I created a Custom Page class that simply inherits from System.Web.UI.Page. I then check for all the querystrings in the URL and initialize them,
|
| adding a tag to a jpeg image file | 29 Feb 2008 20:10 GMT | 1 |
I have the following code: try { fi = new FileInfo(fn); //fn is a string from a windows form,
|
| Problem with VS2008 Target Framework | 29 Feb 2008 19:33 GMT | 6 |
I am working on an application in VS2008. I have set the target framework to 2.0. I distributed the app to a coworker in MSI format. When he tried to install it, he was told that he needed to install the 3.5 framework. I am wondering, when I created the project, I didn't
|
| Auto-completion of interfaces in VS.NET 2005 | 29 Feb 2008 19:21 GMT | 2 |
In VS.NET 2003, if I have a class and have it implement an interface, when I type the interface name, it gives me the option to press tab and it will create a #region encapsulated area with all the interface methods, properties, etc.
|
| Saving linq entity object in C: drive | 29 Feb 2008 19:03 GMT | 18 |
I have subclassed entity object used to store settigns per every MDI form: class MyApp.EntityBase.Kontekst { public string mybaseprop1 { get { ... } set { ... } } ...
|
| Reference To An Instantiating Obect | 29 Feb 2008 18:40 GMT | 11 |
I am instantiating an object in an ASP.NET page. From this object I want to be able to access Session. I dont want to change the constructor to pass the page reference to it, and I dont want to have to add extra properties. How can I get a reference to the page object in which ...
|
| C# website or tutorial book that has step by step projects to learn? | 29 Feb 2008 18:38 GMT | 4 |
Can anyone recommend a website or book that offers small projects to do to help you learn the .Net basics and C#? I've been programming for 7+ years but its all been VB6. I'd like to move to .NET but dont know where to start. I learn better when I can follow along with a sample
|
| Michael Howard's Spot the security bug problem. | 29 Feb 2008 18:17 GMT | 3 |
Do anyone know the answer to this problem? Int16 req; ... while (true) {
|
| When inheriting from System.Web.UI.Page or UserControl, do I have to call their contructors? | 29 Feb 2008 17:26 GMT | 4 |
When inheriting from System.Web.UI.Page (or any other class for that matter), do I have to call the inherited classes constructors? I've seen allot of code where people do: protected override void OnInit(EventArgs e)
|
| Singleton - One Per Thread | 29 Feb 2008 16:46 GMT | 2 |
Is there an easy way for to create a Singleton so that for each thread a new instance is created? Threads share memory, so I'm not sure how to go about this one . . . Thanks,
|