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

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

AlpanaDhole

Member List

Daniel Gary
dfullerws
Indinfer
James Woodall
Hossam Abdel Wahab
Simon Dahlbacka
Paula M
Vijay_kar
motorola
Guy Burstein
Tovdb
Hashim Ahmed
Ofer Gal
pavc
Jeremy - MS Research
Thymen
mharoun_ca
Sam Loud
eclere
Bloom326984
Only Title

AlpanaDhole's Q&A profile

  • Windows Forms display msi path

    Hi, I want to display msi path from where it is running. For example my msi is in "c:\msifolder\test.msi".and when i click on msi.after initial dialogs,it should display "c:\msifolder\test.msi". Thanks If you're talking about getting the path to the MSI file from a custom action, you'd pass the OriginalDatabase property via the CustomActionData property to the custom action, case-sensitive. You'd put [OriginalDatabase] there, in brackets. It's not clear what you mean by "it should display". ...Show All

  • SQL Server Hide 'New Subscription' in the explorer bar

    Hello We do not want the end users to know of the subscription capability. How do we hide 'New Subscription' link for a report. Thanks InderSunny, Can you mark my post as answer so our solution will be found by others who are looking for the same solution Thanks, Ham ...Show All

  • SQL Server Simple Null question

    I'm guessing there is some simple answer to this question. Im working of a Cube. Now when i preview my report. It leaves all the null values with nothin displayed. I would like to have them displayed as zeros. How would i do that If you won't find anything better try this: as expression of that field use "=iif(IsNothing(Field!yourfield.Value)=true,0,Field!yourfield.Value)". You can also try to modify dataset (if possible) to change all nulls to zeros. Maciej ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Qs about Multiplayer game

    me plan to do a 2D multiplayer action game. Not plan too far for the MMO, but just a party around 8~20 players at once, something like Counter-Strike/Freelancer, players can travel around in a big map. me never did this before, so that me not sure my logic is correct or not. here my communication flow between [game server] and [client] 1. [client] collect player input and process 2. [client] send player input(or make it simple as command) to server 3. [server] receive client command, process it and boardcast the result to clients 4. [client] client receive server command, process and update my questions is: assume that my client running in 60 FPS 1. what the frequency that me have to collect the input and send the command to se ...Show All

  • Visual Studio Tools for Office Failed to update customization from the specified deployment manifest.

    I'm trying this again. I've successfully created an Excel App-Level addin that supports automatic updating (details below).  The issue is that I want to ensure that the addin loads from the local copy when the remote copy is unavailable. My app.dll.manifest file is as follows:   <assembly xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" manifestVersion="1.0"> <assemblyIdentity name="PriceTools.dll" version="1.0.0.18" /> <asmv2:entryPoint name="Startup" dependencyName="dependency0"> <asmv2:clrClassInvocation class="ClassName.AppName" /> </asmv2:entryPoint> <asmv2:dependency asmv2:name="dependency0"> <asmv2:dependentAssemb ...Show All

  • Internet Explorer Development Organizing IE7 Toolbars - Google hijacks toolbar layout.

    What a Horrible experience has been using IE7. First I can't put more bars in the same row as the address bar So I get a incredibly big address bar and loose a lot of screen. Other problem is that toolbars dont stay in the place you put them. They keep moving even if you lock the toolbars. Is this a Primary BUG at IE7 Is there anyway to make IE 7 as useful as IE6 and customize bars the way I want and not the way the developers wanted Thank you in advance for solutions.... Thanks Rob, for the tip... and Viktor, for your suggestion... But both are irrelevant to the OP's message. I obviously also experience the same problem... and (as some of you probably did...) found this tread doing a Google sea ...Show All

  • Visual Basic icon from primary output not showing on the desktop

    Hi I have a vb.net 2005 project, with an installation project I added the primary output to the file system for the installation and dragged to the desktop. I get a shortcut on the desktop after installation - but it doesn't show the application icon ... Why is this Do I need to distribute the icon as well (I hope not) Thanks Bruce What does the shortcut icon look like you may need to add the icon of the application in the project. http://windowssdk.msdn.microsoft.com/en-us/library/339stzf7.aspx   hope it helps!   ...Show All

  • Visual Studio Team System how can i get all types?

    hi, all, i've got puzzled. how can i get all the types defined or declared in the target dll(exe) from the check method of my custom rule cause i'm gonna check if there is a type defined or declared as i specified in my rule. is there a function or a kinda thought can work this out thank you! You can get the module from the member via: Module module = member.DeclaringType.DeclaringModule; ...Show All

  • Windows Forms locking of combo box

    Dear All, I just added a combo box in my form. I wrote the code in public frmForm1() //================== { //This call is required by the Windows Form Designer. InitializeComponent(); comoboBox1.Items.Clear(); comoboBox1.Items.Add( "USA" ); comoboBox1.Items.Add( "INDIA" ); comoboBox1.Items.Add( "UK" ); comoboBox1.SelectedIndex = 0; } than i called the load event. I would like to lock the combo box so that the user can see all the three values in combo box but will not be able to select the other items. In VB6 we generally locked the item and it solved the problem. But here I am facing a lots of problem for this in Visual Studio 2005. Can you tell me p ...Show All

  • Windows Live Developer Forums robot is offline for some users

    Hi, I've developed a robot for the contest ( secretarybot@hotmail.com ) and it appears offline for some users, though they can chat with it. I've contacted incesoft, they thought it was because of the 300 users limit but I have provisioned my bot so there should not have limits... Any idea There are any number of things that could be going on here and there are platform specific tweaks as well, but I'll take a stab at the most likely issue across platforms. Please note there are also the occasional network issues that even knock some of the Microsoft bots offline for brief periods. We're working on those issues, but here's my top thoughts for fixing your bots presence problems: Did you prov ...Show All

  • Visual Studio 2008 (Pre-release) WPF setting window location on startup

    Two part question. In WPF: 1. How do you get the screen size/resolution of the screen your app is running on 2. How does one set the initial location your main application's window on startup 1. you can use SystemParameters.PrimaryScreenWidth and SystemParameters.PrimaryScreenHeight to achieve this. 2. you can set the location of the window using Window.WindowStartupLocation property, if you wanna set the location of the window to an arbitray location, you can use the SetWindowPos WIN32 API. Sheva ...Show All

  • Visual Studio Team System How do I measure response from each server

    Using VSTS, how can I measure performance for logical divisions (response from each server) within a Transaction. In web tests, the following measurements are available: URLs Pages (top-level page plus resources like images, scripts, css) Transactions measures response time of set of requests (right-click in web test request list to add a request) Test Ed. ...Show All

  • Microsoft ISV Community Center Forums Another SendKeys

    After Derek's advice a while ago, I had the Send keys function working pefectly. However I have had some testing done on a more powerful machine and when the SendKeys functions takes off, it seems to be holding the keys to be sent so that multiple iterations appear. For example, I'm trying to send "^f81.". I've had to split this up into "^F","8",".","1" (with the Sendkeys and wait for each sendkeys line). What I end up getting is the search box comes up fine ("^F") but then in the search box I get 888888888888888888811111111111111111...... etc until it comes up with an error because the search string is too long. I've tried different variations with the SendKeys Wait value ...Show All

  • Windows Networking Development How to Enable TCPIP.SYS in kernel Mode?

    Hi, everyone, I want to set the TCPIP.SYS BootStart to zero so it can enable in kernel mode. But it's always hang or raise BOSD. if the TCPIP does not start in BootStart mode, the WSK function of WskCaptureProviderNPI with WSK_INFINITE_WAIT will blocked. I also create a system thread to call WskCaptureProviderNPI with WSK_INFINITE_WAIT, I still can not create any WSK_SOCKET if tcpip's start value as 1. Does anyone know how to deal it Under 2000/XP with TDI, tcpip bootstart to zero is OK. Thanks in adavnced. Hello Stone, Both the WSK subsystem and the TCPIP transport will eventually start as the system boots up. You can wait for the WSK subsystem to come up by calling WskCaptureProviderNPI in a thread different from the one your Dri ...Show All

  • SQL Server SQL Management Express Linked Server

    I have created a Linked Server (in Server Objects) and set the linked server options. Now I need to set the Provider Options. In help I can see the page for the Provider Options dialog but I cannot get to it. Books-on-line suggest right-click the provider name but that gets me a menu with only a "Refresh" selection. How do I get to the Provider Options (or Properties) Dialog I see registry entries for SQL Server 2000 but I cannot find the same for SQL Server 2005. I would file this issue in the Feedback Center. In Managment Stuio, open the Community menu, then click Submit Feedback. You'll be taken to a wizard that allows to search for existing issues and then file a new one if you don't ...Show All

©2008 Software Development Network