Software Development Network Logo
  • Microsoft ISV
  • Windows Forms
  • Visual C#
  • SharePoint Products
  • Visual Studio
  • SQL Server
  • Windows Vista
  • Game Technologies
  • Visual C++
  • VS Team System
  • .NET Development
  • Visual FoxPro
  • Audio and Video
  • Visual Basic
  • Smart Devicet

Software Development Network >> Raja Pratap's Q&A profile

Raja Pratap

Member List

ReneeC
vtortola
SatishThumar
Hussain Saffar
ergas
Wee Bubba
AdrianGodong
ashk1860
UnknownScripter
Liu Hua
Dwebs
pjtaylor
huabing78
vtortola
Vincent-Philippe
rternier
George2
Bruno Kovačić
George2
daverage
Only Title

Raja Pratap's Q&A profile

  • Visual C++ Using CTS in RS232 Comm

    Trying to send data using a COM port to a device that uses CTS to control data flow. Using OpenFile and WriteFile. Setting the dcb.fOutxCtsFlow seems to have no effect on the output stream, the system sends out characters when CTS is not asserted. Thanks for any help, Bob It might be a symantics problem... The device would use RTS to control data flow. To turn the CTS signal on/off at the PC. Is it wired correctly Null modem and all that... ...Show All

  • Windows Forms removing header and footer (from printer page setup)

    hi Im using the Webbrowser control in VS2005 now I want to print the page but I want to eliminate the header and footer that the browser adds Im not talking about the header/footer of the html page that cant be removed using a Printer Style Sheet, Im talking about the URL that IE place as a footer(the header and footer that appears in the Page setup dialog) Is possible to remove that information using only VS2005 classes or do I need to use some unmanaged API kenny That is Perfect for my porposes because even it is not useful for ASPNET application (The access to registry) Im using a WebBrowser control in a Windoes form Application. Now my question is when I install the application in the user machine will ...Show All

  • Visual Studio Express Editions embedding .swf to vb.net forms

    can someone give me the codes needed to embed an swf file ( a flash animation for the banner) in a window form.. thanks.. im using the version 8, macromedia pro... thanks. Install the latest version of Adobe Macromedia Flash Player (9.0 r28) which is capable with VS2005 at www.adobe.com . The name and path of it should be "%systemroot%\system32\macromed\flash9c.ocx". The previous versions do not work with VS2005. ...Show All

  • Software Development for Windows Vista Is it a bug in vista?

    When I use VB-scripts to enumerate user account instances from Win32_UserAccount class in WMI repository, a null-set always returns. The script is correct(it works well on 2000 and 2003). I suspect the Microsoft's provider for that class is not compatible with vista. Is it a bug in vista Or, should I use another way to enumerate user account.(My Vista version is Pre-RC1-32bit-5536). Thanks a lots. I am also having this problem. Here is my code - string query = "select * from Win32_UserAccount" ObjectQuery objectQuery = new ObjectQuery( query ); ManagementScope scope = new ManagementScope( @ "\\<machine_name>\root\cimv2 " ); scope.Connect( ); ManagementObjectSearcher ...Show All

  • Visual Studio 2008 (Pre-release) What dictates object the creation sequence when a XAML page is loaded? ComboBox DataBinding problem

    I have two bindings to the same ComboBox       <ComboBox.ItemsSource>         <Binding Path="Bind" Source="{StaticResource AvailableTimingModes}" />       </ComboBox.ItemsSource>       <ComboBox.SelectedValue>         <Binding Path="Bind" Source="{StaticResource TimingMode}" />       </ComboBox.SelectedValue>   Unfortunately, the SelectedValue binding is always called first and is always destroyed by the ItemsSource binding. I have tried all sequence permutations of the XAML declaration both in the page and in the r ...Show All

  • .NET Development Append at the end of an existing xml file?

    I got an XML file, and I want add new data to its end, how I'm able to do that I use appendChild and save to do all my nodes creation and saving.Using .NET 2003 If the XML file is a well-formed XML document then to add data to its end you need to read in the XML document, for instance with System.Xml.XmlDocument, then create and insert the new elements and call the Save method of the XmlDocument instance e.g. XmlDocument xmlDocument = new XmlDocument(); string xmlFileName = @"file.xml"; xmlDocument.Load(xmlFileName); // now add data e.g. XmlElement data = xmlDocument.CreateElement("data"); data.InnerText = "Kibology for all"; xmlDocument.DocumentElement.Ap ...Show All

  • Commerce Server Commerce Server 2007 and Peer to Peer replication

    Was wondering if there was any specific thought into accomodating peer to peer replication for commerce server 2007 db's. It appears that the transactions db has done away with identity fields but other cs db's still use them. I was wondering if there was a white paper or even better someone who has already implemented this. Is there anything specific to commerce server I should be aware of before attempting this or do I just need to follow the standard implementation of peer to peer replication Thanks in advance.... -- Sean dpv adds a lot more complexity, well too be honest I'm not experienced with them. I thought that with dpv you couldn't afford a server to go down because every server only had part ...Show All

  • Visual Studio 2008 (Pre-release) WCF with raw TCP Clients

    Hi! I'd like to create a WCF Service that receives requests from a raw TCP client. I mean, the client sends a stream of bytes through a given TCP port. My service has to be able to receive the stream of bytes, make some operations, and then respond. Is this king of interoperatibility possible Thanks, Giten. Giten, Using HTTP is an option if you're okay with HTTP's features and constraints. If you do this you are unlikely to write any custom code for the service. Otherwise, you'll need to write a custom MessageEncoder that understands the data your raw TCP client will be sending and knows how to create Messages out of it. Let me know if you'd like to know more about this option. Ondrej ...Show All

  • SQL Server Insert date server problem

    I have a table in sql 2005 express, this table has a datetime field. I capture the date of the server like this "05/09/2006 08:17:23 a.m." in a windows form. When I try to insert this date in the datetime field of my data base, the builder show an error like there’s no possible to convert string to date time. The insert statement is like this: Insert into table1 (cod, date1) values (1,'05/09/2006 08:17:23 a.m') I have a succesful insert with a date like '05/09/2006 08:17:23' without the a.m. But when I capture the date now the format is with a.m.. how can I do that hi, usually you should provide a "format" that can be recognized by SQL Server... to do that, "format&quo ...Show All

  • SQL Server Upgrade SQL 2000 SBS to SQL 2005 64 Bit

    I am in the beginning of upgrading a SQL 2000 DB on a Small business server to a 64 bit 2005 DB on a new box. Is my best method of upgrading to use the "copy" DB function in 2005 If so, what do I need to do to install the management tools on the 2000 box - since this is a 32 bit edition, and I have the 64 bit media You could take a backup on the 2000 server and restore it on your 2005 server. Create the same users on the new server that where on the old server. After restore run sp_change_users_login 'report' in Management studio or Query Analyzer. If names come up in the list you need to map the users in the database to the users in the 2005 server. Create a script that runs sp_change_users_lo ...Show All

  • Visual Studio Team System TF42054: Team Foundation could not start the build.

    When trying to start a build using the BuildController.StartBuild() I keep getting this exception on Windows Server 2003, it seems to work fine under Windows XP. System.Web.Services.Protocols.SoapException: TF42054: Team Foundation could not start the build. Please check the event log on the build machine for additional information. at Microsoft.TeamFoundation.Build.Server.BuildController.StartBuild(BuildParameters buildParameters) The Thread.CurrentPrincipal.Identity.Name is the Active Directory account I'm logged on with, this is the same for both machines. Can you try turning on tracing on your TF Server Look in the main TFS web.config file (typically in C:\Program Files\Microsoft Team Foundation ...Show All

  • SQL Server Extending Derived Column Transform with custom function library

    When data is imported from our legacy system, the same functions need to be applied to several columns on different tables. I want to build a kind of "Function Library", so that the functions I define can be re-used for columns in several packages. The "Derived Column" transform seems ideal, if only I could add my list of user-defined functions to it. Basically I want to inherit from it, and add my own list of functions for the users to select. Is this possible What other approaches could I take to building about 30 re-usable functions I know what you mean, but you should be able to use your existing transforms or one of the samples as a template, and then add your specific functions, which you would ...Show All

  • Visual Studio Team System Configuring Alerts

    Hi, How to configure Email alerts for Test results (Unit test failure /Pass/ Incomplete code coverage) and Code analysis failure for a Team project in Team Foundation Server Thanks in advance..... Yes, you can create custom alerts programmatically. In your case you could create an alert that sends out emails on Build failure. You would then be able to view the build report and find out exactly what caused the build to fail. You may also be able create a custom email message to contain the build log information. I am not sure there is an event that you can hook into for Unit Test failures. -paul ...Show All

  • Windows Live Developer Forums Pushpin Layer not updated

    i'm trying to implement geotagging on my website that allow my blog reader to add themself to the map using pushpin. under my map i've several field for the users to key in their details then upon clicking the "add" button... their details will be appended to a georss xml file... and this step works fine as the details can be appended without problem... but when the page refreshes after my user hav clicked the "add" button... the details added are not shown... and even click "refresh" on IE wont help... all i got to do to get the newly added details shown is to close the current IE and re-request the page in a new IE... then all the pushpins(including the last pushpin added) can be shown... y is this problem occuring am i doing a ...Show All

  • Smart Device Development execute application

    how can i build appliction for execute it for pocket pc wen i finish my design ...Show All

©2008 Software Development Network