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

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

RameezM

Member List

Vladimir Chtepa
Sergei Dorogin
Bradley Reynolds
wadnerk
Sek360
canadian_coder
porkpiehat
Alex-MyRpg
Sean D Wright
Walter Beach
Martin Bennedik
mrP
Stéphane Beauchemin
Hooper
Aleksandr Tokarev
LuisGarcia
David Searles
Mike Hadlow
vasudupe
GoDaddy
Only Title

RameezM's Q&A profile

  • Visual Studio error starting visual studio.net 2003

    I am a student at a sydney college. I have installed visual studio 2003 and when I try to create a new asp.net web app project - I get the followig message "Your webserver is not running asp .net version 1.1" . Can anyone giv me advice on how to resolve this issue Have you since installed the .net framework 2.0. Or is your webserver on a separate machine I have seen when iis isn't setup correctly to handle .net web applications, and need to run a exe that comes with the framework. on the command line try the following: C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i ...Show All

  • Visual C++ Runtime library support for TZ with dates of beginning and ending of daylight savings time

    In 2007, the dates at which daylight savings time will begin and end in the USA will change. Several Unix compilers support information in the TZ environment variable that indicates the dates at which DST begins and ends. The Microsoft C compiler documentation does not mention support for this information. Although the Microsoft web site includes an announcement that Microsoft will ship updates to Windows to support the new daylight savings time dates, I can find no mention of any change to the Microsoft compilers' runtime libraries to support the new dates. Does anyone know if Microsoft plans to ship updates to the runtime libraries to support the DST date information in the TZ environment variable Or, will the existing runtime li ...Show All

  • Windows Forms Deploying to Program Files

    Hi, I am using C# 2005 Express edition and I cant select a directory I want my application to install into. I would like to deploy into program files. The Publish wizard works fine, and I can distribute my applicaiton, but I dont know where it installs into. I cant see an exe file anywhere on the computer I deployed on, yet my app works.. Is there more deployment options in the full version of C# 2005 that i need Frank Carr wrote: Here's another little quirk you may encounter related to this. My.Computer.FileSystem.SpecialDirectories.AllUsersApplicationData does not return the actual "All Users" data area but a data area in the cache. You'll need to use Environment.SpecialFolder.CommonApplicationData to g ...Show All

  • Windows Forms WebBrowser Control not allowing active content w/out approval

    Hi, I have a windows form with a webbrowser control that loads an html page with an embedded activex control. On both my development machine and client test machine I am running XP SP2 w/IE7 and I have the IE7 advanced options set to allow active content to run in files on my computer. On the development machine I get no information bar warning in IE7 or my webbrowser control. However, on the client test machine I get the warning message below even though when I load the page in IE7 I get no warning. "To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer. Click here for options." Any insight into this would be appreciated. As far as I can ...Show All

  • Visual Studio sp1 for visual studio 2005

    I've installed the evaluation of the visual studio 2005 pro. Now I'm going to do something for which I need to have sp1. How do I know whether I already have it, or need to install it. Thanks You can find out if you have VS 2005 SP1 installed in several different ways: Go to Add/Remove Programs, check the Show Updates box and look for an item under your Microsoft Visual Studio 2005 entry named Microsoft Visual Studio 2005 Service Pack 1 (KB926601) Go to Help | About Microsoft Visual Studio in the VS IDE and look for an item named Microsoft Visual Studio 2005 Service Pack 1 (KB926601) Visit Microsoft Update and have it search for updates to see if VS 2005 SP1 is offered to you. You must be opted in to receive updates fo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Simple Game

    I can't wait until tomorrow. I have a idea for a hope a simple game which I believe could be a really addictive live game. I know I can't do multiplayer so I'll will be working on the single player game. I have no programming experience shock horror. So here it is. Im assuming this is going to be 'click and play' and then program something like Gamemaker. Will it be easy to swap a characters charistics ie basically swapping from one type of thing into another. I don't want to give too much away! I really do think this could not be acually ground breaker but really addictive. There isn't another game of its type out at the moment. I dreamt about it last night :) The Pro version of Game Studio ...Show All

  • Visual Studio Team System Load test with Unit Test

    Facing the error when trying to run the load test. Error Description :Error LoadTest1 TestProject1 (Computer Name) Could not access the load test results repository: The number of rows inserted or updated by an operation on the results repository (1) did not match the expected number (-1) . Tried setting up the store repository using SQLCMD /S localhost\sqlexpress /i loadtestresultsrepository.sql as I am using the Sql Express. Provided the correct connection string using the "Administer test Controller" yet not able to run the Load test. Help on this highly appreciated. Thanks, Mazzie Can you email me a copy of the .loadtest file you are using when this error occurs as well as t ...Show All

  • SQL Server Out of memory while querying causes wrong data to be returned

    Running AS 2000, SP4. A couple of times while querying a cube, one member has got the wrong data displayad (the value are to low). No matter if I reload the query afterwards, restarting the query application etc, the same faulty value still gets displayed for that member. After I restart analysis services the value is correct again. No other changes, exact the same query etc. While analysing the event viewer I see that analysises services has run out of memory before this strange behaviour (MSSQLServerOLAPService - "The server is out of memory"). Could this out-of-memory error has caused the wrong value to be returned, and the somehow the value has got cached on the analysis server so it's not fixed until the server has restarte ...Show All

  • .NET Development Add SSL WebService Reference to VS.NET Project

    When i try add web reference to ssl webservice. the error 403 appear . How can i add reference to SSL webservice the error print screen attached . maxmoore14 wrote: You are write, I found out the site requires certain parameters to be passed in both the header and as an XML payload. I have since worked around the problem by writing my own proxy classes. But for future reference, is there any way to have VS pass parameters to the service in order to auto-create the proxy class It depends on the service; but, if the service adds SOAP header extensions, the generated SoapHttpClientProtocol-based class usually adds a property to enable population of the data for that extension. For ex ...Show All

  • Visual Studio 2008 (Pre-release) Command and disable MenuItem

    Can a Command manipulate the Enable Property of a UserControl. For example disable a MenuItem if it's command can't execute   The usual way to do this is with command bindings that specify a handler for CanExecute on the same element that handles the command. < Window.CommandBindings >   < CommandBinding Command = " ApplicationCommands.Undo "     Executed = " Command_Undo "     CanExecute = " Command_CanUndo " /> ... </Window.CommandBindings> private void Command_CanUndo( object sender, CanExecuteRoutedEventArgs args) {    args.CanExecute = undoEngine.CanUndo;    args.Handled = true ; } This ...Show All

  • SQL Server Unable to get return value from stored procedure

    Hi everyone I am trying something that should be so simple but I cant get it to work. I am calling a stored procedure to lock a table and update a counter. I have tried to follow the exact code use in the MSDN examples but it doesnt work and always returns VT_EMPTY. It also returns a closed recordset so attempting to close it fails. The database is updated correctly and there are no exceptions just no return value. Here is the stored procedure CREATE PROCEDURE GETMODELID AS DECLARE @i INT BEGIN TRANSACTION  SET @i=(SELECT ModelID from tblModelID WITH (HOLDLOCK,TABLOCKX))+1  UPDATE tblModelID SET ModelID = @i COMMIT TRANSACTION RETURN @i GO Here is the ADO written in C++. TDatabase DB; try { if(DB.Open()= ...Show All

  • Visual Studio 2008 (Pre-release) Bug in command

    The doc says that the default target for commands is the element that has the focus. However, in the following example, the button without an explicit CommandTarget is always disabled. Is this a bug <StackPanel> <!--this is always disabled--> <Button Command="{x:Static ApplicationCommands.Cut}" Content="Cut"/> <!--this is always enabled when there is a selection in the text box--> <Button Command="{x:Static ApplicationCommands.Cut}" Content="Cut" CommandTarget ="{Binding ElementName=foo} "/> <TextBox Name="foo"></TextBox > </StackPanel> Cheers Thanks!!! Setting FocusManager.IsFocusScope t ...Show All

  • Visual C++ How do you implement an Event Sink without a Type Library?

    Hi, How does one go about implementing an event sink (in CLI C++) for a COM object that supports the IConnectionPoint interface without access to it's type library. In essence, how can it be done late-bound at runtime Thanks!   CodeLogic wrote: Hi, How does one go about implementing an event sink (in CLI C++) for a COM object that supports the IConnectionPoint interface without access to it's type library. In essence, how can it be done late-bound at runtime Thanks!   Event handling from late-bound COM objects canb be a bit tedious. Are you sure you wan't to do this It was easy to do in C# , translating it to C++/CLI was a bit difficult   and I nearly g ...Show All

  • Smart Device Development Control IR Port LED Directly

    I'm looking for a way to turn the IR port LED on and off directly. I can do this indirectly by initiating an IRDA request, but I need finer control than that. Thanks for any tips. Hi, This forum is primarily monitored by Visual Studio for devices group. Please check this link for more appropriate forum for this type of queries. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=286724&SiteID=1 Thanks Srikanth Bogadapati. ...Show All

  • Visual C++ Napster Visual C++ Runtime Error

    When starting Napster I now get an Error that says Microsoft Visual C++ Runtime Library Runtime Error Program E:\Program Files\Napster.exe The application has requester Napster to terminate in an unusual way. I have contacted Napster and re-installed it along with updating Media Player 10 and in line with other mentions on these forums I have deleted Google toolbar and Mozilla Firefox. I have AVG free and Zone Alarm as firewall and antivirus and i am running XP student with SP2. I have also deleted DivX video software and Itunes and run spyware tools, MS update and Ccleaner. I still get the above error. Can anybody suggest what has happened or what I may do to get Napster working again. Thanks Tony ...Show All

©2008 Software Development Network