Tagged Questions
1
vote
1answer
40 views
TransactionScope rollback with Visual Basic.net and SQL Server 2008
I'm learning how to use transactionScope with Visual Basic.net in Visual Studio 2008 and I'm trying to make and easy query updating some data and the launching an exception, but the transactionScope ...
0
votes
0answers
16 views
Editing office (microsoft and maybe openoffice) files in a aspx page
We have an asp.net project that has some integration with Microsoft Office. We've been asked to make an aspx page that allows the user to edit an office file (.doc). It could be from Microsoft Office ...
0
votes
1answer
17 views
Using PrintQueue Class in Visual Studio 2005
I want to use the PrintQueue Class to Manage the printers and print jobs.
I am having Visual Studio 2005, but PrintQueue is not supported in vs2005.
Is there any way to use this class in vc2005?
0
votes
0answers
31 views
Contextual menu strange behaviour within a modeless dialog?
We develop in C++/CLI with VS2012. We have a modeless dialog where a contextual menu (ContextMenuStrip, right click...) is used. When we built the app with VS2005, everything was fine and the ...
0
votes
1answer
171 views
SelectedIndexChanged event of gridview fails to fire randomly
Hi I have a Gridview SelectedIndexChanged event. it fires on click of any row in that grid. But sometime (once in 10 tries) it doesnt fire. i have some code inside AgeGrid_SelectedIndexChanged which ...
0
votes
0answers
90 views
PrintPreview dialog is not showing up when application is portable
I have a weird problem. I have a C# (.NET 2.0) Windows application that needs to be portable (IE: To be self-contained, that has all its required DLLs in its own folder to work).
In this application, ...
3
votes
3answers
77 views
Databinding and refactoring code
I'm just curious about some coding practice behind binding data to a combobox (or other bindable object I guess).
Let's say I've created an object, and I want to add a bunch of them to a combobox.
So ...
0
votes
2answers
221 views
programmatically changing Combobox selection without causing the SelectedIndexChanged to fire
So I have a combobox with an event handler for SelectedIndexChanged:
Private Sub cmbStatus_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ...
1
vote
1answer
197 views
Updating datagridview cell values and displaying on datagridview
I am trying to make a datagridview in visual studio 2005 in c# and .net in which i have defined the number of rows and columns (like 2*2) I want to add values to these cells .How can i add values to ...
0
votes
4answers
133 views
How to split a space-delimited list of paths where paths can include spaces in .NET 2?
For instance:
c:\dir1 c:\dir2 "c:\my files" c:\code "old photos" "new photos"
Should be read as a list:
c:\dir1
c:\dir2
c:\my files
c:\code
old photos
new photos
I can write a function which ...
0
votes
1answer
111 views
Pointer to picturebox
I am trying to learn C++ using Visual Studio 2005. I have created a form that contains many PictureBoxes and I would like to be able to refer them via an array. Before creating an array, I'm trying ...
0
votes
0answers
191 views
Targeting .NET 2.0 in VS 2012 - any issues?
We have a product that is on .NET 2.0, and it needs to stay on that platform for a while longer. It is currently being developed in VS 2005, but I would like to have only one development environment ...
0
votes
2answers
117 views
Script to replace an image (.jpg) daily with another image? [closed]
I have a Visual Studio 2005 site which has been up a running for a while. I have an image (.JPG) on this site that I think I need to apply some JavaScript to or something?
Essentially I have 25 ...
0
votes
1answer
95 views
Easier way to send parameterised query to database?
Is there a way to write the following code in less lines? It seems like a lot of code to execute such a simple query. No LINQ as I am using VS2005. Answers in either VB or C# are acceptable.
Using ...
1
vote
0answers
134 views
select multiple controls at runtime just what we can do at design time [closed]
I am developing an application, I need some idea to select multiple control in the run time environment A just what we can do at design time
as of now i can select one control at a time but i need ...
-1
votes
3answers
589 views
How to Round DateTime in Vb.net to the nearest 5mins
I am writing some data analysis software, I want to upscale timebase of my Raw Data. My Raw Data has a time step of ~2minutes. I want to scale the data into several database tables with a timestep of ...
1
vote
2answers
193 views
What is the effect of “Suppress JIT optimization on module load” debugging option?
What is the effect of the "Suppress JIT optimization on module load" debugging option?
I have recently had to turn it off to deal to be able to successfully debug an app that uses a COM component.
...
0
votes
2answers
538 views
How to write event handler in VB.NET?
I am trying to test out very simple event handling in VB.NET.
So far I have:
Public Delegate Sub TestEventDelegate()
Public Event TestEvent As TestEventDelegate
Sub MySub
Raise TestEvent
End ...
0
votes
0answers
9 views
Cannnot find debug modules in VS2005
I have a similar problem in VS2005 that it was posted before, not loading the updated assembly. In orer to know which assembly has the problem I need to open the screen Debug -> Window -> Module but ...
0
votes
1answer
241 views
MySQL Data Provider for VS 2005 & 2010
I have VS 2005 ( for legacy apps) and VS 2010 (for new development) installed on my machine.
To connect mysql through server explorer for typed dataset, I have installed connector 6.5.4 ( recent). It ...
0
votes
0answers
106 views
how to insert a status bar in MDI form with panel in Vb.net 2005
Can anyone help me, how to insert a Status bar in MDI form with Panel in Vb.net 2005
1
vote
1answer
84 views
Local static Dictionary crashes Visual Basic compiler
The following code immediately crashes the Visual Basic compiler in VS2005 (at least, for my environment: Windows 7):
Public Module foo
Public Function FUNC() As System.Int32
Static dict ...
0
votes
1answer
262 views
7-zip (7za.EXE) in C# to archive files of same name & store folder information
My software is supposed to collect files into a .zip or .7z archive using 7zip, but due to the nature of the software, there are a lot of files with the same name, but different directories like:
...
0
votes
1answer
99 views
Windows Service with Visual Studio 2005 solution not opening with Visual Studio 2010
I am unable to open a solution created using visual studio 2005 version. The solution has two windows services within. I recently upgraded to Visual Studio 2010. Now I am unable to open the solution ...
0
votes
1answer
36 views
How to specify the object type in a generic method?
I have the following code to get the object type of a collection:
Dim objType As Type = myCollection.[GetType]().GetProperty("Item").PropertyType
That line seems to work, but then I need to convert ...
3
votes
1answer
712 views
Side-by-Side errors in Managed C++ wrapper DLL in VS2005+
I have a native C++ library with a .NET wrapper, all built in Visual Studio 2003 and 2005. We recently ported the .NET wrapper library to VS2005 and it doesn't work. The .NET wrapper library is ...
1
vote
0answers
70 views
How do I remove a dependency from an ASP.NET 2.0 .MSI installation?
We've got a VS 2005, .NET 2.0 app, that appears to have a dependency either on ADOMD and/or OLAP. We don't use either of these in our ASP.NET apps, so I've got to find a way of getting them out of ...
2
votes
2answers
2k views
using functions and classes in another vb.net project
I'm refactoring my VB project into 2 projects, one being a utility library that I want to share with future projects. My solution's layout is like this:
Solution
|_ util
|_ util.vb
|_ main ...
0
votes
5answers
96 views
Visual Studio's useful plugins that can save hours of work, solve big problems [closed]
As .NET developers most of us are using Visual Studio at work
Each now and then I found out that there is a very useful plugin just like http://vlh2005.codeplex.com/ that if I had from before could ...
0
votes
1answer
92 views
Page redirection for user who do not have role privilege
I am using VS2005 C# ASP.NET 2.0.
I have used role management in the web.config with the following code snippet:
`<location path="Administrator">
<system.web>
...
1
vote
2answers
42 views
substitute/disable control components for development/testing
I have a VB form that contains controls for interfacing with some hardware (video cameras, motors, etc) on the machine it is to be deployed on, but I'm usually not at the location of said machine ...
2
votes
2answers
43 views
VS2005 Libraries
So lets say you have 3 projects:
ProjectA - Class Library
ProjectB - Class Library
ProjectC - Console Application
Now lets say that ProjectB uses ProjectA's DLL and ProjectC uses ProjectB's DLL.
...
0
votes
0answers
152 views
Iocomp .Net plot control shows nag screen even though I have a valid license?
I'm maintaining a program using the Iocomp plot control and even though it works well on the development machine, when deploying to another machine I get a nag screen saying that the software is ...
0
votes
2answers
405 views
How to read xml With .Net 2.0
Please Go to : http://www.treasury.gov/resource-center/sanctions/SDN-List/Pages/default.aspx
And download SDALL.ZIP and extract it
And then you can find SDN.XML
My question is :
How to read it ...
0
votes
2answers
31 views
Correcting Namespace in entire project
Originally few Forms were on the root folder of my Solution Explorer. Later I created a sub-folder and moved these Forms in that folder. Even though the application is working fine, but in few ...
0
votes
2answers
186 views
MDI Windows with multiple MDIChields in different WindowState
I have a little problem with my MDI Parent Window and the MDI Childs window. The problem is that i need 3 child window but only the first it'll be maximize, so i use this code:
UserAdmin usrWindow = ...
0
votes
1answer
135 views
Winforms application requests admin rights
When I build and run my application, it requests me admin rights automatically.
I do not remember if I have experimented in the past with manifest files and the mt.exe tool in order to elevate admin ...
1
vote
0answers
323 views
System.InvalidOperationException: DataTableReader is invalid for current DataTable
I deserialize a DataTable object from an XML file which works fine and the DataTable preview in Visual Studio displays the one row that it should contain.
However, when I create a DataReader on the ...
0
votes
4answers
79 views
How can i run mouse_move event in a thread…?
My application plot values from an electronic device. It plots 10 values in one second. It waits for 100ms before fetching the next value. The waiting is given by Thread.Sleep(100); This much part is ...
0
votes
1answer
499 views
Pass and get object with ASMX WebService
We have a web service like this:
[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public object[] DoSmt(object[] inParams)
{
List<object> rsl = new ...
0
votes
0answers
26 views
Reference not deployed to the remote device
We have a windows CE project with a bunch of references. I recently added one (a DLL we use in many projects).
This DLL is never deployed to the remote device so I get an assembly not found ...
0
votes
1answer
468 views
View exception details in Visual Studio
I've started working on an old project, where WinForms application uses DevExpress controls, for example DataGrid.
The program window contains another multiple windows, and when I'm minimizing some ...
2
votes
1answer
2k views
C# web service - Access Denied exception while try to stop the windows service
I have created C# web service using visual studio to stop the windows service 'Simple Mail Transfer Protocol (SMTP)' with service name as SMTPSVC
The following is the web method to do it
...
0
votes
2answers
154 views
VSJitDebugger fails
I tried the 'Image File Execution Options' trick to automatically attach to a sub process of my debuggee. However, vsjitdebugger fails to start any .NET process (neither through 'Image File Execution ...
0
votes
1answer
573 views
change label font at run-time gives error
i want to change the font of all labels of a web page. I write the following code but it gives error that font is read only property. I need it very urgent to do . Can anyone help
Code is here
Dim ...
1
vote
1answer
329 views
Text of UserControl dissappears in designer after compilation
I have the wierdest thing going on in my solution.
I have a button, which I customly made. It inherits UserControl, and its text is represented as a Label inside that control.
Naturally, I wanted the ...
0
votes
1answer
140 views
What does build action cause new check-outs on in a project solution
There is something in VS 2005 causing the new check-outs in another solutions of project file. Imagine There are 20 solutions in a Project of VS 2005 (.net 2.0 and c# )
Project names are: A , B , C ...
1
vote
1answer
88 views
Why variable value is getting changed unusually
I have a code like this,In this context HandleDisconnectEventCB will trigger when client has some modified whithout saved data and disconnected(remove network cable) from server,,then it will make ...
0
votes
3answers
745 views
Best way to display data in a gridview in C#
I have data of the format
Filename Status
abc.txt Found
xyz.txt Not Found
I need to display it on a gridview.
How do I hold these values in?
Should I use a multidimensional array or ...
2
votes
4answers
238 views
How to get last values from arrays
I am checking one line of code from my project
if ( (test == 0) &&
lenght.Matches(new Version(Convert.ToInt64(version))) )
Whenever i debugged i am getting currentVersion as a constant ...
