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

Software Development Network >> Todd Virlee's Q&A profile

Todd Virlee

Member List

dayrinni
darrell0101
Sinno
JR Nip
paso
ozhonetech
lucerias
cbolon
Husain Jagmag
sagittarian
James Lucoff
a0-0b
AlexBB
roisaonua
Beyond Blue
Daveyc
Nitasha
Zapp
ClarkMN
Sankar28
Only Title

Todd Virlee's Q&A profile

  • Visual Studio Express Editions Edit and Continue don't work?

    HI guys a have been working in some code all this week and for some reason that I don't know the edit and continue stop working. It have been working all this time but now no way. I can't edit when I'm debbugin and I'm getting frustated. Can some one help me I have VB.net express edition, so i don't know where to configure this feature. When I click the start button to launch the application with debug mode VB.Net 2005 looks the files. I see a lock picture in the tabs of the code files in the window. A chek the project file it's not marked as read only, then when I launch debug (the start button), I go to the file and the file is marked as read only, when I stop the debug mode the file stay marked as read o ...Show All

  • SQL Server Can't get Instanses of the Report Server through WMI using Non-Administrators access

    I'm trying to conncet to Report Server with Non-Administrator user through WMI in compliance with this document: http://msdn2.microsoft.com/en-us/library/ms365170.aspx When I try to get Instances from MSReportServer_Instance class I get an exception: In my C# project i have an exception: System.Runtime.InteropServices.COMException (0x8000000A) at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext() But, when I give the account Domain Administrators rights all works ok. What additional rights must I give to the account ...Show All

  • Windows Live Developer Forums Lack of precision when creating pushpins

    Hi, i just noticed, VE lacks precision concerning the lat lon values: pin= new VEPushpin(2, new VELatLong(54.9077601637691,8.31008861772716), "images/Bahnh”fe.gif" , 'Bahnhof Sylt' , '' );map.AddPushpin(pin); pin= new VEPushpin(3, new VELatLong(54.90776016376916754474),8.31008861772716654674), "images/Bahnh”fe.gif" , 'Bahnhof Sylt' , '' );map.AddPushpin(pin); both pins result in the same coordinates, 54.90776016376916754474 ^ the 7 is the last number VE interprets, the rest is cut off. Experiments with parseFloat didnt succeed either. Any ideas no, VE doesnt call a Mappoint Webservice Backend, but, calls its VEValidator.ValidateFloat(x); this function then just ...Show All

  • SQL Server Edited Maintenance Plan will not save

    I am having a problem saving a Maintenance Plan (MP) after I edit it. For example I have a plan for all user databases and it works just fine. I have added a new database to the instance and want it included in the MP, but when I go to save it I get an error 'No description found'. I also get this same error when I try to manually create a MP, but if I use the wizard all goes well. Specs: Microsoft SQL Server Management Studio 9.00.2047.00 Microsoft Analysis Services Client Tools 2005.090.2047.00 Microsoft Data Access Components (MDAC) 2000.085.1117.00 (xpsp_sp2_rtm.040803-2158) Microsoft MSXML 2.6 3.0 4.0 5.0 6.0 Microsoft Internet Explorer 6.0.2900.2180 Microsoft .NET Framework 2.0.50727.42 Operating System 5.1.260 ...Show All

  • .NET Development ProcessStartInfo to execute vb script with certain user

    I tried to use ProcessStartInfo to execute a vb script with certain user name. My Code: --------- ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = fileName; psi.UserName = userName; psi.Password = password; psi.Domain = domain; psi.UseShellExecute = true; Process.Start(psi); The Problem: ---------------- When I set UseShellExecute to true --> the error is "The Process object must have the UseShellExecute property set to false in order to start a process as a user." When I set UseShellExecute to false --> the error is "The specified executable is not a valid Win32 application." Any Help please Bishoy I discovered the runas command in command p ...Show All

  • Visual C++ Problem with CHttpFile::SendRequest() within CWinApp::InitInstance() with IE7 DLLs

    I have a DLL that was working fine until I switched to IE7. Debugging through it, the code would hang at a call to CHttpFile::SendRequest() within CWinApp::InitInstance() . Removing the code and putting it in another function outside the initialization sequence solved the issue, but any insight into the problem would be greatly appreciated. thanks, Chuck Hi Chuck, happy to here that you already solved this issue. Since the visual c++ language forum is dedicated to language specific questions so that post your question here makes you less likely to have further discussion regarding the insight into the problem. I would like to recommend you to find a appropriate discussion group in the list here to h ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Best way to create a Glowing Dot?

    I am currently writing a 2D game but am also interested in the 3D method for trying to create a Glowing Dot on screen. Thinking like Sci-fi flick type motion detector looking things (Tracking devices in Aliens anyone !) Is the best way a Animated texture or can shaders help (P.S Shaders are on my todo lit to learn!) Help Appreciated Darkside If you're looking for a "pulsating" type effect, you could probably get away with cycling the opacity of the sprite. In addition, It might enhance the effect if your "dot" sprite had an apha channel, 100% opaque in the center, but semi-transparent on the edges. As the time passes between redraws, the blips on radar would begin to dim. This is kinda how thos ...Show All

  • .NET Development Asp.Net caching bug?

    I have got the following problem when trying to use Response.Cache.AddValidationCallback method in ASP.NET 2.0. It seems that when using HttpValidationStatus.IgnoreThisRequest option the cached page is actually invalidated and the most recent version is cached. Could anyone please explain this ( an advice from a member of ASP.NET team will be really appreciated), if it's a bug or the intended behaviour in ASP.NET 2.0. As written in MSDN documentation for the IgnoreThisRequest option (HttpValidationStatus enum): "IgnoreThisRequest - Indicates that the request is treated as a cache miss and the page is executed. The cache is not invalidated . " ...Show All

  • SQL Server Documentation of RMO and Merge Replication

    Hi there, In a lot of the Replication documentation it only refers to the merge agent operating in the context of a push or a pull configuration. i.e. if it is push then the merge agent is at the distributor but if it is a pull then the merge agent functions at the subscriber. I recently joined a project which is configured as a push but it uses RMO for synchronisation. This RMO application is installed on a compeletely separate server. Initially I thought the RMO was just passing requests through to the publisher/distributor/subscriber but the distributor didn't seem to be doing any of the work. It therefore seems that the merging/synchronisation is being performed on this RMO application server and not the distributor or subscriber ...Show All

  • Visual Studio Changing Server for Implementation

    Help me please ... I have been searching the internet for a week for a solution to this and the boss's patience is wearing very thin..... I have a very simple application producing a set of reports based on an SQL database. Everything works fine, the users like the layout, the info is spot on, the works... BUT..... When I have tried to install on the user machines, the application runs perfectly, but before producing the report, it pops up a box showing the development server name. If the correct server name is substituted for the development one, the report appears, correct in all aspects. How do I change the server that the application attempts to access when live . I have tried changing the SetDatabaseLogon para ...Show All

  • Windows Forms Table or DatGrid...

    hi.. In my application on a form , I want to list some paramter values as old & new. User entered values should be there in new column. But in c# we can use 'table' & 'DatGrid' for this. So which one is better for my application as i want user to enter those parameter values in a perticuler range only. Can i give dropdown combobox in table or datagrid so that user can select with only values given in that combobox. Can i do it with both Datgrid & table. Can any body give me any good document to do this using datagrid/table in c#. Thanks in adavance, Vinay Thanks for your reply, Can i insert DropDown combobox in table or datagrid...& if yes how to use it... Can u give ...Show All

  • SQL Server Developing Thirty Party Controls for RS2005

    I want to develop a new report control or extend the existing textbox control in RS2005. Is there any documentation or examples on how to do this Thanks, Check out Teo Lachev's recent MSDN article on the CustomReportItem feature of RS 2005: http://msdn.microsoft.com/msdnmag/issues/06/10/SQLServer2005/default.aspx -- Robert ...Show All

  • .NET Development GAC references

    I thought there was a way at runtime or development that a web application could use GAC'ed assemblies without referencing them in the web.config or machine.config I have 3 developers that are adding GAC'ed references to their projects and the 2005 IDE is putting references in their web.configs automatically. I don't remember this happening with 2003. I'm telling them to remove the web.config references, but then their having problems at run time. ...Show All

  • Visual Basic SQL DATA ADDING SHOWS TIMEDOUT EXPIRED

    WHEN I ADD SQL DATA BASE FROM ADD NEW ITEM AN ERROR COMES :- TIMEDOUT EXPIRED.TIMED OUT PERIOD ELAPSES PRIOR TO COMPLITION OF OPERATION OR THE SERVER IS NOT RESPONDING PLEASE HELP ME TO CONNECT TO SQL SERVER 2005 FROM MY VB EXPRESS ...Show All

  • Smart Device Development Web Service Client

    I need to write a webservice client for smart devices, Just wanted to know the options to choose from (both native and Managed) for devices. Does any body have implemented native webservice consumers for devices. I dont see any postings in this forums Thanks Srikanth B ...Show All

©2008 Software Development Network