Anurodh's Q&A profile
Software Development for Windows Vista Importing cards from an old backup (RC1)
Is it any way to import cards from a backup made using RC1 It seems that the RC1 .crds files are not recognized by Card Space. Thank you Nope. There are breaking changes between RC1 and RTM. Sorry. :D g Garrett Serack | Program Manager |Federated Identity Team | Microsoft Corporation blog: http://blogs.msdn.com/garretts ...Show All
Visual Studio Express Editions A first chance exception.........
Hi i’m trying to create a simple client/server application with axwinsock component but it doesn’t run, i keep getting this: A first chance exception of type 'System.Runtime.InteropServices.COMException' occurred in AxInterop.MSWinsockLib.dll This is just a part of what i want at the end, but it doesn’t work so why i’m going to continue if someone here knows what the problem is it would be great !! thank u in advance. code (visual basic 2005 express edition) Imports MSWinsockLib.WinsockClass Public Class Form1 Dim data As String Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load End Sub Private Sub Button1_Click( ByVal ...Show All
Commerce Server Guidelines for Marketing Reports
Hello, I'm using CS2007 to serve banners on a website. I'm looking for some guidelines to provide my client advertising statistics, mostly concerning Ad Requests. I already setup a SQL Server 2005 Report Server, but i can't get any info on how to configure it to get the CS2007 banner information. Any help will be greatly apreciated. Thanks. Hello Alan, My log files are located on two different servers. I'm now processing the files locally on the Report Server and trying to automate the task. For now i have one more question: the DTS import tasks include the Datawarehouse processing on the Analysis Server, or this has to be done after the DTS execution Thanks, -- Jorge ...Show All
Visual Studio Team System is there any way to put source location infomation of types and interfaces into pdb file while building the debug version?
i've read some previous posts that indicates source location information of some code elements are not stored in the pdf file, including (but not limited to) types, interfaces, abstract methods, assemblies. so, i am wondering, is there any way to put these infomation into pdf file a compile parameter or something thanks . felix ji Maybe you are looking for a perfect solution when a less than perfect but acceptable solution would work. For example, with a Type you might not know the first line but you can get line information from the members of the Type and therefore pop Visual Studio to the lowest line number you find. Of course, partial classes complicate this and it probably won't work with in ...Show All
Visual C# Delete a directory and all its contents
Hello. I would like to delete a directory and all its contents. The problem with Directory.Delete is that the folder is not empty and the deletion cannot be completed. Any idea or suggestion Directory.Delete(@"C:\bleah", true); System.IO.Directory.Delete has a 2nd overload that acepts a 2nd parameter that specifies whether to recursively delete the contents. The documentation for this can be seen here. ...Show All
Windows Live Developer Forums The file '/veapi.ashx' does not exist.
Hello! I've been working with the Virtual Earth API and I love it! However, I've noticed that every once in a while I will receive this exception in the Global.asax: Exception Message: System.Web.HttpException: The file '/veapi.ashx' does not exist. at System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) at System.Web.UI.SimpleHandlerFactory.System.Web.IHt ...Show All
Visual Studio Express Editions Changing a URL in a webbrowser
I have this webbrowser and have the default page on it. Could i have a address bar so i type in the URL in the address bar and click go and it'll change the URL in the webbrowser But I think using both is correct - if you look at something like Internet Explorer - it has a little refresh button which sort of acts like a go button for whatever is currently typed in the URL textbox. ...Show All
Software Development for Windows Vista replacing standard activity's validation error message
Dear All, I'm looking for a way to replace a standard activity's error message. If i drop a FaultHandlerActivity on workflow, it says "Property FaultType is not set ....." What if i want in a different language Or want something else to display to end users in a re-hosted designer like "Please select a fault type" Thanks Xeon The error messages used for the out of the box activities have been localized, and the is not extensibility point for changing the error message that are used. To get the localized build of Windows Workflow Foundation for Chinese (Simplified), Chinese (Traditional), French, German, Italian, Japanese, Korean or Spanish go to http://www.microsoft.com/downloads/deta ...Show All
SQL Server How to create cumulative S-curve?
Hi I need to make two reports: one containing the Raleigh chart, the other containing a cumulative curve. In the raleigh report I do this: Per project I can see the amount of mandays on a timebase(weeks). For the s-curve (cumulative curve) this needs to happen (and I dont know how): I need to see the sum of the amount of mandays on a timebase(weeks). An example: In raleigh curve: week1 has 20md(mandays), week2 has 30md, week3 has 15md, week4 has 5md In s-curve the same values should give: week1 has 20md, week2 has 50md(30+20), week3 has 65md(50+15), week4 has 70md (65 + 5) I tried a sum of a sum but thats not allowed in RS Anyone who knows how to generate an s-curve (cumulative curve) ...Show All
SQL Server Sending SQL Mail
Hi, I am using SQL Server 2005. I have configured my email on Database Mail. when I am trying to send email using xp_sendmail I am getting problem error as: Msg 17925, Level 16, State 1, Line 0 xp_startmail: failed with mail error 0x80040111 I am using following sql statement master . dbo . xp_startmail 'myaccount' , 'mypwd' master . dbo . xp_sendmail 'tomail1@mail.co.in' , 'test' where myaccount and mypwd is my password on my email profile. 'tomail1@mail.co.in' is the destination email address.. thanks Hello; how can i send a message or q query to more than e-mail address via mssql 2005 mail server the address are in a table. thank you very much. ...Show All
Smart Device Development Can both side of menu bars popup menu items on smartphone?
I am trying to make a menubar that can popup menu items of both side.But problem occurs:when I press the softkey separately I got the same menu item popuped! That's why Is there someone have experiences about this Please help me. Thank you! Hi, Yes, it is possible. In case you are using Smartphone style menus with RCDATA/SHMENUBAR resource in rc2 file, the image here may help you understand it better. http://avinashprasad.spaces.live.com/photos/ The basic idea shall be to not to use NOMENU options on any of the buttons. And putting the appropriate submenu index from the attached menu. For example in the image attached use 1 instead of NOMENU in the first menu to show up the "Hidden" submenu for the first button. Hope this he ...Show All
Visual Studio 2008 (Pre-release) Why does ClientBase Dispose need to throw on faulted state? (Or, what's the difference between close and abort?)
Could someone enlighten me as to why calling Dispose on a faulted client proxy needs to throw an CommunicationObjectFaultedException instead of just aborting the client Essentially we have to do this: Client c = new Client(); try { c.Foo(); c.Close(); } catch (Exception) { c.Abort(); throw; } Instead of: using(Client c = new Client()) { c.Foo(); } Yes, I've read the justifications in the SDK and here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=627970&SiteID=1 but the "summary of internal discussion" seems to be "well, that's what we're doing, so deal with it." I still don't understand why Close must throw instead of just, well, closing I know I'm going to have to live with i ...Show All
Visual Studio Express Editions excel commands with c#
Does anyone know how to make a selection like "ctrl + shift + down" using C# in a Excel application I wanna get the range from the first cell until the last one with something written in it it depends how you are interacting with Excel. are you filling the values from Excel into a Dataset are you using the Excel/Office/worksheet classes are you just running a process of Excel ...Show All
Visual Basic codes to start reader
i am using the vb.net 2003 to write a rfid programme. i would like to ask lets say i have a button start reader. what codes do i put inside to startup the reader are this codes correct Private Sub startReader() Try rdr.start() 'tmrInView.Enabled = True Catch ex As Exception MsgBox(ex.Message) End Try End Sub thanks ok. so as long as i put this codes under my start button it will call my reader what about the codes to end reader how do i write it thanks ...Show All
Software Development for Windows Vista Modifying custom composite activities at design/runtime time inside of a workflow.
If I create a composite activity that inherits from SequentialActivity and has a number of other activities added to it and drop this new activity on a workflow is it possible to modify it at design time. So if one of the sub-activities I dropped on my composite activity was a sequential activity can it get modified after it is dropped on to the workflow. Basically what I want is to be able to create custom activities with certain common flows but at some point I want to be able to put a place holder in that flow to allow someone reusing my custom activity to do something custom. 2nd question related to the first. Same situation but instead of a placeholder (i.e. sequential activity) inside of this custom activity I want to use an ...Show All
