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

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

BeaPreethi

Member List

David_Croquet
johnvarney
fripper
Fritzables
MarkSad
Marshaler
Leland
me*
Sondre
Clifford Grimm
Rory Niland
markse
Kevin Packard
Tomas Kiss
jefswy
RubenBrenes
Ishai __________________________
fcsobel
RDV
oracle47
Only Title

BeaPreethi's Q&A profile

  • .NET Development Entity Reference expansions when saving XML.

    Hi all, While processing XML documents using XMLDocument object, is there a way to prevent entities from being expanded when calling Save For example with the following XML document: < xml version="1.0" encoding="utf-8" > <root> <child>&apos;</child> </root> Using the code below, which does nothing but load and save: Dim doc As New XmlDocument doc.Load(xml) doc.Save(xml) The resulting XML would have &apos; expanded to the actual apostrophe. I know this wouldn't cause much problems with XML but occasionally we have needs to process these documents as plain text files ...Show All

  • SQL Server How to restore SQL 2000 DB to SQL 2005

    Hi, All I am trying to restore SQL 2000 DB into SQL 2005 Database. I backup the database from SQL 2000. From Management Suit, I try to restore database but I can not see network drive from there even though SQL serveris running under network account. I could see network drive from SQL 2000 or at least I can type path to find backup file. However I can not do this.. My Q is: 1. How can I restore this SQL 2000 db to SQL 2005 using network path 2. Since backup is SQL 2000 database, when I restore into SQL 2005, does restore upgrade system tables and other schema to SQL 2005 as well If not, what is the best practice to upgrade this database into ...Show All

  • SQL Server Task converting xls files to csv files ?

    Is there a way to do this with some sort of task In the data flow, you would use an Excel source and a Flat File destination, the latter configured appropriately to generate CSV output. When no transformations are required, it's possible to hook a Source to a Destination with no intervening steps. -Doug ...Show All

  • Windows Forms Displaying custom values in the cell

    hi, Im using a winforms datagrid to display values for a datatable. I want to show a different data type (value) other than the value in the datasource like if the datatable  contains a value 1 in one column , i should show a mapped string in the datagrid something like 1- critical , 2 - normal ,like when the source contains 1 , the datagrid should show "critical" instead of 1. Could anyone give me ideas of how can i format the data before it is displayed on the datagrid Thanks vinothkumar Hi vinothKumar, I hope this example helps you... private void dgEmprestimos_ItemDataBound( object sender, System.Web.UI.WebContro ...Show All

  • Visual Studio 2008 (Pre-release) Animate a DrawingVisual

    I'm need to animate a bunch of DrawingVisual objects that I hold in a VisualCollection but something like the following doesn't seem to work: ((DrawingVisual)_children[_currentPointIndex]).SetValue(Canvas.LeftProperty, p.X); If I need to animate the DrawingVisual's location, how do I properly do that Thanks! Visuals don't have support for layout so I think the only solution is to set the transform on them: DrawingVisual dv = new DrawingVisual(); ... dv.Transform = new TranslateTransform(x,y); ...Show All

  • Visual Studio Check in web service that are already under source control for VS2003

    At this moment we are upgrading web services, that are already under source control, from VS2003 to VS2005. The upgrade is successful, but when we want to check these web services in VS2005 is complaining that the *.asmx is already under source control and stops with check in of the other files. For a web service we checked the other files in with our source control manager and reopened the project. VS2005 do not notice that these files (app_code\*.cs) are under source control. Does anybody know what the problem is thanx in advance If you modify the bindings in the solution/projects you're pretty much on ...Show All

  • Windows Forms Maximize child MDI form without ControlBox

    Visual Studio 2005 Beta 2, C# Maximize mdiChild form without displaying ControlBox ... pretty much says it all. I have set ControlBox, MaximizeButton, MinimizeButton and HelpButton all = False, Set the FormBorderStyle = FixedToolWindow (actually tried them all) and WindowState = Maximize. When I .Show the childForm a controlbox still appears above the titlebar of the MDI parent ... ugly, useless and takes up real-esate better used for displaying data. I provide navigation through ToolStripMenu. I have been trying to create a workaround by sizing the childForm in the mdiParent form's Resize event but I don't know the exact height - titlebar a ...Show All

  • Visual Studio Express Editions Add New Item: Search Online Templates... Are there NO templates available online???

    Okay I will preface this by stating that I am just using Visual C# 2005 Express Edition (the kiddie version)... When I go to the Project menu and choose Add New Item... I am presented with a dialogue that resembles the following: Hi Luke, Visual C# Express is for Windows and console applications. If you want to create Web applications, you will need to install Visual Web Developer Express - http://msdn.microsoft.com/vstudio/express/downloads/ which works side-by-side with C# Express. Thanks, -Dan ...Show All

  • .NET Development MS Access Automation in .NET supported?

    Can .NET do MS Access automation like it can do Excel automation   I tried to add a COM reference "Microsoft Access 10.0 Object Library" and it gives me the error... "Converting the type library to a .NET assembly failed..." message. Am I using the right reference   Or do I need to download some thing   Where can I find info on MS Office Applications automation Thanks! Rasmasyean, I started interfacing to Excel before PIAs were discussed. The 1.1 SDK contains a command-line utility named TLBIMP. It can generate an assembly, which serves as an interface between .Net and COM. The trick is to know which file represents th ...Show All

  • Windows Forms DataGridViewCheckBoxColumn values

    Hi there, I'm using DataGridViewCheckBoxColumn, when a check box is unchecked sometimes I get the value {} (it's not a string value) instead of false. I want to get the value false or true. Does anybody know why do I get the value {} and how can identify this value programatically Thanks in advance, Elvia PS: Windows application in Microsoft Visual C# 2005 Make sure the ThreeState property to false. A check box can have three values if this is set to true (True, False, and Indeterminate). There is also a NullValue property that identifies the value to return when a database table contains a DBNull val ...Show All

  • SQL Server SQL Server 2000 & Reporting Services (Report Manager)

    Hi there! My company is thinking about making the switch over from Crystal reports to RS and it's my job to install and test it over the next month.  Unfortunately I seem to be stumbling at the first hurdle!  The installation process went well together with the setup of the sample reports.  At the moment I'm running this on my local development machine: Windows XP SQL Server 2000 SP4 Visual Studio.net 2003 IIS 5.1 RS 2000 SP2 Due to our company not having a CA for SSL I setup one on a windows 2003 server and generated a cert through here.  This seems to work well (so I thought). Access to the reports works excellent and I ...Show All

  • SQL Server Trigger on System View

    Hi, Is there a way to create a Trigger on the Systemview [sys] . [dm_exec_connections] The Statement below Fails. CREATE TRIGGER [dbo] . [TG_CLEAN_LOCK_ID] ON [sys] . [dm_exec_connections] AFTER DELETE AS I need a trigger to be fired when a Connection ([sys] . [dm_exec_connections] .[connection_id] ) drops. Is it principally impossible to create a trigger on a system view or is it just a lack on permissions making my SQL fail Is there any other way for surveying wether a connection is alive or not, without polling Thanks in advance Raimund Yeah, it ...Show All

  • Microsoft ISV Community Center Forums Suppress Linked View Unique Record Popup

    Hi there im linking a view on an ms sql server to my access database using VBA using DoCmd.TransferDatabase acLink, etc.etc. How ever, I can NOT get the `Select Unique record Identifier` pop up to stop coming up when the link is being made. I dont care about needing a unique identifier, its a read only record source. The only way ive found is using sendkeys command to cancel the popup - however this can not be relied on, if it happens when the user doesn't have the access window in focus, it fails and the pop up appears. That pop up is way beyond many of my users to even press cancel and looks very unprofessional :) any ideas many than ...Show All

  • Windows Forms Starting processing after form-load

    How can i get proccessing to begin after the form has displayed  If put in the Form_Load sub it waits till after it has finished before displaying the form. If you being processing something after the form has been shown then it will have the effect of 'freezing' it which is not a nice user experience. It might be worth consideri ...Show All

  • Windows Forms How to make a function sleep?

    Let's said for example. I had a function that prints 10 numbers inside a "for" loop. But when it prints until number 5, I want the function to sleep for 10 seconds then only continue to print the last 5 numbers. Does anyone knows the appropriate coding for the sleeping function I need the coding to set up some data link program. Thanks... ...Show All

©2008 Software Development Network