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

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

Whoisit

Member List

Jonathan MacCollum
EwenTweedie
Ivanf1
Ross Watson
Alex Rich
bonni
sjsn
Lilach
Klaus Aschenbrenner
sangeetha shanmugam
wendling lionel
Zadoras
B.J.
WpfUser
tgbt
AlexBB
hong2007
Victor Chacon
Leonid.
rlaws
Only Title

Whoisit's Q&A profile

  • Smart Device Development SpellCheck in TextBox

    Is there any API/functionality to implement the SpellCheck feature in the TextBox .. ...Show All

  • Smart Device Development restart after installation

    hello, i m newbie. i have develop the cab file from smart device cab project. what i want is that when i complete my installation. the mobile will reboot as like normal installer. because i have paste the exe in the windows startup on time of cab creation. and that exe will run my other background services(exe). so how after installation through cab i want to restart the device. how i manage it device is imate sp5m, and C++.2005 for development. Thanks in advance Regards Salman And how to soft reset programmatically: http://www.pocketpcdn.com/articles/softreset.html ...Show All

  • .NET Development How do I alter HTTP response?

    Hi I am receiving xml (HTTP Response) from the server. I am capturing this message in the text box in xml format. My question is how do I read the below nodes and alter this message and send them back to the server as new request. From < Class > IR-LTR </ Class > < Qualifier > acknowledgement </ Qualifier > < Function > submit </ Function > To < Class > LTR </ Class > < Qualifier > poll </ Qualifier > < Function > process </ Function > The below is the Xml Replied from the server < xml version="1.0" > - < TalkMessage xmlns = h ...Show All

  • .NET Development change App.config

    In my c# desktop application i want to change key in my app.config file at runtime. How can i change this value in runtime Regrads Hari Hello All. harikrk: If these are settings that you are changing at runtime, then you should use user-scoped settings, since the procedures for reading and writing them at runtime are very straightforward and easy to use. Besides, if it is a setting that changes at runtime, wouldn't you want to keep track of which user made which changes It is possible to change application-scoped settings at runtime, but it is a REAL pain in the neck!! Tell us what kind of app you are developing (Windows or Console) and I will walk you through the process of reading and writi ...Show All

  • Software Development for Windows Vista DirectShow replacement on the way for DirectX?

    According to this site near the bottom, it suggests that DirectShow is going to have a replacement for the DirectX SDK. Is this in the works still http://www.toymaker.info/Games/html/gdce_-_xna.html DirectShow is no longer considered to be part of DirectX. It was moved out of that SDK and into the platform SDK. While it may be that they will collect DirectShow and the other dozen or so a/v technologies into some type of media sdk (which is what I read that article to say), I have no reason to believe that they will. And I have no information regarding any replacement for DirectShow any time in the near future. ...Show All

  • Visual Studio Using a 3rd party Chart control with Crystal Reports

    Hi All, Is it possible to embed a 3rd party chart control such as . netCHARTING in a crystal reports report. VS 2005 Version or full blown version.... I want to create charts using .netCharting and then drop those charts in a crystal report. If it's possible, then how can I do it Thanks, Andy hi, i think it is not possible to integrate both crystal reports and .netcharting together but u can do one thing make two containers in one web or windows forms one with .netcharting near by make the other container with crystal reports that will be better thing, i don't know why you going for third party tool the crystal report itself contains the chating option then why u shifting to third party tool the other way yo ...Show All

  • .NET Development Combining Images

    Hi there, My problem is this: I have two images, one an RGB image and one a greyscale image. I want to combine the images using the greyscale image as an alpha channel for the RGB image. How can I combine these images like this Thanx for ur help Here's how I did it using LockBits. That's for the point in the right direction Alex. This took me a little bit of heartache though so I figured I'd try and save the next guy the trouble. Sorry for bumpin such an old thread too. Code Block public static bool Alpha(Bitmap b, Bitmap s, Bitmap a) { BitmapData bmData = b.LockBits(new Rectangle(0, 0, b.Width, b.Height), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb); BitmapData ...Show All

  • SQL Server Problem with &

    Hai Iam using asp.net 2.0 with sql server 2005 as back end.. i need to pass the data to stored procedure via parameter containg (&) symbol for ex: If i pass string like "sample&ss" it gives the error xml parsing how to avoid this..welcome for your suggestion. Regards Senthil If the error is in parsing XML try this: "sample&amp;ss" '&' is a special character in XML, and if you catually want to use it you need to represent it as &amp; ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. access violation when loading a sprite

    currently i'm creating a menu using sprites as the buttons, and i can happily load and run the program using two sprites, however, the second i try to add a third sprite, i get the following error: 0xC0000005: Access violation reading location 0x00000000. this is caused by the first line in this little block: g_pcursor->Begin( D3DXSPRITE_ALPHABLEND ); g_pcursor->Draw( g_pStartTexture, &cursorRect, &vCCenter, &vC_Position, D3DCOLOR_COLORVALUE(1.0f,1.0f,1.0f,1.0) ); g_pcursor->End(); it's worth noting that g_pcursor is declaired thus: LPD3DXSPRITE g_pcursor = NULL; which is identical to the two other sprites, and the data is all the same (cursorRect, for example is declaired in exactly t ...Show All

  • Visual C++ Visble Clip bounds in a Graphics object

    I have created a Graphics object using Graphics(HDC *hdc) constructor. In this case how does the graphics object knows about the Visible region of the window. It does knows that other wise how does it can implement GetVisibleClipBounds function. In my case if after the creation of the Graphics object the window is resized i.e. the visible region is changed, anything drawn on the new found area is not actually drawn. As far as i can see the visible region is not getting updated in the Graphics object, can anyone help me with this. Will appreciate it Samit But that won't serve my purpose, i want to update the visible region info present inside the Graphics object. Another thing is why isn't it getting aut ...Show All

  • SQL Server Quick question on VB

    Hey folks, I am trying to run a batchfile or a external process ( exe ) from within a Script Task and read the process status returned by the process. Is there a sample VB script code that does this that you guys can share What modules do I have to Import Thanks -chiraj This should do the trick. To test this, create a batch file in C:\temp called test.bat. Simply put "foobar" or something invalid in the batch file to create an errorlevel. Copy the code into a script task, run the package. It will show you the errorlevel in a message box. Imports System Imports System.Data Imports System.Math Imports System.Windows.Forms Imports Microsoft.SqlServer.Dts.Runti ...Show All

  • .NET Development manual IL code fails verification with "unable to resolve token"

    Hi, I'm trying to write a (naive concept test) script that adds a prologue & epilogue to methods. It modifies the output of ildasm on an assembly to create a new IL file which I in turn compile with ilasm. It works by adding the following lines to the begining of every method: call class [Reflex]Reflex.ReflexWriter [Reflex]Reflex.ReflexWriter::get_Instance() callvirt instance void [Reflex]Reflex.ReflexWriter::Enter() It works on very simple assemblies I compiled with C#. To challenge my naive idea, I tried running it on the fxcop executable. The executable compiled but peverify fails with many similar errors, I copied the first one here: [IL]: Error: [D:\Program Files\Microsoft FxCop 1.35\FxCopy_trac ...Show All

  • Visual Studio Team System Unit testing woes...

    We had something interesting happen to us that we have no idea how to fix and can't seem to find any documentation on as it was working just fine a week ago. Our build process is presently failing with following error on 116 unit test: The web site could not be configured correctly; getting ASP.NET process information failed. Requesting 'http://localhost/VSEnterpriseHelper.axd' returned an error: The remote server returned an error: (510). About that HTTP 510 error there at the end, it's the status value we use to indicate that something has go wrong within our framework. In this case, we're saying that we were unable to find the content requested to serve, much like a 404. So we're not sure what the error means (Is that a web ...Show All

  • Visual Studio Testing an Itemgroup in a Propertygroup Condition

    Hi, Is it possible to test an element within an itemgroup from a property group I tried but its not evaluating and I know my systax is right there is no errors during a build. e.g. < ItemGroup > < ConfigurationToBuild Include = " Release|Any CPU " > < FlavorToBuild > Release </ FlavorToBuild > < PlatformToBuild > Any CPU </ PlatformToBuild > </ ConfigurationToBuild > </ ItemGroup > < PropertyGroup Condition = " '$(ConfigurationToBuild.FlavorToBuild)'=='Debug' " > < DeploymentServer > Radon </ DeploymentServer > < DeploymentSharePath > DeploymentTargetDEV </ DeploymentSharePath > & ...Show All

  • Smart Device Development two-state icons on Windows Mobile 5.0 start menu (grid view)

    Some shortcuts on the start menu of a Windows Mobile 5.0 Smartphone show a different icon when they're selected. The Messaging icon shows the slip of paper poking out of the envelope, for example. Has anyone managed to recreate this with their own applications, and if so, how Is there a convention for how the icons have to be ordered in the .rc file or is there a naming convention Is there a URL talking about this in MSDN Thanks in advance, Matt Thanks for the reply Matt. That page is sort of a great example of why I asked the question - it doesn't mention the " <full path of icon or DLL file containing icon>,<index of icon>" bit at all, so does that mean it's an undocume ...Show All

©2008 Software Development Network