Software Development Network Logo
  • Visual C#
  • Visual FoxPro
  • Microsoft ISV
  • VS Team System
  • SQL Server
  • Windows Vista
  • Visual J#
  • .NET Development
  • Windows Live
  • Visual C++
  • Smart Device
  • Visual Basic
  • Architecture
  • Windows Forms
  • VS Express Editions

Software Development Network >> r_amarnath's Q&A profile

r_amarnath

Member List

Gholamreza
filiph
Jeffrey D. Baker - MSFT
Gerald Loeffler
Burbank Steve
BSeibel
Keith Adler
lihai
alivir
gundamzero
Big_Al
Jeffclar
DBA2
N1k0
noonie
john mc
geeky
Mark Tompkins
Rajiv Kapadia
Titon Hoque
Only Title

r_amarnath's Q&A profile

  • Visual Studio Team System TFS RC upgrade to RTM version

    We are about to upgrade our TFS install from the RC version to the RTM version. One question I have though: Does the version of Team Explorer on each of the developer/client PCs need to be updated as well Or will the version of TE that our client machines are currently running continue to work with the RTM version as well. On my workstation in the About MS Visual Studio, I show that I am running Microsoft Visual Studio 2005 Team Explorer Vers ...Show All

  • Visual Studio 2008 (Pre-release) Cannot get EventSetter to work

    If my understanding is correct you use EventSetters to assign handlers to events in Styles. I cannot get an event setter to work. < Style TargetType = " {x:Type Button} " > < EventSetter Event = " Click " Handler = " ButtonClickEventHandler " ></ EventSetter > </ Style > This will not compile. It says 'The Handler attribute is not declared', although if I access the Event ...Show All

  • SQL Server HELP: Failed to create the task. (Microsoft Visual Studio)

    I created my first SSIS project in BI Dev Studio but get the following error when trying to add a data flow task to the Control container: ================================== Failed to create the task. (Microsoft Visual Studio) =================================== Value does not fall within the expected range. (Microsoft.SqlServer.ManagedDTS) ------------------------------ Program Location:    at Microsoft.SqlServer.Dts.Runtime.Exec ...Show All

  • Visual C# Calling C dll in c#: please help: AccessViolationException

    Hello, I'm trying to call a C dll from a C# project and here is the error message that I get. And following it is my source code. I tried many alteration of the code, since I think this is coming from the ptr of an array of double in the C dll function (last parameter). MTIA Franck System.AccessViolationException was caught   Message="Attempted to read or write protected memory. This is often an indication that other memory is corrupt. ...Show All

  • Windows Forms GAC Assembly not present until after reboot

    I'm using VS 2005 and a custom installer class. I deploy a public assembly to the GAC. I have a custom installer class which depends upon that GAC assembly. However, the assembly does not appear in the GAC until after I reboot. So my custom installer class fails because it can't find the gac assembly. How do I either (1) reboot before I run my custom installer class or (2) make my assembly appear in the GAC without requiring a reb ...Show All

  • .NET Development What software do I need for .NET

    I'm a software developer for a large corporation that wants to learn .NET.  What software do I need to install on my home computer   I'd like a full professional development environment but I'd be the only one using it.  Is there anything that MS produces that's not a hobbled student version yet less expensive than full blown team software Thanks, John alternatively, you take MSDN Pro subscribtion http://msdn.microsoft.com/ ...Show All

  • .NET Development Wrapping .NET FCL Members

    Hi Im just learning c# .net and I was wondering the use of the .NET Libraries. My concern is that I seem to be wrapping members like 'System.IO.FileStream' in classes in my c# program, like this: class ReadFile { FileStream file; StreamReader fromFile; /* Constructor */ public ReadFile( string filePath) { file = File .OpenRead(filePath); fromFile = new StreamReader (file); ...Show All

  • Software Development for Windows Vista Resize the activity in designer

    It's the same question we asked in BizTalk. Can we re-size the activity when the name for the activity is long Maybe not possible in this version, just curious. In this version we cannot re-size the activty in the sequential workflow designer and the activity designer. However, in the state machine designer the state activity can be resized. Also depending upon the length of the name of event driven, ...Show All

  • Visual Studio VS.NET 2005 (June) fails to install SQL 2005 Express?

    Hello, Thanks for reviewing my question.  I had VS.NET 2005 Beta 2 installed on my PC and decided to uninstall it (hopefully in order) in order to install the VS.NET 2005 (June CTP). Everything seems to install expect for the SQL Express.  I uninstalled everything and installed the SQL 2005 (June CTP) thinking I would use this instead of express but VS.NET 2005 didn't install.  And, of course, I have read their not compatible. So, ...Show All

  • Visual Studio 2008 (Pre-release) Final Year Project in Indigo..

    Hi. I am a final year computer systems student and I have in my mind to do a project using Indigo for my final year project. I am doing research in it but I have to meet a superviser soon and I don't know much about what kinda of software will be needed or what what will be the toll on the hardware. I am looking for help in the basics of getting started in a Indigo project, what will I need to see if  the idea of even trying something lik ...Show All

  • Windows Forms How to Bind Business Entity Components to User-Interface Controls

    Does anyone know where to dowload an example about Binding Business Entity Components to User-Interface Controls on window form Thanks The Windows Forms Databinding forum is probably a better place for questions about binding - I nearly missed this one. Check out this article: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnadvnet/html/vbnet02252003.asp If you are using VS 2005 then you can use BindingList(of T) rathe ...Show All

  • Visual Studio Express Editions Flat File Database?

    Hey! Is it possible to save data to a flat file and then retrieve it again later just a simple flat file database... or maybe data.dat file what ever a dat file is lol ty all -mark Hi SmSm241....I am not a current IT Professional..... I was pre OOP(long time ago)..... I didn't mean to Offend You but I still disagree with you.... Certainly SQL Server Express can be managed but doesn't have to ...Show All

  • SQL Server SSRS 2000 with VS 2005? Report Designer

    We have SQL Server 2000, and SQL Reporting Services 2000. In order to design reports I just purchased (and installed) Visual Studio 2005, but can't get the Report Designer to install from the SSRS 2000 cd. It gives me a warning stating I don't have VS 2003 installed. All the marketing blurbs about SSRS 2000 say that you need VS 2003 or later in order to get the report designer. How do I make this work Thanks. I ...Show All

  • Visual Studio Express Editions How to get caption of active window?

    How do I get the text of the currently active window There is an Windows API Function called GetForegroundWindow() , which gets the handle to that window, and a quick search of google (Google is your friend!) turned up: http://www.codeguru.com/vb/controls/vb_shell/article.php/c3053 However it's in VB6 code. Running it through the code converter didn't help, and the sample isn't very easy to understand, anyway, so here it is, sligh ...Show All

  • Windows Forms Printing To A Generic Printer

    I'm trying to spool out a text file to a zebra printer ( label printer ) but I get the following error message "The data area passed to a system call is too small" has anyone else encountered this issue, Any help would really&nbs ...Show All

©2008 Software Development Network

powered by phorum