motorola's Q&A profile
SQL Server Vista IIS7 and asp.net reporting services wont deploy
I am using vista, iis7 sql server 2005 sp2, vs 2005. i first noticed that i could not deploy to the localhost server after upgrading to vista. i installed sql server sp2 and configured the iis7 using the control panel. Everything i needed to check off got loaded exept the asp.net check box in the ApplicationDevelopmentFeatures subcategory under the iis configuration section. It errored out when i clicked apply. there was no specific error just that it did not get added. Controlpanel> Programs>T urnWindowsFeaturesOnAndOff> InternetInformationServices> WorldWideWebServices> ApplicationDevelopmentFeatures> Asp.net (check box) When i click OK, afte a few minutes, i get a message: "An error has occur ...Show All
Audio and Video Development Query About page clock behaviour
Hi to all, I have a doubt about the behaviour of page when the document.load() API is called. As far as I know, whatever changes have taken place on the markup page, all gets reflected when the document.load() is called, but does it also mean that the "page clock" gets reset. In one of my scenario, I am passing the event at the -- select=//body begin="1s" dur="1s" event=foo -- and in the script, I am calling document.load(). Will the page clock gets reset everytime it encounters document.load() and so the event will get fired continuously Please clarify this doubt. Thanks in advance Azaz Hi, Thanks for the reply. But the behaviour in MS simulator is different. It does not reset the "page" cloc ...Show All
Smart Device Development problem with pInvoke
I'm developing an application for pocket pc 2003. I need to use a dll with exposed C function to connect to an external device. Edit: the framework is 2.0 System error codes and their descriptions can be found at http://msdn.microsoft.com/library/default.asp url=/library/en-us/debug/base/system_error_codes__0-499_.asp 6 is for ERROR_INVALID_HANDLE 87 is for ERROR_INVALID_PARAMETER So the error could be in the way you declared the types and invoking the function in managed code. ...Show All
Visual C++ Using C++/CLI to develop web apps
Is it possible to develop web applications using VC++ (C++/CLI) in Visual Studio 2005 Standard/Professional Editions I would guess that the answer is 'yes', but I would like to confirm. I checked out the Web Developer Express Edition, but it only includes VC#/VB. I am looking for a way to develop web apps using VC++ (C++/CLI). Thanks, Kumar Initially, it is going to be a fairly simple application: Sort of a calculator, where users would enter certain parameters and then click a button to get an answer. There may be a need for accessing a database. The second application will be a more complicated modeling/analysis engine where users would input quite a lot of information and run some complicated ...Show All
SQL Server SQL script nvarchar error
Hi, Not sure if this is the correct forum as it relates to both SQL Express and VB Express Can you help with this please: Using SQL Server Management Studio Express I can write the following SQL script which allows me to search the description column for data that contains the word "display". The declare @filter nvarchar(5) lets me set a fuzzy search level, how many characters need to match in the word. This works fine, and changing the nvarchar(5) value allows me change the number of characters that need to match. use ssop declare @filter nvarchar ( 5 ) set @filter = 'display' select stockid , description from stock where description like '%' + @filter + '%' The issue: ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Creators Club Benefits
"Both subscriptions provide aspiring game developers with access to thousands of game assets from Microsoft and key partners such as Turbo Squid Inc., as well as white papers, specialized starter kits, samples and technical product support to help turn Your World, Your Game into a reality." Am I missing something here Where can I get access to these 'specialized starter kits' and 'samples' Have I been deceived into buying this subscription If so, is there some way I can get my money back Maybe I'm missing something... ajpharrington wrote: What you mentioned is available to everyone. Where is the exclusive content There is none. The only thing the membership all ...Show All
SQL Server Missing Images in rendered HTML View
Hi, i have a report with an image on the footer. When i view the report in the designer/report manager or export to any format, everythings fine. Now i have a ASP.NET site which makes a webservice call to get HTML output from my report. in this case no image show up. The Url of the image is like that: h**p://servername/ReportServer %2fDocuments%2fGerman%2fOrder%2fOrderResponse&rs%3aFormat=HTML4.0&rs%3aImageID=ac8c4a8c-8a63-4ff9-ba74-6d6a7076a0ef When i check the HTML version of the Report Manager the url of the image is like: h**p://servername/Reports/Reserved.ReportViewerWebControl.axd ReportSession=iuwsgfikvz4ezfmd0tqmyj45&ControlID=cee4d933-5ab6-413f-8c28-4c3a2b3ff230&Culture=1031&UICulture=7&ReportStack=1 ...Show All
Visual Studio error on sr1 update
I have updated visual studio 2005 on an xp machine and am able to use sql server compact edition in my projects now. Everything works fine. I have tried to update vs 2005 on a server 2003 machine several times but it fails with the error code 0x643. Does anybody know what this is I have the same issue when I apply SP1 to VS 2005 Standard on Windows Server 2003 SBS. Do you ever try the solution in the SP1 download page "Under certain conditions when installing on Windows Server 2003 or Windows XP , a digital signature verification error can occur. Please see Knowledge base article 925336 for details and resolution" I tried it and it didn't work. Hope it is helpful to your case. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Coordinate system and matrix inconsitencies
I still don't understand the intent of not using DirectX's left handed coordinate system. I thought it made sence at first, since OpenGL uses a right handed coordinate system.It would open up for easier porting of OpenGL code and interop integration with OpenGL libraries. Now I would prefer to have things the same way as DirectX so that I can easily use libraries and code from DirectX, but that's me. I can still say that all is good and a right handed system is just fine. But then I notice that matrices in XNA use row major representation, just like DirectX and not like OpenGL's column major matrices. Now it is only a matter of the order you multiply your matrices in and it really doesn't matter which one you use as long as you know whi ...Show All
Visual Studio 2008 (Pre-release) Frame.Navigate() Problems
Greetings, I am having problems using the Frame element. I am using the Navigate(Uri) method, and am receiving a System.Net.WebException "Unable to connect to the remote server". The inner exception is a System.Net.Sockets.SocketException with the message of "An invalid argument was supplied"; native error code of '10022', and SocketErrorCode of "System.Net.Sockets.SocketError.InvalidArgument". Now the format of the url is: http://www.somedomain.com/somepath/ query1=abc&query2=def&query3=ghi I have tried navigating to http://www.google.com and the navigation works. Likewise, I have tried navigating to http://www.google.com.au/search hl=en&q=somesearch and I get a successful result. I ha ...Show All
Visual Studio Express Editions full screen media player
Is there a code to make windows media player go into full screen apart from right clicking on the player What i want to do is have a button that makes the player go into full screen is it possible is this for the embedded WMP (in other words, added the COM component in your project) if so, there is a command in the object to make it full screen, you would have to read the docs for that. I think its: theWMPObject .fullscreen = true to make it full screen. The "theWMPObject" is the object of WMP you added in your application (embedded in it) ...Show All
Windows Live Developer Forums HowTo: Click a country, click a county and detect it...
There is a nice news map here: http://muti.co.za/static/newsmapve.html They show a map of Africa, with it's countires outlined and labled. When you click within the country's borders, it diplays news for that country. Same for the states of the united states. How do you detect where the click occured AND how do you know it is within the border of a state or country -jeff They are doing it server side Jeff. If you look at the AJAX they send the lat/long you clicked: http://muti.co.za/get_news_xyz_json x=27.597656250000018&y=15.114552871944092&z=3 Follow the link to see the JSON returned. It identifies the country based on lat/long. They would be reverse geocod ...Show All
Visual Basic Ideas for a Program to Write?
Hi, Has anyone got any ideas of a VB Program that would be fairly easy for me to write. I'm new to programming and I want to get into it with an easy program instead of getting board on a hard one. Thanks i suppose the best place to start, to understand the language and get a general feel, is with some file IO problem. so possibly start writing a program that outputs to a file (either a direct path or a UNC address [F:\, \\servername\share]). once you are comfortable with that then move on to possibly reading from a Database and outputing that to a file. see what you can find to do with that, generally IO is a good place to start so you can get a feel for the environment. ...Show All
Smart Device Development Embedded Visual C++ using Visual Studio 2005 running on VISTA RC1: Linker errors
I'm using Visual Studio 2005 running on VISTA RC1 to create a simple Smart Device application. *using Embedded Visual C++(Windows CE and Platform Builder are both installed) *to access the RIL(Radio Interface Layer) of WinCE. The target device is a PPC phone (HTC with an OMAP ARM processor). I have an eVC++ source program, the RIL.h and RilClass.h headers, and Ril.lib(to import the ril functions from the ril.dll) When I 'build solution' I'm getting a ton of unresolved external symbols. I suspect that I have not sucessfully included the ril.lib into the build process, and that that is causing the unresolved externs: 'error LNK2019' and 'error LNK2001'. How do I specify that the .lib is to be used when linking my eVc++ pr ...Show All
Silverlight (formerly WPF/E) Is it unpossible that when I createFromXaml, the code can't contain x:Name?
ui.create('<Canvas x:Name="abc" MouseLeftButtonDown=desktop_win_init" MouseLeftButtonUp=ui_move_up" MouseMove=ui_move_moving"></Canvas>'); and it returns a javascript's c00cee65 error Hello, you can use x:Name in createFromXaml, but it must contain the XML namespace reference as part of it. Try using the following instead: ui.create('<Canvas x:Name="abc" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" MouseLeftButtonDown=desktop_win_init" MouseLeftButtonUp=ui_move_up" MouseMove=ui_move_moving"></Canvas>'); --Martha Test Lead, WPF/E ...Show All
