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

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

anilpatel32

Member List

B.J.
Idaho
NamelessJuan
mariap
Aaron_W
Wellnow
Tanmaya
oykica
Sam Dela Cruz
IamHuM
SParker
Mark Benningfield
Simple Samples
donWong
Vista2007new
Zoe Elmo
Simonth
Sébastien Nunes
Jamaz
chadhowell
Only Title

anilpatel32's Q&A profile

  • SQL Server How to Hide childless members

    Hello, I have a dimension with members that dont have childs, how can i hide those members. Thank you Go back to the datasource view and add a new column/named calculation for the dimension. Lets call it PostalCodeReseller Add: Case When Reseller Is Null Then Null Else PostalCode Use this new columns as key column for the level PostalCode. Do not add another name column for this attribute. After that Hide Member If for the Postalcode level = NoName should do the trick for you. HTH Thomas Ivarsson ...Show All

  • Visual Studio 2008 (Pre-release) using NUnit with WCF

    Hi I want to know about some best practices and some sample if available on using NUnit with WCF I am developing service applications using WCF (.Net framework 3.0) I want to make use of NUnit for testing my services (operation contracts). Can anyone pls let me know about some best practices and any sample available as to how can I make use of NUnit with WCF for testing. Is there any tool available which can act as a plugin with VS2005 and generate NUnit test cases for WCF service proxies. I am doing a web refernce to the service proxy and it creates an xsd file on my client machine. So how can I make use of NUnit to test my WCF services. Do I write NUnit code on the service side or on to ...Show All

  • .NET Development Static methods behind the scene

    How static methods work inside CLR Is it similar to the old C++ architecture with a single copy of the method for all instances How member functions work/represented inside CLR Yes, static methods belongs to type, not to instance. And they are located in another then instance methods, let's say, "table" inside the CLR. For each class there is a "Type-object" inside the CLR. This object contains all the information about the type and all the static methods are located in it. For each instance CLR creates an "instance-object" which contains instance related data (properties, methods) and the reference to the "Type-object". You can read Jeffrey Richter's book ...Show All

  • .NET Development How to deliver message to client without client call with remoting?

    I am developping a message reminding system.I want to send message to the client through client IP address initiatively.But I don't know how to make it.Please tell me how! I solved this problem.But there is a new problem, if there is a pxoy server between client and server, how should I do in this situation ...Show All

  • Internet Explorer Development IE 7 - scrolling jumps

    Is there a default setting I can change in IE7 that will stop the jumping when I try to scroll using a mouse wheel It's almost as bad as what I see when I'm connected remotely to another machine. Thanks, R. Hill I have the same problem! I just hate this feature and I don't know how to change it either. Have you figured it out yet Let me know. Thanks Jackie ...Show All

  • SQL Server Alerts and Jobs for transaction log processing

    Scenario: I have an alert defined which monitors the transaction log. It should start a job which should backup the transaction log once the log is 75 percent full. So far so good. The challenge is to give the database name to the command for backing up (in our case it is a external tool) the appropriate transaction log I know, that you can use tokens (A-DBN) to do this. I know, that there is a bug in this area, so tokens are not set correctly in SP1 Question: Is there any trick/alternative to create a workaround Regards Norbert ...Show All

  • Software Development for Windows Vista The 64-bit Intel version of App Verifier 3.3 fails to install on our 64-bit Intel machine

    The 64-bit Intel version of App Verifier 3.3 fails to install on our 64-bit Intel machine. When we use the AMD version of the installer, it does not generate logs when we run our MSI installer package. The installed application runs correctly in Test Case 4 on the 64-bit machine. Hello When you use Application Verifier, the version that you use depends on the bit verion of the application that you are testing. For a 32-bit application being tested on Windows 64-bit, you would still need to use the 32-bit Application Verifier. The ia64 version of Application verifier is only for Itanium systems. For 64-bit applications on and Intel EMT64 system, use the AMD64 version of Application verifier. Thank You Thomas ...Show All

  • SQL Server SQLEXPRESS instance on SQL SErver 2005 standard edition

    What happens when you install a SQLEXPRESS instance on a machine that already has SQL Server 2005 Will the SQLEXPRESS still run in the limited mode or will it sense that an full standard version of SQL Server 2005 is already present and just "upgrade" itself On the otherhand, how do I "upgade" an existing instance of SQLEXPRESS to a full version of SQL Server 2005 standard edition without uninstalling and installing the standard edition. If I have both the instances then will the SQLEXPRESS be freed from its limits Thanks, Vikram I've got a question related to this topic. I've got one box that had a trial version of SQL Server 2k5 Standard on it and found out that the software ...Show All

  • Visual C# Commandline arguments question

    I am starting a process after setting some command line arguments. Is there any way that I can see what actually executed on the command line along with all the arguments that were passed Is this information stored somewhere after the process is started The reason I'm asking is that I am using a companies command line FTP program and I keep getting told that I am using bad command line arguments. The arguments I'm passing are valid, but I want to check to make sure that is actually what is getting executed. Thanks in advance! Sure... //Commandline FTP Process FtpProcess = new Process(); FtpProcess.StartInfo.UseShellExecute = false ; FtpProcess.StartInfo.RedirectStandardOutput ...Show All

  • Visual C# Which software for my application?

    I want to learn how to develop Infrared (IR **radio transmission) products for racing, such as is found on items such as oval track, non-contact timing systems. What would be the best software for me to learn for these applications TIA I used VB6 to develop communication with hardware RF radios through a serial port. The VB.NET and C# both support serial ports (with the SerialPort control in the toolbox) to access hardware. If you connect your app to the hardware this way, it could send any messages you want. You could also use .NET compact framework to deploy it on a smartphone, instead of a notebook or desktop pc. Don't know if this is your goal, but I hope it helps... ...Show All

  • SQL Server Permanent URL to SQL Native Client (sqlncli.msi)

    I'm working on a setup that can download and install the SQL Native Client (if needed). I'm trying to figure out what the semi-permanent URLs are for sqlncli.msi, sqlncli_x64.msi and sqlncli_ia64.msi. If I navigate to the download page for these kits, the URLs don't look like they are permanent, they contain a GUID and seem to point directly to a download server. I was expecting to find something like: http://go.microsoft.com/fwlink/ LinkId=37280 Which is the link to SQL Server Express setup kit. Can anyone tell me what the LinkId is for the SQL Native Client kits Thanks, John Vottero ...Show All

  • Smart Device Development Unable to create cab files in visual studio 2005

    Hie, i think i am facing the same problem, so i just reply here instead of starting a new thread. if this isn't the same problem, i will create a new thread later. i followed the how to article on using smart device cab project to create the cab files. i successfully created the cab file and when i copy it to the device via activesync, it install successfully. but when i package it into a installer and use ce application manager to install, it say this is an invalid setup file. so i open the cab file and compare it with the sql ce cab file. and guess what, it is different. In the cab file that i create, it doesn't have a *.999 file, but all the other cab files like sql ce, sql ce client, and compact framework have. so, what am i d ...Show All

  • Visual C# vs 2005 not responding

    I am using VS.Net2005. Whenever I open a project, the VS gets stuck. If I end the vshost process, the VS continues to respond (but I cannot debug the app). The same happens when I create a new project, so it is not a project specific issue. Does anyone know how to solve the problem thanks. I have similar problem as Liat. My VS 2005 TS for SD hangs on any creation or opening of console application. And either I can't debug any ASP.NET web site which runs on internal web-service ( Error - Unable to attach to application on WebDev.WebService.exe. ... timeout expired.) And after resetting all settings to default VC# developer i received a new error msg - "Attaching to managed debugging process [ProcessID] ...Show All

  • Visual Studio Team System Web Farm or Server Farm when installing SharePoint?

    In the TFS setup guide, I’m seeing conflicting instructions. In one place (for when installing SharePoint), it says to select the Web Farm option. In another place, it says to install the Server Farm option. Anybody know what's going on here and which I should select Thanks, Ron When setting up the Sharepoint during install you want to select the Server Farm option. I have not seen anything else that states differantly, but then again i just use the single-Server install checklist. having done this quite a few times, I just know that is the correct option and I tend not to dive too deep into the docs. Hope this helps Paul ...Show All

  • Smart Device Development equivalent of Control.CreateGraphics() for Compact framework 2.0

    Hello i need to convert a control.CreateGraphics() for my app. VS2005 gave me a runtime error saying that it's not supported for Compact framework. Is there anyway to bypass that Hello how can i override the OnPaint method Here is my problem: First I setup some circles on a panel with the paint event Rectangle[] Circles; private void panel1_Paint(object sender, PaintEventArgs e)         {             Graphics Draw = e.Graphics;             Circles = new Rectangle[ 8 ];             for (int i = 0; i < 8; i++ ...Show All

©2008 Software Development Network