Software Development Network Logo
  • Visual Basic
  • Architecture
  • VS Team System
  • Windows Forms
  • Visual FoxPro
  • Visual C++
  • Windows Vista
  • Visual Studio
  • .NET Development
  • Visual J#
  • Windows Live
  • Visual C#
  • VS Express Editions
  • SQL Server
  • Game Technologies

Software Development Network >> Srikanth valdas's Q&A profile

Srikanth valdas

Member List

lauch
Stormaker
paulday
jbanks27
Jeff Lebowski
Saul775
DeepakBakshani
BornToEnjoy
Shula
Nick van Katwijk
Christopher Bernholt
Auri
farkewie
ctclark1
Chris Darrigo
vmmdesai
funkpuppet
codeboy
DevDells
lucaz
Only Title

Srikanth valdas's Q&A profile

  • Visual Studio 2008 (Pre-release) SVCUTIL.EXE Error

    I am trying to get a very basic WCF service to work using the helloworld example described at: http://windowscommunication.net/collateral/pages/howto.htm I've built it exactly according to the instructions at that location using exactly the same code. (The only modification I made was to run it on port 8080...if I try to run it on port 80 as the orginal code, I get an IIS error that says that port is being used by another application. Here ...Show All

  • .NET Development Problem about ILMerge

    I have a problem when I merge a assembly. I receive this error message : An exception occurred during merging: Index was outside the bounds of the array. If I exclude that assembly, everything is fine. What can I do with that Thanks. I'm not intimately familiar with ILMerge, but you can also look into using the VC 2005 C++ Linker. http://msdn2.microsoft.com/en-US/library/y0zzbyt4(VS.80).aspx It allows you to code in multiple l ...Show All

  • Windows Forms copyright

    Hi I wonder how I could write a copyright character in a messagebox as text Thanks Moorstream Thanx for all the answers... Of course I mean Word :) /Moorstream ...Show All

  • Visual Basic automate server information for email accounts in outlook

    How to automate server information for email accounts in outlook using visual basic Please let me know the work out. Sorry, I'm not exactly sure what you're trying to do. But have you looked at the Visual Studio 2005 Tools for Office — Outlook (Beta) offering Since I noticed you were programming against Microsoft Office Outlook, perhaps this could help you in some way. Regards, Paul Cornell Documentation Manager Microsoft Developer Divisi ...Show All

  • Visual Studio 2008 (Pre-release) Deserialization exception?????

    Hi , I m using wshttpbinding. I am getting the this problem Message "Error while trying to deserialize parameter http://Corona.Services.CoronaService:ehr . Error in line 1 position 904. 'EndElement' 'ehr' from namespace 'http://Corona.Services.CoronaService' is not expected. Expecting element '_dtDateOfCreation'" string. Call doesnt reach the WCF service and i get this exception on client . Is there any problem in the Proxy g ...Show All

  • Windows Forms Range Validation in a PropertyGrid

    Hello - I am wondering if there is a way (perhaps through Attributes) that I can indicate to a PropertyGrid that I want a certain Property (which is an int) of a class MyClass to be limited to a given range, say 0-10. I know I could put Runtime checking into the Property's set method  itself and throw an error if the new value is out of range, but I don't want to throw an error, I just want the PropertyGrid itself to limit the valid range ...Show All

  • Visual Basic How to remove (delete) cookies from my computer using vb.net 2.0 programme code?

    How to remove (delete) cookies from my computer using vb.net 2.0 programme code I could have written this in pure .Net but decided to do it this way and let you decide. Const CSIDL_COOKIES = &H21 Const SHGFP_TYPE_CURRENT = &H0 Dim S As Object = CreateObject("WScript.Shell") Dim mystr As String= S.SpecialFolders("MyDocuments") mystr = Replace(mystr, "My Documents&qu ...Show All

  • Visual Studio Team System Dogfood Statistics

    Hi, you know how some developers publish "dogfood" statistics sometimes, like outstanding bugs, fixes, workspaces, etc. Where is this report I've looked around under http://localhost/Reports but cant see anything like it. Is it a case of printing off several reports and writing down number of a piece of paper Regards Andy We don't have a built in report that covers the kind of things we include in our "dogfoo ...Show All

  • .NET Development which symtol file should I download?

    Now I am debugging my 64bit program with Windbg,I don't know which symbol file I should download from MS's homepage. there are XPsp1,XPsp2,2003Sever,and so on .My OS is Windows XP x64, which symtol file should I download hupo1982@discussions.microsoft.com wrote: > I changed my setup as you says,but I can't set a breakpoint all the > same.When I started debugging,the windbg show that: > > *** ERROR: Symbol ...Show All

  • Visual Basic Generic Collections In vb.net 2005 Help

    Hi, Getting to grasp with Generics.Could somebody help as follows: In vs 2003 I used to write strongly typed collections now I could simplify it all with generic. I am trying to write some base collections What is the difference between inheriting from collectionbase  and list I have tried to implement the IEnumerator in my collection but the for each still doesnt work Can somebody provide a good example of collections using generics ...Show All

  • Visual C# C# book for windows and database

    I have read Jesse Liberty's Programming C# third edition. Now I am working on C# 2005 ( window , ADO ,database) , and looking for a good book with more pratical codes inside. Please give suggestion. You should read a book about ADO.NET, this will cover everything about working with databases. Here is a little list: ADO.NET Examples and Best Practices for C# Programmers Pro ADO.NET 2.0 (Expert's Voice) Professional ADO.NET 2: Program ...Show All

  • SQL Server Could not find file 'C:\WINDOWS\system32\dbo.mdb

    Error message "O LE DB error: OLE DB or ODBC error: Could not find file 'C:\WINDOWS\system32\dbo.mdb'.; 3024. is reported when I try to process a cube in the SQL Server Management Studio and in the SQL Server Business Intelligence Development Studio. What is the problem, I didn't install new software!! Check the data source connection string. It looks like a Jet data source pointing to C:\WINDOWS\syst ...Show All

  • Visual Studio 2008 (Pre-release) COMSvcConfig ... where has it gone?

    After reloading our system with WinFX February CTP, the ComSvcConfig utility is missing ... has this utility been discontinued and if yes, what is its replacement I am able to find ComSvcConfig in following folder (in Feb CTP) C:\WINDOWS\WinFX\v3.0\Windows Communication Foundation -Thank you Madhu ...Show All

  • Smart Device Development Suspending your app?

    How and what do I need to do to make my app be able to resume its' last state correctly   My app basically has a main form which creates other forms depending on user input.  So lets say I'm in a new form, and then I hit the home button, I will be sent to the homescreen.  When I return to the application it will return the the last form I was on, but when I click say "cancel" and close() the form it will close this current form an ...Show All

  • Visual C# reading wchar_t out of a file

    Hello, a VC/C++ 6 program has stored a string, meaning an array of wchar_t, in a binary file. In VC# 8 / .NET, is there any way to read this string / these characters out of the file The binaryreader class seems not to provide any methods for this purpose. It even seems not to have a matching data type, has it Thanks in advance. It depends on the encoding used. It sounds like it's probably Encoding.Unicode. ...Show All

©2008 Software Development Network

powered by phorum