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

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

HemaDevi

Member List

Terry B
mtower
Cyberninjaru
Padmaja B
Pink Triangles
sizhen
Kris B
Matt Connolly
Mr_Amit_W
iamspo
BayerWhite
gharryh
CarrieW_MS
Colin R
Jon Jacobs
leoxtc
formtester
Tharindu Dhaneenja
TimP
pravin333
Only Title

HemaDevi's Q&A profile

  • Visual Studio Copy report data directly into word

    We have a tabular report that is generated and displayed in a report viewer control. Is it possible to select the table with the mouse and copy and paste it direct into a word document, or will we have to export it to excel and then import/export it into Word. Thanks Michael In webforms, you can use the standard copy-paste support from the web browser. At this time, there is no way to copy-paste report content with the winforms. This is a common feature request and we hope to add it in the future. ...Show All

  • Visual Studio Side By Side Installation

    Hi I am looking to move from .NET 1.1 to .NET 2.0 for all new projects but still have to support those existing projects written in .NET 1.1. I realise I can install V1.1 and V2.0 of the framework on the same machine, but am I able to install Visual Studio .NET 2005 on a machine that has Visual Studio .NET 2003 installed on it without causing problems for maintaining those existing applications Regards Smeat I have both VS2003 .NET and VS2005 installed. It works, if you double click a project it usually try to open with VS2005 so I usually start the environment I want to work with first and then load the pro ...Show All

  • Windows Forms Installing a windows service with installUtil.exe

    I have a windows service. I need to install it before I use it. I have done this before on a different project and it worked fine. Now for my current project, when try to install the windows service with InstallUtil.exe, I get the following error message. Note that FilesSaveAndCopy.exe is the name of the executable for the windows service. System.BadImageFormatException: The format of the file 'FilesSaveAndCopy.exe' is invalid.. Can anyone tell me what the problem might be here I figured out the problem. I was using installUtil.exe which was a version for VS 2003. So I searched the ha ...Show All

  • .NET Development Beta 2 Error/Bug: XmlException reading Application setting in Class Library

    I believe I have discovered an error or bug in beta 2.  I am receiving an XmlException with the message "An error occurred while parsing EntityName. Line 1, position 45." when reading an Application Setting stored within a Class Library project. The application setting is of type (Web Service URL) and contains an ampersand at character position 45. This error happens when reading application settings in a project with a build type of Class Library.  Rather, this error occurs whenever this is the scenario: 1) Project A contains a reference to Project B. 2) Project A calls a given class method X in project B. 3) Method X in project B ...Show All

  • SQL Server Moving ntext to nvarchar(max)

    I just move our SQL server to version 2005. In new version ntext field is deprecated and documentation says that ntext(max) should be used. If I have table Table1 and ntext column Column1. When I execute following SQL statements: alter table Table1 alter column Column1 nvarchar(max) go 1.) Are out of row data automatically move to in row 2.) Or should I also execute something like this update Table1 set Column1 = Column1+'' where Column1 is not null 3.) Is there way to check if data is stored out or in row Best regards edvin Hi, see th ...Show All

  • Visual C++ Problem with string substr() in .NET 2003

    void Simulator::ParseInput(string aSatData, string& aSat1, string& aSat2, string& aSat3, string& aSat4 ) { int delimLoc = 0; int delim1; int delim2; int delim3; int delimFound; int lgth1; int lgth2; int lgth3; int lgth4; for ( int cnt = 1; cnt < 4; cnt++ ) { delimFound = aSatData.find( ';', delimLoc ); switch ( cnt ) { case 1: delim1 = delimFound; break ; case 2: delim2 = delimFound; break ; case 3: delim3 = delimFound; ...Show All

  • Windows Forms "Details" style data binding question?

    I am using VS.NET 2005 Standard edition; My goal is to bind a dataset with one datatable to a form in a way that gives you a table of "overview" with selected columns.  From there the user can select a row and the entire record is display in a data-entry grid below the entier datagridview control. It's a sort of split screen - there are many to many fields to cause the user to easily edit them in the datagridview. So far i have no problem getting the data, binding the datagridview control, or selected the row.  The question is what is the best method for bidnign the individual row items to the various controls. I was ...Show All

  • SQL Server Will a SQL Server embedded be developed?

    Replace Access Jet. by embedded, I meant a sql engine that runs in the client program's memory space.  Jet is an example.  Has nothing to do with embedded OS. MSDE is not an embedded sql engine as it runs in its own process. ...Show All

  • SQL Server AdventureWorks database not seen by Management Studio Express CTP

    When I install AdventureWorks.db for SQL Express, it runs without errors. The database files (data and logs) are in the SQL Express 2005 data directory. However, I can not see the database in Managment Studio Express CTP. I've tried repairing and uninstall/install again. Does not help. I have SQL Express 2005 cleanly installed. I have the pubs and Northwinds databases cleanly installed. (I was able to execute the queries that came for installing these). I can see both pubs and Northwinds in Management Studio Express CTP. Any suggestions Hi there. When you start SQL Management Studio Express, ...Show All

  • Visual C# open new form/window

    I have a web user control with a datagrid bound to a DB. I want press a button and open a new window/page or whatever you want in which i have 2 textboxes and some buttons that modify/add rows of the datagrid... It's possible! How What i have to use How can i refer to the datagrid in my web user control from the new window Thx   manuel0081 wrote: i want sincerely say you THANKS for patience!!! You're welcome!   manuel0081 wrote: I have two other problem, when new window is opened, i have not the datagrid in the first one, it show me [object]... I don't understand you. If you want to give back s ...Show All

  • SQL Server XML Data gets truncated

    As described in this thread I'm now able to read an RSS feed with the XML Source. I'm using the following XSD defininition in my source (it was created in the dialog from SSIS/XML Source): < xml version="1.0" > <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs=" http://www.w3.org/2001/XMLSchema ">   <xs:element name="rss">     <xs:complexType>       <xs:sequence>         <xs:element minOccurs="0" name="channel">           <xs:complexType> ...Show All

  • .NET Development How to post large contents using HttpWebRequest ?

    Hello friends,       I want to post large contents using HttpWebRequest. My code is as below,                 HttpWebRequest HWReq = (HttpWebRequest)WebRequest.Create(strURL); //Note: here length of strURL is 13000 charectors.                 HWReq.Timeout = 25000;                 HWReq.UserAgent = "Mozilla/4.0 (compatible;MSIE 6.0b;Windows NT 5.0)";      &n ...Show All

  • Visual C++ Scroll limitation issue

    hi, I have recently taken over the a project for someone, one of the issues we have come across is that you cant view an entire document, in a window with scroll bars if its really big.  I track this problem down to the ranges on the scroll bars.  Once the range of the scroll bar exceeds 32000 pixels, it is set, by my ex-colleague back to 32000.  So when you view a document, depending on the zoom factor you may only see a fraction of the document (until you let the zoom, zoom out to say 25% and you can see the whole document but its obviously too smal.  So easy fix I  thought just not have that reset in there...wron ...Show All

  • Visual Studio Tools for Office Export / Save Workbook without Customization

    Hi all, I used VSTO and created a workbook so that users can inject data via action pane, but I now want to enable my users to export nothing just 'data' to a new file. I noticed that the "Save As" function will copy the 'customization' to the new file too, that's what I try to avoid, as I just want to enable users to export or save as (I don't know how to call this process) the processed worksheet to a new workbook. Otherwise, a customization error will be thrown. Thanks, Have a look at the thread about RemoveCustomization: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=434488&S ...Show All

  • Smart Device Development ActiveSync 4.0

    I've done a full install of VS 2005 Beta 2, created a test app and tried to download it to a PPC 2003 device.  I get a deployment error: 1>The current version of ActiveSync is not supported. Install the latest version from www.microsoft.com. ========== Deploy: 0 succeeded, 1 failed, 0 skipped ========== I have ActiveSync 3.8 installed and running.  Where do I find ActiveSync 4.0 Jeff, Suprisingly reinstalling AS4.1 fixed the problem!! Thanks for the suggestion. Cheers Jon ...Show All

©2008 Software Development Network