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

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

sureshv

Member List

xgalaxy
SavasCilve
Alexsander Wilkens
jitendra badkas
CharlieRussell
Smalldust
Janxels
averge joe
Bill Jackewicz
SteveJM
ProSlamBanO
Ben Hall (UK)
Kathy Weise
Ion101
zoujing
sawer
lukef01
AHooker
wlaulner
Rafael Mores
Only Title

sureshv's Q&A profile

  • Visual Studio Team System Build failing - write permission problem.

    Hi folks, i'm trying to set up my team build but the out of the box setup isn't working to well :( the following error is .. Solution: ProjectX.sln, Project: Web Site, Compilation errors and warnings ASPNETCOMPILER(0,0): error ASPRUNTIME: The current identity (DOMAIN\tfsservice) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'. Solution: ProjectX Deployment.wdproj, Project: Web Site, Compilation errors and warnings ASPNETCOMPILER(0,0): error ASPRUNTIME: The current identity (DOMAIN\tfsservice) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.   Edit: I found some hints -> " If you change the se ...Show All

  • .NET Development how to run a vb.net application without installing .net framework sdk...

    sir i have developed a vb.net application & i would like to distribute it. But my clients are not intreseted to install .net framework sdk in their machines.They argue that with respect to java,if only JVM is installed ,they are able to run their java applications.... So,is there any possible way to run a vb.net application without installing .net framework sdk... Please help me in this matter You are going to have to install at least the .net Framework runtime for the .Net Framework version that you developed against. You dont have to install the whole SDK just to get the application to run. ...Show All

  • Visual C# How Do I Show User Accounts on the Computer in a Combo Box?

    I need help detecting User Accounts on the Computer that the program is being run on and showing them in a ComboBox. Anybody have any ideas Thank you very much. I changed a few things. My formatted code is below. The only problem is that it only shows the user that is logged in, if possible I need it to show all of the users on the computer. private void Main_Load( object sender, EventArgs e) { string a; a = System.Security.Principal. WindowsIdentity .GetCurrent().Name.ToString(); //MessageBox.Show(a.ToString()); comboBox1.Text = a.ToString(); } ...Show All

  • Visual Studio Express Editions Read a text file line by line.

    I have a text file in which I would like to read line by line and display each line one at a time in message boxes. Can anyone help Text file is below. 4 113 2 A1455 00320 025 1819 122006 155 I would like the output to read in each message box: Line 1 = 4 Line 2 = 113 Line 3 = 2 etc. Streamreader.readline() reads a line of text from the file then advances to the next line. text1=streamreader.readline text2=streamreader.readline This will work. ...Show All

  • SQL Server Timeframe for Add-In for Office RTM

    When is the Add-in going to be updated for the RTM of office ...Show All

  • SQL Server SSAS Client - OWC ? Anything else ?

    Hi, I've setup SSAS 2005 environment and Cubes etc..I want to develop OLAP client in ASP.Net (to view cube based reports) over web. Will OWC is the right choice We don't want to use any third party controls or packages and want to go with microsoft suite. If OWC is the right choice where I should start with Any guidance / help on this is much appreciated. Thanks ! We're on OWC, but I wouldn't start with OWC today. We're moving to Excel 2007 + Sharepoint Server 2007. Made for Business Intelligence. ...Show All

  • Visual C++ problem with richtextbox

    RichTextBox^ richtext1 = gcnew RichTextBox; richtext1->LoadFile( "c://test.rtf" ); Controls->Add(richtext1); The result of error An unhandled exception of type 'System.ArgumentException' occurred in System.Windows.Forms.dll Additional information: File format is not valid. my solution : tried I have tried to change file format to txt but error is still there . I was wrong in which way . Thank you ! That is right . Thank you alot . I pick out a file txt and save it as rtf . That is the reason the error happened . Through this error , i find out that rtf has implicite sign in it . Thank you very much TilakGopi ! . Have a nice day ! ...Show All

  • Visual Studio Express Editions visual basic 2005 command prompt help..

    O.k i have been looking around and still have not been able to find the answer. what i am looking for is the code that will send a command to dos prompt or cmd and execute it. You know like ipconfig iprelease / renew or netstat -a this way you dont have to go and type all this long stuff out everytime you need to release your ip or your trying to configure a network. element109, No, I wasn't critiqueing your post, I was just offering 'a way' to do it. If the OP will search this forum for 'batch', the OP will find many different variations on this. Some launch the batch file directly, some use cmd.exe, some use input/output redirect, some don't, some are visable, some are hidden. So a person ...Show All

  • Smart Device Development VS 2005 Windows Mobile 5.0 Connection Failed

    I hope someone can help me. I recently installed VS 2005, HP iPaq running Mobile 5.0, Activesync 4.2, and Windows Loopback Adapter. I can create a smart device application and deploy it on the 2003 emulator, but whenever I try to deploy the app onto my pocket pc it keeps returning an error stating: Description: "Connection to Device Failed" File: "Device Connectivity Component" I tried to connect to the device thru: Tools - Connect to Device - Windows CE 5.0 Device, but it returns an error stating: "Connection failed. An invalid argument was supplied." I tried deleting the CoreCon folder, but that didn't help. Any suggestions would be greatly appreciated, since this is relating to work. Thanks, Hi, ...Show All

  • Visual Studio Team System How to get data From TFS Work Item field!

    Hello, I am working with TFS using ASP.NET, c#. I would like to get Data from TFS for those work item depend on workitem type is bug, Scenario, task, ... State ( Active, Closed...), Type (API, High level Requirement, Security...), Triage (Approved, Investigate..), Priority(1,2...), Severity(Critical, high,...), discipline (Architecture, development...). Is there any API to do this or is there a way to do this at all Please help! Any answer would be greatly appreciated. Thanks in advance. Ddee You can reference it by the display name ("Requirement Type", with the space) or the reference name ("Microsoft.VSTS.CMMI.RequirementType"). "Requi ...Show All

  • Visual C# Is there any function for converting Currency ( Numbers to Words )

    Hi groups, I need some idea/ways are there for creating currency conversion. I mean if i give inout as numbers ( say 1500 ) is should convert into text as [ One thousand five hundred only. ] Hope someone already implemented this type of functions for reports etc..pls share your logic and code if any. Maheshkumar.R wrote: Hi groups, I need some idea/ways are there for creating currency conversion. I mean if i give inout as numbers ( say 1500 ) is should convert into text as [ One thousand five hundred only. ] Hope someone already implemented this type of functions for reports etc..pls share your logic and code if any. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. speech synthesis for 360

    just released the code for a basic speech synthesis engine for XNA (including 360). http://www.brains-N-brawn.com/xnaSynth/ it's written from scratch, but uses the resources from the open source FreeTTS project. it speaks sentences, can sound out unknown words, reads integers, and can synthesize raw phonemes / diphones. it doesn't do the natural language processing to figure out verbs / nouns, or support stressing certain syllables (since XNA does not support dynamic audio). Thanks, casey very cool! I love seeing all the amazing things people are creating in XNA. But you know people are just going to use it to say inappropriate things Thanks for the source too. I'll have to mess around ...Show All

  • Windows Forms Change publish.htm !!

    How can I change the design of publish.htm page !! How to: Customize the Default Web Page for a ClickOnce Application ...Show All

  • Visual Studio Accessing CodeModel of implemented interfaces

    I created an AddIn for VisualStudio 2005 and registered a Command. When executed, this command accesses the FileCodeModel of the active document. I walk over the CodeElements of the FileCodeModel and when I find a Class (CodeElement casted to CodeClass), I ask for implemented interfaces. I get a collection of CodeElements where I am able to access the name of the interface but nothing else. Now my question is: How can I get more information on this interface. I would like to enumerate the properties/methods/events and their parameters if any. I think ther must be a possibility, because VisualStudio also has this information (e.g. when automatically creating method stubs in a class for a particular interface). How can I achieve this H ...Show All

  • Windows Search Technologies Outlook search, cache mode only???

    I just upgraded to V3 RTF, but I cannot get it to index my outlook XP. The message is it only indexes in cache mode. outlook XP doesn't have cache mode. We are running Exchange 2003 SP2 V2.5 could index outlook XP. Please help. thank you jb benwaynet, You should be able to set Outlook XP to operate in cached exchange mode. Do do this, right click on Outlook in the start menu and click on Properties. Once you've done that, click on Email Accounts. From there, choose View or change existing email acocunts and click Next. From this screen, choose the account you would like to set to cached exchange mode and click the Change button. Put a check mark next to Used cached Exchange mode and click Next and then ...Show All

©2008 Software Development Network