sriramnaga's Q&A profile
Windows Live Developer Forums Windows Live Messenger Download
where can i download the messenger sdk i was looking for it and i could find it :( See the sticky at the top of the posts for this forum http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=368268&SiteID=1 ...Show All
Visual Studio Express Editions I have a textBox that is 4 pages long that I would like to print, but it only prints 1 page...
I have a textBox that is 4 pages long that I would like to print, but it only prints 1 page...How do I get the print message to print more than one page of a textBox Private Sub pdPrint_PrintPage( ByVal sender As System.Object, _ ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles pdPrint.PrintPage cdColor.ShowDialog() fdFont.ShowDialog() txtDocument.Font = fdFont.Font e.Graphics.DrawString(txtDocument.Text, txtDocument.Font, New SolidBrush(cdColor.Color), 10, 10) End Sub ' If you 'cut and paste', remove empty lines the forum posting engine inserts. ' PrintDocument1 added from the toolbox ' Textbox1 added from the toolbox ' Button1/2/3 adde ...Show All
Visual Studio Team System TFS KB919156 install error
I think I did a bad bad thing. When I have installed my server I used a local account for TFS service account and change it to a AD account later by using TFSAdminUtil. So I remember it yesterday when trying to resolve the issue concerning the KB installation. So this is what I did: Change TFS service account using TFSAdminUtil to use the original local account Install KB919156 (no error message when the TFS Service account was the original one) Install SP1 for TFS Install SP1 for Team Build Change TFS service account to use the AD production account But now, nobody could connect to TFS. Even the service and setup account have no access, all connections are forbidden. It seems that my server is not able to authentic ...Show All
Visual Studio Team System Failure to log on to TFS
Our Team Foundation Server is set up to join an Active Directory domain so that users need only log on to the domain once. Recently, one of our developers is experiencing the problem of getting "kicked" out of the system after idling for 30 minutes or so (after logging on to the system). He gets the following error: ================================================== Team Foundation Error TF30063: Your are not authorized to access VSTFSRV01. ================================================== VSTFSRV01 is our server name. I believe it is a domain server problem but cannot really tell as this user is the only one experiencing this problem. Also, the problem does not seem to occur during after hours when ...Show All
Visual Studio Team System Workitem Query for finding Linked WorkItems
Is there a way for me to create a query that will display all the workitems that have been linked to a particular workitem Hello, In v1 we don't support quering on linked work items from Query builder in VS. We will have a rich feature set around Linked work item creation and query in V2. Regards, ...Show All
Smart Device Development RichTextBox for Pocket PC
Hi, Is the RichTextBox supported for Pocket PC/ Windows Mobile The help documentation seems to state that it is supported, but I don't know how to get the RichTextBox control in my toolbox. No, it's not supported. I believe OpenNetcf.org has it. ...Show All
Visual Basic Passing a variable to filter data for a report
I am building a sales order processing application and I am trying to have a report print automatically when the user confirms the order. I have so far set up a report viewer and a basic report which works O.K. but so far I have been unable to work out how to pass in a variable to the report / report viewer which would be used to filter the data for the report. Ideally I am trying to take the data in the OrderID field of the from frmOrder and use this to pull only the data specific to the OrderID in question from the remote SQL Server database. I am using Visual Studio 2005 Standard Edition and therefore do not have Crystal Reports available. Any suggestions would be greatly appreciated. ShugD, ...Show All
SQL Server Building Hierarchial reports with Sql Server 2005 Reporting services
Hi I tried to build a treeview type (Hierarchial) report by using sql 2005 reporting services, I build a Master report on Top level and then create a subreport based on 2nd level....but after that i do not find a way out to call that subreport under each parent programatically which has child records. please somebody help me in doing this. Or is there any other way to build such kind of report in sql 2005 RS. with regards Kaushik ...Show All
Software Development for Windows Vista Customized IfElse activity in a Custom Workflow Designer
Hi everybody. I host a workflow designer in my application and need to provide users with an IfElse activity that works as simple as possible "Declarative Rule Condition" mode still requires users to reference certain values and compare them with others, and this considered as writing code. I, instead, would like to just have a property like RunThisBranchWhen <value>, so the users could just set the <value> and it would be automatically compared with a value coming from the previous activity. My question is: Can the standard IfElse activity be redesigned to work this way or I have to write my own IfElse from scratch Any details/examples would be greatly appreciated. Thank you ...Show All
Visual C++ Sending emails using Lotus Notes in Visual Studio C++ 6.0 application
Hello, I have a Visual Studio C++ 6.0 application that I would like to send emails from using Lotus Notes. I have tried MAPI but keep getting an error message "Either there is no default mail client or the current mail client cannot fulfill the messaging request. Please run Microsoft Office Outlook and set it as the default mail client". Do I need to change some settings or use a different set of function to access Lotus Notes thanks mary ...Show All
Visual Studio Team System External DB Synonyms Cause Compilation Errors
Hello! I have a solution with two database projects in it. In both we use synonyms for any cross-database references, e.g.: USE [AdventureWorks] GO /****** Object: Synonym [dbo].[synNorthwindEmployees] Script Date: 11/23/2006 15:18:35 ******/ CREATE SYNONYM [dbo].[synNorthwindEmployees] FOR [Northwind].[dbo].[Employees] GO USE [Northwind] GO /****** Object: Synonym [dbo].[synAdvWorksEmployees] Script Date: 11/23/2006 15:25:26 ******/ CREATE SYNONYM [dbo].[synAdvWorksEmployees] FOR [AdventureWorks].[HumanResources].[Employee] The problem we're experiencing is that any view that uses a synonym for an item from the other database causes a compilation error when we build the solution. So if we have the following view in the Ad ...Show All
Visual Basic Check Whether The Barcode Reader Read A Barcode
May i know how to check the barcode reader has read a barcode and display the numerical value of the barcode and retrieve information accordingly from time to time. Must i use timer or is there any better way of doing it Thank you. Hi, Retalix produce the touch-screen and barcode software for the UK supermarket store i work for. See >> http://www.retalix.com/index.cfm pageid=544 http://www.retalix.com/index.cfm pageid=512 See also all of these that deal with EPOS ( Electronic Point Of Sale ) systems.>> http://www.google.co.uk/search hl=en&ie=ISO-8859-1&q=epos&meta = Regards, S_DS ...Show All
.NET Development How can I access local machine Port Number.
Hi All, How can I access the local machine port number through programmatically. Thanks for your help. What are you really looking for Are you wanting to know what ports are in use (by all applications) on the machine Are you really looking for the IP address and Port of your machine outside a NAT I think you need to explain yourself a little more... ...Show All
.NET Development io serial port and withevents in a class
Hi, I have the following class, that i need to handle the serialport event see note below Imports System.IO Public Class Class1 Dim WithEvents serialport As New IO.Ports.SerialPort Function GetWeight() As String Dim ReturnData As String = 0 If Serialport.IsOpen Then Serialport.Close() End If Try With Serialport .PortName = "COM1" .BaudRate = 1200 .Parity = IO.Ports.Parity.Even .DataBits = 7 .StopBits = IO.Ports.StopBits.One .Handshake = IO.Ports.Handshake.XOnXOff .WriteTimeout = 5 End With Serialport.Open() Catch ex As Exception Return ex.ToString Exit Function End Try Try Serialport.W ...Show All
Visual C++ How to debug library calls
I'm getting errors in library calls, and I think its because different libraries are screwing with each other's proc addresses. What I'd really like to do is determine where a call is actually going. I can't step into the calls that are causing the problem, because the IDE just steps over them. How can I tell what's actually happening when I make a library call I'm sorry to "bump" this, but I'm still lost. 1) When I make a vector<int>, there is no source code associated with its [] operator or constructor. When I go into the dissassembly and trace the machine code, its clearly loading bad values from the "fence" of cdcdcdcd values MSVC has initialized. 2) When I do the same acti ...Show All
