0
votes
1answer
27 views

Why ToolStripItem can't handle big numbers?

I have a recursive funcion that search for folders. private int contFiles = 0; private List<string> GetFiles(string folder, string filter) { var files = new ...
0
votes
2answers
24 views

How to get XML namespace?

I tried using this code: [C#] var textReader = new XmlTextReader(path); if (textReader.NamespaceURI == "http://www.portalfiscal.inf.br/nfe") { //... } My XML: <?xml version="1.0" ...
0
votes
0answers
28 views

WPF Fluent Ribbon Compile Problems

I am trying to compile the latest Version of the Fluent Ribbon (e709a1f6bb2e) for .NET 3.5 with Visual Studio 2008 but I got several problems with that. After removing the empty (?) Office2007 Theme ...
4
votes
1answer
167 views

Strange behavior from Excel.Worksheet.Cells[row, column]

I have the following method: public static object getValue(Excel.Worksheet sheet, int row, int col) { Excel.Range r = sheet.Cells[row, col] as Excel.Range; //I've also tried ...
0
votes
0answers
35 views

Unwanted Exception squelching during VS2008 debugging

Is there a way to force SqlDataReader to throw exceptions? There seems to be a very problematic behavior with it where SqlDataReader will have an exception and cause the function it's in to end ...
0
votes
0answers
179 views

VS2008 .NET3.5 Setup project unable to add exe or dll from VS2012 / .NET4.0

We have an older Windows application developed using VS2008 .NET3.5. We have a new 3rd party "tool" application comprising an exe and dll developed using VS2012 and .NET4.0. The intention is to have ...
3
votes
4answers
265 views

Delete all data from all tables

Is there an elegant way to wipe all data in the database (removing every row from every table) without destroying the architecture and having to remove/read constraints? I could just delete data ...
0
votes
1answer
99 views

SQL CE 3.5 - Select field from another table

I'm working with databases for the first time (SQL CE 3.5) and I'm not certain how I define a relationship between tables where later ( I think) I'll have to use a join to select some value for one ...
0
votes
1answer
101 views

Regex - including the colon

I would like to use the Regex to match the first twelve characters of a string I've received. I'm receiving the string and I want to validate which string to discard and which to keep. Once I've ...
1
vote
2answers
364 views

SQL Query Result to List<T> mapping

In my database I have 2 tables: id | name | city | street ------------------------------- 1 | John | London | Street1 2 | Will | London | Street1 3 | Adam | LA | Street1 id | uid ...
0
votes
1answer
68 views

SQLDataReader doesnt show first element, but accesses it?

I have code similar to the following: SqlDataReader sdr = null; . . sdr = cmd.ExecuteReader(); while(sdr.Read()){ string x = sdr["x"].ToString(); Console.WriteLine(x); long? y = ...
0
votes
1answer
75 views

Change already-written console application to project of “Windows Service” type?

I have a console application which I need to change to a windows service. How do I do this? In Properties it only has "Windows Application", "Console Application" and "Class Library" in the drop down. ...
2
votes
1answer
74 views

first issue with first linq

I'm using vs2008 framework 3.5 and i'm looking about linq for first time, following these http://msdn.microsoft.com/it-it/library/bb385164(v=vs.90).aspx Creating data source like this ...
6
votes
2answers
2k views

Visual Studio 2012 failing to detect Visual Studio 2008 build tools

I am trying to use Visual Studio 2012 to build a C++ CLI application targeting .NET 3.5. I've already gotten this working on one machine, by installing Visual Studio 2008, and specifying the v90 ...
0
votes
1answer
97 views

Who knows the distribution of .NET Framework 3.5? [closed]

I have a product (VB.NET / Winforms) I develop on VS2008, based on .NET FW 2.0 It could be installed on any Windows x86/64 machine (starting from XP) We now have to upgrade the FW to 3.5, and I have ...
0
votes
0answers
109 views

Repeat Scroll Animation Richtextbox in Vb.net

i want to scroll Richtextbox Text like vertical scroll Repeatedly with animation like news website's.i don't have idea achieve like this one and please can any one guide me how to achieve this one in ...
0
votes
4answers
708 views

How to insert many rows of data from arrays/lists to SQL Server (DataSet, DataTable)

I need little help with transferring data from variables, arrays, lists to my SQL Server. Im not bad in SQL, but im not familiar with DataSet, DataTable objects. My data is now stored in list of ...
1
vote
1answer
196 views

Timer not working when started in AsyncCallback

I need to call async operation every 5 seconds, because operation sometimes can be longer I figured out to call method, then after I get result wait 5 seconds and call it again. In main class I have ...
1
vote
1answer
120 views

How do you prevent dragging controls out of a custom control at design time?

In this user control the designer adds items to this control on the form and it dynamically places them on the form. Unfortunately once these controls are shown on the form in designer I can then ...
3
votes
2answers
590 views

Custom Control Doesn't Update in Visual Studio Designer

I'm creating a custom control that lays out radio buttons (No it doesn't have to be radio buttons. I'm just trying to learn how to do this so I can make some more complex stuff down the road that may ...
1
vote
0answers
315 views

NumPy/SciPy in c# with Visual Studio 2008

I want to access the NumPy/SciPy libraries from c#. According to this site, "The IronPython ports of NumPy and SciPy are full .NET ports and include custom C#/C interfaces to a common native C core. ...
0
votes
0answers
365 views

Windows Mobile 6 / Web services: Unable to connect to the remote server exception

I use visual studio 2008 and windows mobile 6 professional SDK. I created an ASP.net web service and then consumed it from WM6 application. When I run the mobile application I got this exception ...
-1
votes
2answers
135 views

DLL file usage not allowed to others in C#

I have a solution consisting of about 10 important DLL files which are developed inside the same solution, when I release this solution, all the DLL files (public classes and functions inside) are ...
0
votes
1answer
83 views

store a sql report in a sqlce text field?

OK, the above may seem somewhat strange but please bear with me... I'm building a reporting app. in C# on .NET3.5 which contains a SQLCE 3.5 sp1 database. I want to use the database to store the sql ...
0
votes
0answers
293 views

Complex client side validation using jquery

I am using the Jquery validation plugin with my asp.net project by following this link: http://www.junnark.com/Blog/Detail/using-jquery-validation-with-aspnet-web-forms Validating the basic required ...
0
votes
1answer
238 views

system collections specialized not found

Trying to compile a c++/cli program using VS 2008 and .NET framework 3.5 These statements work: using namespace System::Collections; using namespace System::Collections::Generic; but the ...
1
vote
2answers
159 views

XmlDocument - I want <Item></Item> and not <Item/>

I have to send an XML as a SOAP response to a SAP WAS. SAP is quite fussy with what you are sending (special characters and stuff), and by now I want to exhaust all possibilities. Is there a way ...
0
votes
1answer
240 views

Access to the database file is not allowed

I have an WinXP application (which works perfectly in WinXP) which I am trying to install on Win7. The installation was fine, but when I double click the application to load it, I get a message ...
1
vote
1answer
3k views

cannot install .NET Framework 3.5

I already have installed Microsoft Visual Studio 2008 SP1 and VS 2010 SP1. I'm using Windows 7. Then, I noticed in my Installed Programs in Control Panel that only the following were the installed ...
0
votes
1answer
95 views

Package VS2008 install project in XP for Win7

I'm developing on WinXP Pro 32bit using VS2008 Pro. Do I need to create an installation/deployment project in any special way to get my application on install on a Win7 Pro 64Bit computer? At the ...
0
votes
1answer
422 views

How to search text (Exect match) in pdf in C#

I am stucking in my application. I want to search text (Exact match) and there location and highlight the text in pdf through axacropdf control in c#. How can I do this. I have googled many topics but ...
0
votes
1answer
100 views

Cannot store more than 11 items in a List<Int32> in a Dictionary<int, List<Int32>>

Okay, so you got the idea from title, let me just post the code and in comments I'll explain what's happening (and what should!) // select distinct subject from database cmd.CommandText = "SELECT ...
0
votes
2answers
247 views

Regex to replace XML comment with a C# Attribute

I have an XML Schema that I'm trying to create C# classes with. At the moment, I'm working with XSD2Code to create the classes. The original schemas have elements that look something like this: ...
0
votes
1answer
463 views

UpdatePanel Update() causes InvalidOperationException Error

My Asp.net 3.5 Visual Studio 2008 Web App has a Web Page (Admin.aspx) with a button event that runs an lengthy process (30 seconds +) then triggers an UpdatePanel1.Update() to refresh the page.. ...
4
votes
1answer
2k views

Usercontrol runtime width and height

I am trying to create a simple User Control (not WPF) in VS2008 which effectively is a SplitContainer with a button in Panel1, which when pressed, toggles the Panel2Collapsed property and resizes the ...
0
votes
1answer
92 views

How to use custom directive in a T4 template?

I created a custom T4 directive processor in one project, and now I want to use the processor in a T4 template in another project, but I'm receiving the following error: The type ...
0
votes
1answer
143 views

Visual Studio 2008 - Unhandled Exception straight to Form Dispose

I'm using Visual Studio 2008, and working on a winform. Usually, on the event of an unhandled exception, the code will break on the line causing the error. However, it has started simply closing the ...
2
votes
1answer
202 views

Extension Methods in T4

I'm trying to use PGK.Extensions in a T4 template in VS2008 for VB.NET and I get: RemoveAllSpecialCharacters is not a member of string.. My T4 headers: <#@ template language="VB" ...
0
votes
1answer
963 views

Missing External Function in IEFrame.DLL and SHLWAPI.DLL when referencing SharpSVN

Note: This section contains incorrect information - skip to the update below for details. This section left in for historical purposes. I have a WPF project in Visual Studio 2008 targeting .NET 3.5 ...
1
vote
0answers
238 views

How to create association in Entity Framework in .NET 3.5?

I have no problem to creates in Entity Framework 4 with Visual Studio 2010.... I have setup 1 to 1 association, but I have no idea how should setup the mapping detail... I have an employee table, ...
3
votes
3answers
423 views

How to specify a range of RGB values in C#

On a form I have a PictureBox, a button to load image in the picturebox and couple of more buttons to do some operations on the image loaded into the picturebox. I load a bitmap image into the ...
2
votes
2answers
2k views

C# way to implement vertical auto-hiding tool bar

What I'm attempting to create is very similar to the "Toolbox" in VS 2008 and VS 2010. It will be on the left side of my MDI parent, and will pop out when the user hovers their mouse over it. Again, ...
0
votes
0answers
407 views

“Attempted to read or write protected memory. This is often an indication that other memory is corrupt.” with GetPrivateProfileString

I'm currently attempting to take in some managed string data and use it to retrieve data from an ini file. This works perfectly fine in release mode, but when I try to use debug I'm get the exception ...
5
votes
2answers
485 views

Why the version of System.dll is 2.x in my .net project targeting .net framework 3.5?

I've a solution targeting .net framework 3.5. All the references to core dlls have runtime version 2.x since they were compiled with it. Why is it so? Does this mean I'm not using latest versions of ...
0
votes
1answer
1k views

Error while using DataTable.Select() Method in Vb.Net

I am using DataTable.Select() method to filer based on some conditions. dtRows = m_dtTable.Select(String.Format("IdentifierID={0}", dtRow ("QuestionID").ToString)) I used the similar way to sort ...
0
votes
1answer
269 views

How to access data in a nested List in c# reportviewer?

I have a Business Object which contains a DataTable among other properties. I pass a List<> of this object as my report DataSource. In my report I have a List that display some properties and a ...
2
votes
1answer
162 views

Can you mix assemblies compiled in different versions of .Net?

We have a set of assemblies that have been compiled as.Net 3.5 (built using VS2008). I now have VS2010 and I'd like to see what .Net 4.0 has to offer. Do I have to recompile the 3.5 assemblies into ...
1
vote
2answers
517 views

How to make update panel not update whole page?

I have an update panel that has a table in it with 4 images. Every few seconds a new image is shown. All this works but when the image changes the whole page is refreshed. I am using Visual Studio ...
0
votes
2answers
134 views

WPF Wired Event Handler is not called

Day 2 and I don't have a clue. [.Net 3.5, VS 2008] I have a UserControl that defines a ClickEvent: public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent ( "Click", ...
2
votes
1answer
721 views

Debugger kills the application with no explanation (on a CryptoStream.ReadByte() call)

EDIT: I identified the problem. The constructor for my object was initializing a file stream in writing mode, whether or not we were about to encrypt or decrypt the file. Even though the writing file ...

1 2 3 4 5