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

Software Development Network >> priyanka.dash's Q&A profile

priyanka.dash

Member List

tevisB
J A Y
Romantic_touch
Al33327
IanO
connect2sandeep
schmod54
fugu996
Tryin2Bgood
MillBear
molemenacer
BobTheBuild
jepptje
windows_mss
Bruno N. Souza
bmains
Rassol
easlern
younger
OClaudiu
Only Title

priyanka.dash's Q&A profile

  • Visual Studio Team System Installing Teamserver 2005

    Hi, When i try to install Teamserver 2005 after installing sql 2005, i get error message to uninstall prerelease products like framework 2.0 beta version.When i remove framework 2.0 beta and install Teamserver 2005, setup fails saying sql server is not running. Sql 2005 is corrupted as soon as i remove framework 2.0 beta version Help me out Raja.K Hoye Raja Saab TFS use Framework 2.0 Beta 2, so you need SQL Server 2005 Beta 2, it seems that you have the SQL Serve 2K5 Beta 1. And If you have SQL Server 2K5 in TFS CDs then it will be SQL Server 2005 Beta 2, ...Show All

  • Visual C# can any body help me in reversing strings

    this fuction help me to convert the arabic words to hexa .. and it doing the job 90% because it convert it in reverse   this means that the true hexa for example is (062F0645) but the function returns it like this (0645062F) and this makes each word come in reverse order   for example ... I love you becomes uoy evol I   how can fix that     public string ArabicHex( byte [] b) { string temp,s="",h=""; int i=0; while ((i <= b.GetUpperBound(0))) { temp= "00"+b .ToString("x2"); h = temp.Substring(temp.Length-2); if (h == "000D") { h = ""; } s = h + s; i += 1; } return s; }   thanks in advance ...Show All

  • Visual C++ LINK : warning LNK4089: all references to "SHELL32.dll" discarded by /OPT:REF

    Hi. when I run Batch Build .... Deleting intermediate files and output files for project 'Sampler - Win32 Release'. Deleting intermediate files and output files for project 'Sampler - Win32 Debug'. --------------------Configuration: Sampler - Win32 Release-------------------- Compiling resources... Compiling... StdAfx.cpp Compiling... Sampler.cpp SamplerDlg.cpp DisplayDlg.cpp Generating Code... Linking... LINK : warning LNK4089: all references to "SHELL32.dll" discarded by /OPT:REF Sampler.exe - 0 error(s), 1 warning(s) --------------------Configuration: Sampler - Win32 Debug-------------------- Compiling resources... Compiling... StdAfx.cpp Compiling... Sampler.cpp SamplerDlg.cpp DisplayDlg.cpp Generating Code... Linkin ...Show All

  • Windows Live Developer Forums Driving Directions Display

    Hello, I have a driving directions code that when you put an address in the route and directions popup, is there a way to make it so the directions get inserted into a area below the map instead of it being a popup (alert) My code is below. <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src="http://dev.virtualearth.net/mapcontrol/v3/mapcontrol.js"></script> <script> var map = null; function GetMap() { map = new VEMap('myMap'); map.LoadMap(); } function ...Show All

  • .NET Development ItemDataBound

    Hello, everyone, I am working with the VSTS 2005 and I am trying to hide some fields (cust_id) from displaying in the grid view. The VS 2003 had a ItemDataBound in the namespace UI.WebControl. Is it been replaced in 2005 Can someone point me to the right direction Thanks, Antonio So first of all, are you adding, manually, the columns in design or you let .NET autogenerate columns based on the results of the SQL Query . This can define the solution: If you add manually the columns in design, as I told, just use the "visible" tick in the screen when you edit the column and uncheck it. If you don't add manually, and use autogenerated columns, just go to the events list of the gr ...Show All

  • Windows Networking Development GQoS vs QoS2 vs qWAVE

    I have some applications that make use of GQoS under XP and Server 2003 and I've heard a lot about QoS changing in Vista. I've been looking all over the MSDN web site, but I'm still a little confused. What's the difference, if any, between QOS2 and qWAVE The qWAVE documentation states that it's "mainly targeted for use by multimedia applications that require network streams on a home network". Does this mean I should still use GQoS for my enterprise applications under Vista and Longhorn Thanks Kevin O'Connor Interactive Intelligence, Inc. Sure. We develop Windows-based telephony systems. One component of our system is a media server which sources, sinks and manipulates RTP voice streams. One me ...Show All

  • Visual C++ OLE/COM Object Viewer where??

    Hello Does OLE/COM Object Viewer come with vs2005 i dont see it in tools menu and oleview at the command line wont work. where can i find it do i have to download the tool somewhere thanks ...Show All

  • SQL Server Currency formatting: how to change to use another locale... or is US format hard coded?

    How to I change the formatting of my currency based members according to the actual currency that they are defined in rather than the default US format (in my case GBP). Answers to this can be found here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=887100&SiteID=1 I got sorta the same problem.. ...Show All

  • Visual Studio Team System Do shelvesets save all workspace file versions?

    When you shelve does it save the current version information for all files in your workspace, so that you can be sure to get back to where you were when you shelved The typical example is I am working on some files but need to work on a different issue, I shelve my current changes, then do a get latest to make sure I'm in sync, make my new changes, checkin then unshelve the code I was working on previously. The question is would my workspace be rolled back to the point prior to me doing get latest or would I potentially have files out of sync at that point (sync I was editing the files I shelved possibly related to early versions of other files in my workspace.) I don't think I hit a scenario like this yet, wondering if that i ...Show All

  • Windows Forms Multi-language input validation

    Lets say that I want to create an input validator function for a text box: I want to only allow text in any language (unicode). This means that symbols like'!;, ' and all other symbols wouldn't be allowed. Only regular charachters in any language.. How can I do that Thanks You could try the following: private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { // Check whether the entered character is a letter or digit; if (!Char.IsLetterOrDigit(e.KeyChar)) e.Handled = true; } Let me know if that's what you were looking for... ...Show All

  • Visual FoxPro Report help?

    Hi there I was wondering if any ones can help. What will be the report builder expression in vfp to access a single FieldList (text2) from table (mms) where the condision equals to (field="02") I tried using: SELECT text2 FROM mms WHERE fileid="02" in the command runner in vfp and it gave me the correct result. But when i copied n pasted it in report builder as an expression it gave a syntax error. Any ideas Thanx for your time. Bobby Bobby, Typically in VFP reporting is done by using a SQL select to get your data all together into a reporting cursor and run the report with that cursor as the input. SELECT text2 ; FROM mms ; into cursor reportresult ; WHERE f ...Show All

  • .NET Development Microsoft.Practices.EnterpriseLibrary.Data - How access another connection string in the App.Config

    The Microsoft.Practices.EnterpriseLibary - automatically accesses the default connection string when you call DatabaseFactory.CreateDatabase(). It will grab the DEMO connection string. How do I grab the PROD connection string <dataConfiguration defaultDatabase="DEMO" /> <instrumentationConfiguration performanceCountersEnabled="false" eventLoggingEnabled="false" wmiEnabled="false" /> <connectionStrings> <add name="DEMO" connectionString="Data Source=dev;Initial Catalog=DEMO;Persist Security Info=True;User ID=dev;Password=dev;" providerName="System.Data.SqlClient" /> <add name="PROD" connectionString="Data Source=dev;Init ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem getting alpha blending to work with point sprites

    I have a particle system that I can initialize to use either point sprites or billboards. When using billboards, the alpha blending works fine. But when I change to using point sprites, using the same effect file, the alpha blending doesn't work and nothing appears on screen. If I disable the following alpha blending code in the effect file: AlphaBlendEnable = true; SrcBlend = SrcAlpha; DestBlend = InvSrcAlpha; ZWriteEnable = false; the point sprites appear (although without blending, obviously) so there is clearly no issue with the point sprites being too small to see. Thoughts Your comment turned on a lightbulb for me and I found the problem. I had this in my effect file: Output.Color = tex2D(TextureSampler, Textur ...Show All

  • Visual Basic access to the path "C:\" is denied

    I am attempting to save plain text from a plain box named 'quote'. However whenever I click the save button in the savedialogbox I am returned with the message: "access to the path "C:\" is denied" Any suggestions This is in debug mode & using an admin account, changing the path seems to make no difference Private Sub saveToolStripButton_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles saveToolStripButton.Click Dim MySaveDialog As New SaveFileDialog MySaveDialog.Filter = "Plain Text (.txt)|*.txt" MySaveDialog.Title = "Save File" Dim result As DialogResult = MySaveDialog.ShowDialog() If Not result = Windows.Form ...Show All

  • Windows Forms UserControls not showing up in toolbox

    Usercontrols don't seem to show up in any of my VS2005 projects' toolboxes anymore. They used to, but I don't kow what happened. This is what I have been trying to get usercontrols into the toolbox: Create a new C# windows application Add UserControl named UserControl1 (it is in the root of the porect, not in a folder) compile I have checked under every single tab in the toolbox, including "All Windows Forms" but UserControl1 doesn't show. I've also tried closing and reopening the toolbox but that doesn't help. I have seen this http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=53820&SiteID=1 but I dont have a tab called " [ProjectName] Components." is that the problem Thank you ...Show All

©2008 Software Development Network