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

Software Development Network >> Ashish Pratap's Q&A profile

Ashish Pratap

Member List

Harold-z80asmRules
dbcuser
Todd Biggs - Windows Live
PiaMaria
Michael J Brown
Wajdi Georges
rahulmanasa
Dr. Chris
Nick Karasev
robert12345
Solitaire
psp77
vgrigor
Rod Blackwood
tranders
Anarchy
rottengeek
Ian MG Smith
GreenStone90
Jim Perry
Only Title

Ashish Pratap's Q&A profile

  • SQL Server Is SQL 2000 32 bit supported

    Hello All, I need to know if SQL 2000 32 bit is supported on a Windows 2003 64 bit on a x86 processor server. The server is clustered. I wasn't aware you can install 64bit OS on an x86 machine, that just doesn't sound right. Regardless, SQL 2000 (32-bit) cannot be installed on 64-bit OS. However SQL 2005 (32-bit) is allowed to be installed on 64-bit OS. Someone can correct me if I'm wrong. ...Show All

  • Visual Studio 2008 (Pre-release) Getting Relationship Schema Data from CdmEntityType

    OK, So I'm using CdmEntityType to crawl a type, but I can't seem to find the relationships. Is there a simple way of getting the list of relationships within a given type Thanks! Mike There is no simple way to do this, since a same entity type could be re-used in various ways and the different instance of the entity type can take part in different relationships. I would love to know the use case for this scenario. There's a bunch of ways to do this, but the best way to do this would be to find out all the relationship types in the workspace and see if the one of the ends is same or is an ancestor (one of the types up its base class chain) of the given entity type. public static void FindRelationshipType( ...Show All

  • .NET Development nobody could answer me?

    when i tried to install Visual Studio 2005 in Window server 2003 sp1, the following error info arose ---- The following component failed to install:         Microsoft .NET Framework 2.0 The following component was not attempted:         Microsoft Visual Studio 2005 Professional Edition - ENU [02/10/07,00:07:35] Microsoft .NET Framework 2.0: [2] Error code 4121 for this component means "A prerequisite for this component is missing." [02/10/07,00:07:35] Microsoft .NET Framework 2.0: [2] Setup Failed on component Microsoft .NET Framework 2.0 [02/10/07,00:07:36] setup.exe: [2] ISetupComponent::Pre/Post/Install() failed in ISetupManager::InstallManagerHelper() with ...Show All

  • SQL Server i have installed sql server but not appeared in vb.net !!!

    hi i have vb 2005 professional edtion and sqlserver 2005 workgroup edition after i install sqlserver and connect from vb 2005 and it didn't appeared at all !!! how can i connect to sqlserver from vb 2005 help me in this thanks in advance enable allow remote  connection in the sql server surface area configuration if vb can detect your server manually enter the (SERVERNAME)\INSTANCE or use ip address in  the server dialog. use nt authentication to login     ...Show All

  • Gadgets Elevating privileges for WMI calls in a sidebar

    I'm trying to create a gadget that uses some WMI calls to retrieve "cooked" perf data from the WMI counters. Although the code used to work in RC1 w/o any problem, in RTM the same counter classes seem to need Admin privileges. Is there a way that a gadget can have admin privs for running Here is some code that requires elevated priviliges to run. I basically need to run this code witihn a gadget and can't do so unless it's elevated. Set objCimv2 = GetObject("winmgmts:root\cimv2") Set objRefresher = CreateObject("WbemScripting.SwbemRefresher") Set objNW = objRefresher.AddEnum(objCimv2, "Win32_PerfFormattedData_Tcpip_NetworkInterface").ObjectSet ' Init ...Show All

  • SQL Server How to make a hierarchy in a document map?

    How to make a hierarchy in a document map In the report designer, I have two levels of grouping: First Level: Country, Second level: City. I have no problem to create a document map containing both grouping. However, the city and country are listed in a sequential order in the document map. What else should I do and how, to make them a hierarchy that looks like a tree (file folder) structure Thanks. Well, go through the connect.microsoft.com site and search for this suggestion., If not listed yet (big doubt) file a new one. Jens K. Suessmeyer --- http://www.sqlserver2005.de --- ...Show All

  • SQL Server Connection Timeout when processing cube

    I am getting a connection timeout error when processing a cube with measure group containing 4mil rows or so. It errors after 5 mins and after about 3mil rows have been read so it's probably not the ExternalCommandTimeout issue. The Fact table for the measure group is created using a named query. I would appreciate any insight into why the error is thrown after 5 mins. Here's part of the error: =================================== The connection was lost. Close all processing dialog boxes and try processing the object again. (Microsoft Visual Studio) =================================== The connection either timed out or was lost. (Microsoft.AnalysisServices) ------------------------------ Program Location: at Microsoft.An ...Show All

  • Visual C++ Console Window, Win Form Application

    Hi, I was trying to open the console window for a winform applicaiton during debugging, unable to find the proper settings within project to do so. I be thankful if a related reference be posted here. Best Regards, Reza Bemanian One way to enable the console window full time is to change the Project's Output Type to Console Application from Windows Application. Once you are done debugging and no longer need the console window simply change the setting back to Windows Application. ...Show All

  • Visual FoxPro documentation error - command window - persistence

    Help says "Split lengthy commands by typing a semicolon after a space in the command where you want it to break, and then pressing ENTER." This only works if there is nothing following the semicolon (i.e. I'm entering the command for the first time). This will not split a previously entered command. Are you talking about the Command Box If you go up the history list to re-use a previous command and you want to add to it by adding a ";" then a new line, just select all the text down, after the command you want and press Delete, then continue writing you ammended command line with semicolons (";") if you want. Reused commands go to the bottom of the command list when you re-run them. ...Show All

  • Visual C++ msvcr80.dll not found

    I've created a simple Win32 console application. When I try to debug it, I get the message:  "This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix the problem." The Release version runs fine. Any idea as to what the problem could be Thanks, Jonny This means several things. a) your console application does not have manifest. Either embedded inside or external. To check this, do the following:       `1. Check for <appname>.exe. manifest next to exe. If it is not there, it may be embedded. Go to step 2.         2. Open appname.exe in VS. See if it has R ...Show All

  • Visual C# Generics in C# - new() cnstraint

    Hello...   I am trying to play a bit with the generics feature of the .Net 2.0 Framework and I ran into this "Problem"   I try to create a Singelton Base-Class, which will create an instance of itself if the instance is accessed. Since I want to create an Instance of <T> inside my generic Base, I need to supply a new() contraint to <T>. This "forces" me to create a public constructor, since that what new() means.  I think the scope of new should not be "public" but  "protected". Protected would allow me to hide the constructor from the outside world, but it would still allow the creation of the class inside the baseclass. Since I am not able to do this, a direct creation of my Bas ...Show All

  • SQL Server Export Wizard disturb order of data during exporting Data to Acess 2003 from SQL server 2005

    I am using the following query to export data from sql server to ms access in export data wizard: SELECT * FROM myView where myID = 123 Order by varcharColumnName1,varcharColumnName2 ,intColumnName3 This query will fetch about 7, 00,000 records. SQL server 2005 shows the correct order, but Data in access table shows Incorrect order of data. Please give me the solutions. Dear All, I have found a temperory solution. After exporting data to access file. Open table in design view,Right click on tble and select properties. A dialog box will open. Set the order by property like COL1,COL2  etc. CLose the dialog box. Open table, now data is sorted.   Thank you all of you for y ...Show All

  • .NET Development Can you send me the code 2, pleace

    Hi, Im using a custom UsernameTokenManager in WSE 3.0 but it always authenticates when it should'nt. I'm missing something but don't know what.     my Web Service code is: using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace = " http://tempuri.org/ ")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [Microsoft.Web.Services3.Policy("usernameTokenSecurity")] public class Service : System.Web.Services.WebService {     public Service () {         //Uncomment the following line if using designed components         //InitializeComponent();   &nb ...Show All

  • Visual Studio Express Editions Grid

    Hi I have a simple datagrid placed on a windows form. I am able to display the data required with the grid.But the grid is crossing the boundaries of the form, i wanted the grid to autofit to the window displayed and enable to view the rows using scrollbars. Can anybody help Thanks in Advance! Santhosh beside every post you will find a button "mark as answer" see which post answered your questions and click the button of this post hope this helps ...Show All

  • Visual Studio Express Editions difference between VB.net and VB2005

    Hi, I am a little confused about the differences between the two. I had vb.net 2003 installed and when I look at, say a form's code, I can see the #Region code, but now with VB2005, I don't see it. Am I missing something here I need a little help if there is something I need to turn on to see all that code Srini Tall Dude is correct in that VB Express/2005 uses partial classes. In VB 2003 you would have an ugly section of code in you form that was automatically generated - it was in a region and basically was the code that you shouldnt really touch. In 2005 with the concept of partial classing they could create multiple files which all contained bits of code for the same class (of which a form is just a class) an ...Show All

©2008 Software Development Network