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

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

TalhaAziz

Member List

Thomas Ivarsson
Bruce Bukovics
InquiringMinds
peteyy
domukajoor
Carl355
A.Russell
MarcGBeauchamp
MattFletcher
Infinite Entropy
XNA Rockstar
Bertrand Caillet
Marius Matioc
The VB
pdns
liujj_xujj
dannyg_uk
zdrae
Matt Neerincx
paquito
Only Title

TalhaAziz's Q&A profile

  • Windows Forms how to check for data change in a datagridview

    how can I check to see if a user has changed a cell in a datagridview well firstly, if you bind a dataset to a datagridview then the dataset will be updated automatically. you can see if the dataset has changes (theDataSet.HasChanges()) or you can get changes: Dim theChanges as new DataSet() = theDataSet.GetChanges()   this will return you the changes that the user has made in the first datatable I believe. does this help you you could also implement a CellBeginEdit event for the datagridview. This will fire when the user starts to edit that cell but I don't think it will fire when the user actually starts to change the cell contents but will fire when it gains "input" status (ready to ...Show All

  • Visual Studio Use VC++ 2005 Express Edition to handle _debugbreak breakpoint

    Hi, I have VC++ 6.0 and VC++ 2005 Express Edition installed on the same computer. My computer is well configured to pop the VC++ 6.0 debugger when _debugbreak line is reached, but I need to do the same with VC++ 2005, does someone knows how to configure the registry (or something else) to get the VC++ 2005 debugger shows up instead of VC++ 6.0 debugger Thanks Thanks for the quick reply. I just found that just in time debugging is not available with the Express Edition; http://msdn2.microsoft.com/en-us/library/5hs4b7a6.aspx ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Can't stop a playing sound

    Hi, I play a sound using code taken from the well-known tutorial: public static void Play( string name) { Cue s = soundbank.GetCue(name); s.Play(); } I've got my own little routine for stopping the sound: public static void Stop ( string name) { Cue s = soundbank.GetCue(name); s.Stop( AudioStopOptions .Immediate ); } But the sound fails to stop. It doesn't throw any exceptions. Any clues Sorted. It seems you can't stop a sound from looking up the cue using GetCue - you have to use the original Cue you invoked the Play() command on. It seems the two are different! :D Anyway, I've just posted a demo game up on my site. *Blatent self publicity - turn away now!* I'm a ...Show All

  • Visual Basic vb.net dlls and access database protection

    I have a window application (vb.net and access database), I want to proctect my dlls and access database. I need the best way to do it Thank you thanks for your help ok I've locked my database with a password, but I don't want from hackers to open it. So I was asking for something more secure than my password. Another question, Could the hackers open the vb.net 2005 dlls to check the codes ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Making Properties editable in the Properties Window

    Hello everyone, I created a new GameComponent which has a XNA.Framework.Rectangle as a property. I added one of these objects to my Game instance, but can't edit the Rectangle property (it is grayed out). How can I write a property (or class) in a way that would make it editable in the Property Window One solution I found was to make a number of Int properties that redirect to be member variables of the Rectangle. This is a bit clunky, though. I would like to be able to expand and edit the Rectangle property instead. It is not specifically Rectangle that I am interested in, as I would also like to make classes that I have created be able to be edited as properties as well. Does anyone know how I can do this Are there any tutorials out the ...Show All

  • Visual Studio Feature request: Referencing Code Samples

    I often add example-code to the code comments showing how to use a certain function. The problem is that if I refactor the code, the example will be incorrect and there is no way of checking the example code with the compiler. Usually what I do is creating a bunch of methods that uses the functionalities and copy/paste that over into the summaries. This is a pretty stupid way of doing it though (because of the human factor involved). So this is what I propose: 1. Create a code sample file that compiles, and has parts of the code marked by regions: public void Example1() { #region Example1 myObject = new myObject (); myObject.Invoke(); #endregion } 2. Reference the region in the code summary: /// <example>Create a ...Show All

  • Visual C++ VS2k3 -> VS2k5: Preprocessor definition being ignored?

    Hey everyone. I'm having a very...awkward issue with preprocessor macros: One of them is being completely ignored. I have a project that I've upgraded recently from vs2003 to vs2005. Within the project settings of this file, I've added the preprocessor definition REQUIRE_IOSTREAM. So, as should be expected, my command line output includes a "/D REQUIRE_IOSTREAM" argument. Then, within some of my headers, you then see expressions like: [code] #ifdef REQUIRE_IOSTREAM ... #endif [/code] So, pretty basic stuff. But the weird thing is, when I go to compile, VS never sees that REQUIRE_IOSTREAM has been set. So, if I were to throw a "#pragma message("calling the block for 'ifdef require_iostream'" line in there, I'd get nothin ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Reading embedded files

    Hi, i've added a .xml file to my xna project for windows, i've set it to be an embedded resource, how i can i them read the file n e attempt i make seems to try to read a file from the hdd or from a url many thanks I thought the ResourceManager was for reading from .resx files That's a different kind of embedding to if you select "Embedded Resource" as the Build Action in the VS properties. ...Show All

  • SQL Server Parameters

    I have a problem in SQL Reporting Services. I have several multi-value parametersI When I use one single value in parameter and running the report work fine, but when I select  more then one value in the parameter (With Multi Value ) it fails: "An error occurred during local report precessing. Query execution failed for dataset "DataSet" incorrect syntax near ',' " thanks I have a problem in SQL Reporting Services. I have several multi-value parametersI When I use one single value in parameter and running the report everything work fine, but when I chose more then one value in the parameter (With Multi Value ) it fails: "An error occurred during local ...Show All

  • Software Development for Windows Vista problems with graphics and sleep mode

    Ill start with the graphics problem I'm running RC1 on my laptop (IBM Thinkpad R31) and everything is compatible. The problem is that i cannot get my graphics card initialized. It installs the driver but it tells me that i can't turn it on. It doesn't make sense to me The graphics controller is the Intel 82830M. Like i said it will install the driver but it won't activate it. The other problem is that my Sleep mode is unavailable. Being a laptop i need either sleep mode or hibernate....and i dont have it. im afraid these forums are for software development and not technical support for Vista therefore I have to ask you to post your question to the appropriate communities: www.microsoft.com/commu ...Show All

  • Smart Device Development WebBrowser Scrolling

    Is there any way to scroll the web browser control programmatically I haven't found any. Thanks for your help. Wolfgang ...Show All

  • Visual Studio Tools for Office How to find a line in word document programatically

    My requirement is I have to split the content in a word document seperated by lines. I need to start from starting of the document searching until the first line ( not line-break ) and manipulate the data in between , then again start from the point after the line go until the next line and manipulate the data in between and repeat the same process until end of document. for example, _________________________________________ first step line1 first step line2 _________________________________________ second step _________________________________________ third step Note: a step may contain more than one lines of text, images or any other content. In the above example it should split to first step line1 fi ...Show All

  • SharePoint Products and Technologies MOSS 3.0

    Hi All, Thanks in advance for any help/wisdom you would like to share. I am new to the sharepoint experience and have started up my first site collection with a wiki and blog. The problem I am having now is how I should setup architecturally the site. We are a small IT staff and only want to use it for internal use now with only one log in, such as the administrator account. How would I make this site accessible with an internal and external url and one account Also how can I upload more templates to use and does anyone have an example blog with the different templates Thanks again ...Show All

  • Visual C++ C++/CLI /CLR Managed Support in Native Library

    Hi, I have a C++ project, a .dll project in Visual Studio 2005, which uses all native C++. I was able to compile the project with the /clr option (just /clr for common language runtime support). I am able to add the a reference to the dll with another C++ project, which is also compiled with the /clr option, and the entire application runs fine. The problem comes when I try adding the .dll project reference to a test C# project and add a "using MyCPPNamespace" to my C# class. I don't see the new C++ project namespace anywhere within my intellisense in the C Sharp project and I can't just add it as a using. I thought compiling my native C++ project with the /clr option allowed us to add references to these projects in other manage ...Show All

  • .NET Development question a xml file attributes?

    Hi all, [C# 2.0] I'm trying to loop through an XML (resx) file & display it to a DataGridView ... but I want to disregard items that start with '$' (already done that) or contain type attributes. nodes to accept: <data name ="blah"> <value> "foo" </value> <comment> "bar" </comment> to ignore & continue to the next one: <data name="w_SelectedIconTool.Location" type=" System.Drawing.Point, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b54df5d54dd" > <value>17, 17</value> </data> and <data name="w_SelectedIconTool.Location.ImageStream" mimetype=" application/x-microsoft.net.object.binar ...Show All

©2008 Software Development Network