Software Development Network Logo
  • Visual FoxPro
  • VS Team System
  • Windows Vista
  • Visual J#
  • .NET Development
  • Architecture
  • VS Express Editions
  • Windows Live
  • Smart Device
  • SQL Server
  • Visual C++
  • Game Technologies
  • Windows Forms
  • Visual C#
  • Visual Basic

Software Development Network >> Adarsh Sridhar's Q&A profile

Adarsh Sridhar

Member List

Skimpstar
Will Walter
FrankyLi
Sichbo
Tyler Frugia
CCamp
Lapin_Agile
Clumsi
Zafar Ullah
JO91
Mshorema
PhilMatt
Ripsin
Xtreme Developer
Divyesh Shah
James Emydex
oloko_rj
DavidC#2005
Dancer
miketravers
Only Title

Adarsh Sridhar's Q&A profile

  • Smart Device Development Using Pocket PC Phone as modem from within device application.

    I have a Pocket PC Phone running Windows Mobile 2003 Second Edition (Sprint PCS PPC6601) and I would like to know if there is a way to access the modem functionality built into the phone from within a .Net Compact Framework application running on the phone. I would like to be able to dial out and receive regular data calls from this application. Notice that I am not trying to connect to the Internet or any other TCP/IP network. Any help would be greatly appreciated! You won't have much luck estabilishing this type of connection with your device. What you're after is something called a "circuit-switched ...Show All

  • Visual Basic Crystal Report is not showing reports

    hello, i have designed a one page addressbook with one data table. i took one crystalreport and with crystal report viewer i have set it in form. now when i am playing program report form starts but there is no data at all. thanks. hi, CrystalReports are not supported in express edition but i saw a suggestion to turn around that http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=312899&SiteID=1 i didn't try it myself you said page is this a webform if so you can ask in http://forums.asp.net hope this helps ...Show All

  • Visual Studio Team System subscribe an event using the API

    Hi, Can any one please pass the code how to subscribe an event using the API. I couldnt find any example of this issue. Thanks in advance, Shmulik. The API you are looking for is in the Microsoft.TeamFoundation.Server namespace in the Microsoft.TeamFoundation.Common assembly. The interface that allows you to manipulate subscriptions is IEventService. You would do something like this: using System; using Microsoft.TeamFoundation.Client; using Microsoft.TeamFoundation.Server; namespace SubscriptionTest { class Program { static void Main( string [] ar ...Show All

  • Smart Device Development Cradle emulator

    Can anyone tell me how to cradle Windows Mobile 5.0 Pocket PC Emulator please Inside VS.NET 2005, I go to Tool->Device Emulator Manager->(Right click on the emulator)->Cradle, nothing happened.  I am using ActiveSync 4.1. Any responses are appreciated.   In the activesync connection settings, check the "Allow connections to one of the following" checkbox and select from the combo-box below that "DMA". Then try to cradle emulator from Device Emulator manager. Hope this helps. -Thanks, Mohit ...Show All

  • Visual FoxPro Need help Database trigger

    Hi    I have been tasked to convert an old Clipper app to Foxpro Ver 9.0. The old software has 2 fields in all the databases one called ChangedOn and one called DeletedOn. These fields hold the date,time,computer name, and login name of the machine and user. These fields were updated anytime a record was changed or marked for deletion.   I would like to use the database triggers to update these fields because of the numerous places in the app that modify or delete records. I have created a procedure to modify this field in the record but I get an error that the cursor is read only. I am not sure what I am doing wrong. I would ...Show All

  • Visual C# ?? What Does 'Strongly Typed' xxx Mean ???

    Hi again everyone, I'm sorry for two questions in one day but this has been on my mind for a long time. I understand what it means for C# to be a strongly typed language but I often read about one object or another being strongly typed. A good example is the documentation for System.Windows.Forms.Binding, which refers to: A strongly typed IList of strongly typed objects I have also heard this term ( strongly typed ) when referring to ADO.NET objects. What does it mean for an object to be strongly typed and also, what does it mean if an object is not strongly typed Thanks again. When ...Show All

  • Smart Device Development Turn off NE2000 confirmation prompt

    Howdy all you experts! Listen, I got the device emulator set up on a stand alone machine (no VS), and also installed Virtual PC 2004. I am now getting full network connectivity (yeah!) but I do not like the prompt that comes up when I start my session. It says "Do you want to enable emulation of NE2000 network card This will allow code running inside the emulator to have access to this network." Nitpicky, huh :-) Is there any way to get it to not ask this question, or is there a switch I can add to my command line that will silently answer it Thanks! -RandyB Please use /nosecuritypromp ...Show All

  • Visual Basic ActiveX Web Browser - Is this possible?

    I was wondering if someone could tell me if the following is possible, and perhaps set me on the right track: Create an ActiveX Web Browser on a form, navigate to a certain page, programatically click links on said page, programatically manipulate a drop-down box on the page, programatically click a button on the page, capture the pop-up web browser which comes up and parse the data from that browser. I would be most grateful for any help I might receive on this matter. Thank you for your attention. Michael Blaustein   Hello, I believe that it is possibe to get logged in to a website using VB6 Interf ...Show All

  • SQL Server Backup and Restore Databases Through XML in SQL Express 2005

    Can we backup to XML file and restore from XML file in SQL Express 2005 Thanks in advance. Please read articles about BACKUP and RESTORE in SQL Server 2005 Books Online. Also, take a look at "Backing Up and Restoring Databases" article. Best regards, Eugene Kogan, Technical Lead, SQL Server Engine --------------------------- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

  • Visual Studio Tools for Office Outlook 2003 VSTO error

    I've been creating an Outlook 2003 Add-In using VS 2005 and VSTO 2005. I've recently come into a glitch that I cannot find any information about and was wondering if any of you had any information on it. The same error happens on the Visual Studio 2005 Tools for Office Sample: Outlook Business Contact Assistant Sample, so I know that it isn't just my code. (link at bottom) Problem: When I build and install the Add-In using the auto created setup file (msi) the dll gives an error and never loads. In fact you have to go to the COM Add-Ins and add it in to see the error. The error is "C:\Program Files\Microsoft\BusinessCon ...Show All

  • Visual FoxPro MyEditor (Edit Control) Validation in VFP-9: STOPPING Menus, etc?

    I'm trying to *stay within myEdit control(s)* until *pProcessing* is finished. I seek *better ways*, per se, from any of you (besides making the form(s) modal). Here are some of my awkward (non-bulletproof) workarounds. In myEditor.VALID ... If pProcessing This.SetFocus * Return .F. Endif To STOP Menus... In _msysmenu: set skip for pProcessing (for every menu bar()... ) OR SET SYSMENU SAVE SET SYSMENU TO ...when pProcessing is finished SET SYSMENU TO DEFAULT (I'd prefer to make _MSYSMENU/SYSMENU just *freeze* ... in a modal (myForm.windowtype=1) manner and not have it *blink* off and on ) To prevent oApp.oToolbar... If pProcessing oA ...Show All

  • Visual Studio Team System How do you extract a parameter from a url in a redirect?

    How do you extract a parameter from a url in a redirect   When I record steps how do I get at the body of the redirect response Hey mfitz, How did you use the LastResponse properties to solve this problem Is the code looks like the follows: yeild return request1; string redirectUrl = this .LastResponse.Headers[ "Location" ]; myParemeter = redirectUrl.tostring(xx, xx); I tried the code like the above. But the redicrectUrl turned out to be "null". ...Show All

  • .NET Development NullReferenceException from System.dll using Release rather than Debug

    I am having a problem obtaining a NullReferenceException in system.dll when I execute my program compiled in Release configuration rather than Debug configuration. The program runs fine when compiled in Debug, but issues the exception window and continues to execute when compiled in Release. I am using C++ 2005 Express with .NET 2.0 I wish I could, but the environemnt gave me little to go on but a full dump - not stack trace. Believe it or not, it stopped happening, so I guess there is no problem. I am unsure what I did to fix it. I guess it's just one of "those" kind of problems. ...Show All

  • Visual Studio Tools for Office VSTO Solution is not running on client's PC

    Office application was deployed using Studio publish wizard to the network share. Development Worstation can succesfully run office appllication from the network share. according to the Guide lines in the MSDN library i have client's workstation prepared for the deployment PIA, Office tools runtime. .NET Security was deployed from development workstation. When i'm trying to open Excel template on client's workstation it opens document without any code running and no messages are displayed. Any idea how to approach troubleshooting Thank you Maxim Hello Maxim, You are correct. To run VS ...Show All

  • Visual Studio 2008 (Pre-release) Window Icon Propery no longer working

    In the Feb CTP I could just set the icon like this < Window Icon = " Resources\\Images\\ image .png " > However thsi doesn't work in Beta 2. Instead I get a runtime error FatalExecutionEngineError was detected Message: The runtime has encountered a fatal error. The address of the error was at 0x7f570c2b, on thread 0x120c. The error code is 0xc0000005. This error may be a bug in the CLR or in the unsafe or non-verifiable portions of user code. Common sources of this bug include user marshaling errors for COM-interop or PInvoke, which may corrupt the stack. ...Show All

©2008 Software Development Network