| Thread | Last Post | Replies |
|
| PDF with CCITTFax encoded image streams - anyone have any experience? | 05 May 2008 20:04 GMT | 1 |
I need to bang out a quick application to extract CCITT compressed TIF images from a ton of PDFs. I've used PDFSharp in the past to work with PDFs but ti doesn't have support for the PDF /CCITTFaxDecode filter. I've googled for the obvious terms to try to find some code samples ...
|
| Wpf Question: No CloseReason? | 05 May 2008 19:05 GMT | 4 |
I'm trying to begin a new application in Wpf, and I'm trying to do some similar things to what I have been in Wpf. For example, in WinForms I have a base BusinessEditForm class. This overrides OnClosing, which checks the CloseReason. If the reason is
|
| Windows Form List & Text controls: Newbie Qs | 05 May 2008 19:04 GMT | 4 |
Hi, I have just started building an application which is windows form based, rather than web based, and I am having troubles with layout. I can't find any control which gives me just a simple text list! There is
|
| Command Line compiler help | 05 May 2008 17:59 GMT | 4 |
I am trying to compile a Windows Forms project through command line. I have added some images on the buttons. These images are added as a resource and stored in the "Resource" directory inside the project directory. My project is quite small, (only a single form).
|
| Decrypting a data protected by ProtectedData.Protect() on another PC. | 05 May 2008 17:39 GMT | 3 |
It seems like the Protect() uses the Windows accout information to encrypt data. If I know the user name and the password, can I decrypt it on another PC? If it is not, how about the exported key? On Windows Vista, if file encryption is used, Windows suggests to back up the
|
| Extracting a row out a dataset and working with it | 05 May 2008 14:40 GMT | 3 |
1 public void AddItem(string itemCode) 2 { 3 DataRow[] itemRow = DBAdmin.Products.Select("Code = '"+itemCode+"'");
|
| Expression in enum | 05 May 2008 12:28 GMT | 4 |
I often wrote my constants in C/C++ in the following form: #define FOURCC(c0, c1, c2, c3) ( ((DWORD)(c0)) | ((DWORD)(c1) << 8) | ((DWORD)(c2) << 16) | ((DWORD)(c3) << 24) ) #define CONST_A FOURCC('A','B','C','D') // A-tag: "ABCD"
|
| How to unstall a applicaiton with c# | 05 May 2008 11:48 GMT | 7 |
How can I unstall a applicaiton with c#
|
| Linq question | 05 May 2008 11:08 GMT | 1 |
I have a problem with a linq query. I'm working on a timesheet project. Given the following linq query: var query = from L in listTimesheetRecord
|
| Referencing in-memory assembly on compile | 05 May 2008 10:01 GMT | 2 |
I need compile in-memory assembly which references to other in-memory assembly. Compiling second assembly fails with error Line: 0 - Metadata file 'eed7li9m, Version=0.0.0.0, Culture=neutral,
|
| WebService and timeout | 05 May 2008 08:47 GMT | 2 |
I'm dealing with scenario when call to any web method ends up with timeout and I try to add the user a chance to retry (wait a little bit) My service proxy code looks like this: AsyncCallback cb = new AsyncCallback(ServiceCallback);
|
| sort list base on another list | 05 May 2008 06:36 GMT | 11 |
I have 2 lists- a string list and a int list. I need to sort the string list alphabetically and then sort the int list according to order of the string list. Assume both lists have the same length.
|
| copy lists | 05 May 2008 04:38 GMT | 1 |
When I tried to add new items to a copied list, it affects both lists. List<int> intList1 = new List<int>(); List<int> intList2 = new List<int>(); intList1.Add(1);
|
| Array of String Constants? | 04 May 2008 21:31 GMT | 3 |
I am converting a VB.NET program to C#.NET. How do I code the following from VB.NET to C#.NET? Private DataTypes() As String = { "Text", "Integer", "Date" } Thanks for any help!
|
| Combined Enums / [Flags] | 04 May 2008 21:07 GMT | 2 |
Im using C#3.0 and in my book of words it tells me that when I use the [Flags] I should be able to call ToString() on a combined enumeration and have it emit a series of strings. IE
|