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

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

Nadeem_iqbal

Member List

Marcus Rodrigues
RhysDavies
Furqan Farooqui
Sagayaraj R
god_of_coolness
Rune Gulbrandsen
ares_l
fulish1
Phillip Williams
wybirds
Mike Chapman
Mowali
Andreas Asterlund
__ButterFly__
shizuka.a
kuankuo123
Nightman28
Brad Roberts
meg18019
Cygon4
Only Title

Nadeem_iqbal's Q&A profile

  • Windows Forms Adding chkbox to GridView

    Hi, I've created a gridview with an unbound checkbox at the end. I now want to add event to these checkboxes so that each time one of them is clicked it calls a sub. Is this possible If so can somebody please let me know how. I'm currently heading somewhere along the lines of Protected Sub AccountNotesTable_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles AccountNotesTable.RowDataBound If e.Row.Cells(8).HasControls Then Dim chkIsSticky As CheckBox = e.Row.FindControl("chkIsSticky") If chkIsSticky.Checked Then e.Row.CssClass = "stickynote" Else e.Row.CssClass = "note" End If AddHandler e.Row.FindControl(&qu ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managed C++

    So I understand Managed C# is the primo langauge for Game Studio Express but would it be possible, either when it comes out or eventually, to use Managed C++ with it too It really bothers me I'd have use C# over C++ for the Game Studio... There's no reason why you couldn't do this for the basic chunks of code, then convert it to C# using one of the web site converters. It wouldn't be the cleanest nor most complete solution, but it would enable you to see the C# version of what you write in VB. You could also do the reverse - take the code in one of the Starter Kits, translate it into VB, and take a look at it and copy it for your projects. ...Show All

  • .NET Development SqlDependency and Stored procedures

    Hi all, When using SqlDependency on an SqlCommand using command text, everything works as expected, I get a notification as soon as the data in the table changes. When I use a Stored Procedure instead, I always immediately get a notification after executing the SP without data being changed. As soon as I reissue the command, I again directly get the notification. Please see the following code: (Table is named Test with one column named Col of type int.) Correctly working code: using ( SqlConnection conn = new SqlConnection ( this . connectionString )) using ( SqlCommand cmd = new SqlCommand ( "SELECT test.col FROM dbo.test" , conn )) {   SqlDependency depend = new SqlDependency ( cmd );   depend . ...Show All

  • Visual Studio 2008 (Pre-release) Building RGBFilterEffect error

    While building RGBFilterEffect sample I'm getting an error building RGBFilterEffectLibPS project... Error: MIDL will not generate DLLDATA.C unless you have at least 1 interface in the main project. Project : error PRJ0002 : Error result 1 returned from 'C:\Windows\system32\cmd.exe'. Is anyone else getting this error ...Show All

  • Windows Forms Directory chooser

    I've a new question today, which should be quite simple for people who know how. How do i get a folder version of the openfiledialog that is so useful i want to select a folder to be set as default in one of my small programs, but all i can do atm is use openfiledialog to save a file, get the address, then delete the file, which is very long winded, and doesn't look good for the user. how can i get a directory viewer that lets the user just select a directory Thanks for your help. It'd be useful if there was a site that actually showed all of the really useful bits of code that i'm likely to need, because I'm asking on here a lot, and don't want to be a burden. Well, if you drag it from the toolbox, then t ...Show All

  • Windows Forms Sort Icons in ListView Control Header

    Hi, How can I add sort icons (symbols like up arrow and down arrow) in a ListView Control's header I am not very clear what you mean,do you want to add some new buttons or change the style of listview if it is the 2ed,this is an article maybe useful ...Show All

  • .NET Development configSource - share connection strings file across web-services ?

    We wish to have a single (external) config file that stores database connection strings, shared across a number of web-services that all connect to the same database. This would allow a connection string to be changed in a single file that then applies to all relevant web-services. Possibilities include the .NET configSource, or EntLib 2.0's "File Configuration Source" (I'm using Data Access block). But I believe that .NET 2.0 only allows configSource to be in a relative sub-directory, and can't access relative parent directories, so this wouldn't work for sharing a config file across web-services At least that's what this post suggests: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=146960&SiteID=1 Does .NET ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Bullet Hell Tactics - Shoot'em'up game created with XNA (video and screensots)

    Hey! For the last couple of months (5 to be exact) I have been working on a shoot'em'up (shmup) game with XNA and have now come to point where I can show what it will look like and how it will play. I have screenshots and a gameplay video that can be found at http://shmup.blogspot.com . (Remember that this is work in progress, and a lot of stuff is missing). Here you can also read about the development and progress of the game. I don't yet have a playable demo for download (sorry). Later on I will have a beta for download for those of you that wish to try it. It has been a WHOLE lot of work to get this thing play (I know maybe it doesnt look like much work when you see it but trust me - it is!) Almost all the gameplay element ...Show All

  • SQL Server What events trigger the MDX scripts to execute?

    In ssas2005 what events cause the MDX Scripts to execute Mosha has a good article on what happens during OLAP processing. http://www.mosha.com/msolap/articles/cubeinit.htm ...Show All

  • SQL Server Transact-SQL equivalent of MySQL LIMIT

    In mySQL for example i could have: ORDER BY ID DESC LIMIT 5,25 where it would start from 5'th row found and return up to 25 rows. How do i achieve the same in Transact-SQL The LIMIT 5, 25 part. SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: <Author,,Name> -- Create date: <Create Date,,> -- Description: <Description,,> -- ============================================= CREATE PROCEDURE getMessages -- Add the parameters for the stored procedure here @username varchar ( 10 ), AS BEGIN -- Insert statements for procedure here SELECT ID , Sender , ...Show All

  • Visual Basic 'dataSet' argument cannot be null error

    hello fellow VB2005 programmers. i have this problem that i had been trying to solve for hours but have not come up to any solutions even Googling isnt enough. let me discribe my situation here so you can see whats the cause for the error if you can spot it ok 1. i have a solution/project in which is composed of: a.) a Webservice and b.) a Client VB2005 application. 2. the Webservice stands for the middle tier in my 3-tier-application. Ok, so you get it Database tier is an SQL Server 2005, Middle tier is the ASP.NET Webservice using VB as language, and Client tier is a VB2005 application. 3. the webservice has two webmethods. named GetTestData and UpdateTestData which are functions respectively.i will post the source code o ...Show All

  • Visual C++ Executing Code

    I have used Jcreator, CodeWarrior and a dozen other compilers for various languages. Now I am using Visual C++ express to compile code (in C++ of course) and I seem to have run into a snag. In literally every toher compiler, there is a prominent 'Execute' button, however, I have looked, searched the database (as futile as that was), searched through everymenu, enquired throughout the digital world, looked at instruction s and lessons and everywhere I thought an answer could be found, and Lo, I have not discovered where Visual C++ Express has hidden its 'Execute' command/button. My professor has some version of Visual C++ where there is a single button that both compiles and Executes code, but Express apparently has no such thing. ...Show All

  • Visual C++ how to delete everything from a removable drive

    good day. I would like to delete everything (all files, folders and sub folders) on the removable drive, eg: F:\ drive. Can someone pls help me out with this Formatting and deleting is quite different and it is less effient to remove the files and this is also spawning a console subsystem in our application. this is not a good way I think ...Show All

  • Visual Studio 2008 (Pre-release) Loading and displaying TONS of images.

    I saw a movie of how the Nintendo Wii handled images and it was the coolest thing i've ever seen. There was a grid of at least 500 pictures and you could seamlessly zoom in on one image and get it in full resolution. Then you could scroll sideways and see the other images in the same size. Here's a video of how it looks: http://uk.wii.com/movies/photochannel/ So i thought, if that little toy with 800mhz cpu and 64mb ram can handle that, then my gamingcomputer must be able to do the same thing at least 4 times better So i started to write a wpf-program that did the same thing. But i got stuck pretty quick. As grid i use a ListBox like they do in here http://www.infusionblogs.com/blogs/jsmith/archive/2006/09/21/867.aspx ...Show All

  • Visual Studio problem with FileBrowserDialog in asp.net

    hi there i have a problem with FileBrowserDialog in asp.net .i'd downloaded this code from one site. it is working fine when i run the app through visual studio ,but when i browse the app ,this dialog never opens thereby giving request time out error. do anybody have any advise.thanx. Shell32.Shell picker = new Shell32.ShellClass(); Shell32.Folder folder = picker.BrowseForFolder(0, "Select Folder", 0, 0); //picker.BrowseForFolder((int)this.Handle, "Resource Updater", 0, 0); if (folder == null) { return; //user hit cancel } Shell32.FolderItem fi = (folder as Shell32.Folder3).Self; strDownloadPath = fi.Path; You can't r ...Show All

©2008 Software Development Network