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

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

AravananRaman

Member List

Greg1
kamala kannan
Kent Glossop
Gwired
John Bowen
sibot13
MFred
BLiTZWiNG
P Glenn
Feret
carlosalvidrez
Mart10
Kingwillowviii
Gayeshan
gary.ruan
Bob Lan
jacobmross
Ian Logan
Zerox Millienium
AlexandreF
Only Title

AravananRaman's Q&A profile

  • Visual Studio VS.NET modifying my custom .csproj changes

    Hi, As part of my build process, I am copying generated classed into my DataAccess project, then trying to build DataAccess.csproj which should include the newly generated classes. I modified the <ItemGroup> to include all .cs files in the directory as follows: <ItemGroup> <Compile Include=".\**\*.cs" /> </ItemGroup> It seems that Visual Studio overrides this change when I reopen the project. It lists a Compile node for each file in the project. Is there a better way to modify DataAccess.csproj so that all .cs files in the project's directory will be build Thanks, Gavin Thanks for t ...Show All

  • Visual Basic retrieve and parse HTML data

    Hi in VB.NET 2005, what is the best way to retrieve and parse HTML data from a URL, a bit like a search engine crawler I am building an app, where I need to parse a website, and collate data from it (the website uses some tags that I could pull out to get the appropriate bits of data).  I want to be able to do this in a thread, and just update a DB with the data, and give the client app a status update of the progress. Any ideas/samples/links that you can point out to me that you might know of Thanks Chris Ok. Please know I'm not the worlds greatest parser. I just "do what I do" but rather enjoy it. Mo ...Show All

  • .NET Development Reading ConnectionString from .config

    I am interested to know how the ConnectionString line of code works.  It appears to search machine.config, app.config and web.config.  Anybody have any background on how this process works   Does it really search all three files and in what order Protected Function DB( ByVal DatabaseName As String ) As String Return ConfigurationManager.ConnectionStrings _ (DatabaseName).ConnectionString   End Function   Are there any genuises at MS that have any background information on this I would love to see a KB article on this subject. Somebody should con ...Show All

  • .NET Development UI that calls Web Service creates reentrance. Bug ?

    I make a synchronous web service call when the mouse is clicked or when enter is pressed. What I find is that the if I click on the mouse again while the web service call is still processing the first call it causes annother mouse click event. Since the web service is being called with the synchronous (blocking) call Microsoft.Web.Services2.WebServicesClientProtocol.Invoke this should not happen. It seems that Invoke is NOT synchronous and this is causing MAJOR headaches for me. Any solutions on how to make it truly synchronous The web service proxy class is inheriting from Microsoft.Web.Services2.WebServicesClientProto ...Show All

  • Visual Studio How do I sync topic with Contents?

    I hope this is a dumb question, but I cannot seem to figure out how to sync the topic with the contents page when using Document Explorer 8.0 with the MSDN for Visual Studio 2005 content. You probably know what I'm talking about.  I do a search for ASP.NET Health.  The first topic that comes up is Using ASP.NET Health Monitoring ....  Once I select that topic, I would like to be able to see where I am in the content area, but I can't figure out how.  In the 7.0 Document Explorer there was a Sync Contents under Help. Also if some knows how to make the language stick in the 8.0 browser I would love to know. Thanks in advanc ...Show All

  • Visual C# Overhiding

    What is overhiding in c#. I think the term you are referring to is "overriding" and "hiding". A superclass can override the implementation of a method defined in its base class, which means that the method implementation in the subclass will replace the implementation defined in the base class. In C#, methods can only be overriden if they are defined as virtual in the baseclass, and defined with the overrides keyword in the subclass. Similarly a method in a subclass can hide a method in its baseclass, which will hide this base class method, and expose the subclass method implemen ...Show All

  • Visual C++ Where is <inttypes.h>

    I am working through the book C Primer Plus by Stephen Prata.  He has placed an exercise in Chapter 3 that deals with portable types.  I am trying to use <inttypes.h> however, the compiler says that it is not able to find the header.  Below is the output I received.  Does anyone know where I could find this header for Visual Studio 1>------ Build started: Project: altnames, Configuration: Debug Win32 ------ 1>Compiling... 1>altnames.cpp 1>.\altnames.cpp(4) : fatal error C1083: Cannot open include file: 'inttypes.h': No such file or directory 1>Build log was saved at "file://c:\Documents and Sett ...Show All

  • Smart Device Development VS2005 and CF v1.1

    I've recently installed VS2005 beta 2 and have a Symbol PDA installed with PocketPC 2003 and CF v1.  I noticed in the project templates that I can develop a DeviceApplication(1.0) using this IDE, so I did a quick Hello world app.  Compiled fine, but when I attempt to deploy it to the Pocket PC 2003 device I get the following error: Error 1 The current version of ActiveSync is not supported. Install the latest version from www.microsoft.com . I have ActiveSync 3.8.0 build 5004 installed and its working fine.  In other words, I can connect and explore the device without issue.  Is this error referring to the Activ ...Show All

  • Windows Forms Cannot inherit form from inherited form - More Information

    I am using VB dot net and have a base form which is then inheriten by other forms. I also have another base form that extends on the orignal base form. When i attempt to create a form base on the extended base form i get a message when i try to view the form. --------------------------------------------------------------------------------------------------- "an error occured&n ...Show All

  • SQL Server Problem to create assembly which depends on other dll's from SQL Server

    I am developing an application in .Net but I need to access to some procedures in ASP.Net since SQL Server. I have got it but i have problems to assembly the dll if it has dependencies of another dll's.I have read that if a dll need other dll it call it automatically but when I try to assembly my class in .NET there is the next error: Create failed for SqlAssembly 'ClaseEjemplo'. Assembly 'csyt.dal, version=0.0.0.0, culture=neutral, publickeytoken=null.' was not found in the SQL catalog. (.Net SqlClient Data Provider) Nevertheless if I the class hasn't another dependencies it works.The class I am trying to assembly is ClaseEjemplo.I ...Show All

  • .NET Development Server Name missing from Add Connections in Visual Studio - clues anyone??

    I've got both SQL 2000 and SQL Excess, er, Express on my PC doing C# Pro development. If I try to Add Connection to get a data source, I can select an Express database MDF file, and operate on the data OK, but cannot select the Express server - it does NOT appear in the server list. I added the server SQLSERVER.EXE to the Windows firewall 'Exceptions' list, along with Vis Studio - no change. I CAN select the SQL 2000 server OK. I can get into and use the Express Management tool OK. Properties for the Express server are Network connection (versus Local Service and Local System, both of which don't work), network connections a ...Show All

  • Windows Forms BUG: MdiChildActivate strange behavior

    The Form1 and Form2 are exists. Form1 is Mdi Container. Form2 is Mdi Child. Form1 has MdiChildActivate event handler: private void Form1_MdiChildActivate(object sender, System.EventArgs e) {     if(this.ActiveMdiChild==null)     {         Form2 f2 = new Form2();         f2.MdiParent = this;         f2.Show();         f2.Wi ...Show All

  • Visual Studio Team System VSTS Web Test

    Hi, 1. I recently recorded a web test. When I run it, it runs fine but while running I don't see the web pages being accessed. I mean no browser opens. Am I missing something 2. Once I was done with the recording, I generated the code for that. And I changed something in that code. Now can I see those changes from the code back in the web test Amit. Hi Jenny Are you being able to run the webtest from the webtest UI What step are you not able to do After you run the web test in the UI, the buttons will seem to become disabled, but this is because the new document that you are seeing is ...Show All

  • .NET Development Problem with AutoNumber key column

    Hi, I'm using dataGridView in VS 2005 environment. And I observed that the AutoNumber key columns increments the number whenever I sort on the grid. Scenario to reproduce the problem is: -bind the grid with 'Employee' table.(EmployeeID column is Primary key and it's AutoNumber) -Sort on the gird. Observe: EmployeeID column displays different number at each time when we sort the grid. Any idea about this Any comment is appretiated. Thanks. Julia168 Could not reproduce. Tested against SQL Server Employees table and Microsoft Access Employees table. Perhaps you have so ...Show All

  • Visual Studio Express Editions Users in SQL Express server

    This is my connection routine for an SQL Express database I'm using with ASP.NET and C#         connectionString = "server=.\\SQLExpress;uid=sa;pwd=;database=cartridge;" +         "Integrated Security=True;";         connection = new SqlConnection(connectionString);         connection.Open(); When I run the database in "debug" mode through the VWD IDE the connection is made and I get query data etc, but when I try to access the database from IIS I get a login failed message, I assume this means I mus ...Show All

©2008 Software Development Network