Sonic_Molson's Q&A profile
Visual C# GridView
Hi I pass a querystring value on to a page that has a gridview, I want to use this querystring value and put the grid view into edit mode at the row that matches my qstring value Any ideas Hi After populating or Binding the GridView to the DataSource, extract the value from QueryString and set the EditIndex property value with that value extracted from QueryString. If you pass the index Value of the Row o ...Show All
Windows Forms Data from GridView invisible columns
Hi all, This seems like a question there are probably millions of answers to out there already, but I have not found any of them. I have a GridView bound to a query my database. I don't want the user to have to see the db_id field (just a arbitrary number), but I want to use the ID for other things behind the scenes. If I make the ID column invisible, I don't know how to use its contents in my code. Anyone know how this is done Thanks ...Show All
Visual Basic TableAdapter Query Config Wiz.
Hello I'm trying to build a Query with the query wiz. but i always keep getting a tableadapter function (SELECT which returns a single value). When it askes me to Choose Query Type the option for (SELECT which returns rows) is greyed. Anyone know what could cause this Hello, To add aquery to an existing TableAdapter drag a 'Query' onto the table (as opposed to dropping it onto an empty area of ...Show All
Visual C++ Dump files and obtaining stack information
Hi All, Im trying to read a mini dump file using MiniDumpReadDumpStream, which successfully works, and want to know how to obtain stack information that is contained within this file. Ive found StackWalk64, which requires a handle to a process and thread to be passed in - how can this be obtained from the dump file If anyone has any examples - it would much be appreciated. Thanks AFAIK this is not ...Show All
Visual Studio Express Editions link.exe error
I followed this tutorial: Building Windows Forms Applications with Wizards in Visual C++ Express (12 Minutes - 8.2 MB) And I get an alert box that pops up and says: --------------------------- Microsoft Visual C++ Runtime Library --------------------------- Runtime Error! Program: C:\Program Files\Microsoft Visual Studio 8\VC\bin\link.exe This application has requested the Runtime to terminate it in an unusual way. Please contact the a ...Show All
Visual C# calling functions one after another and get result into Main again
Dear all, I have this C# code. public class SimpleUdpClient{ ... void recieve_msg(){... msg[] contains data... } void capture_off(){... recieve_msg();... } public unsafe static void Main(string[] args){... simpleclient.capture_off(); fixed (byte* pSrc = msg, pDst = buffer) {...I want to use the data in msg[] to save to buffer[] here and do other operations... } } } But how do I get the data after Main calls capture_off(), then capture_off ...Show All
Visual Studio UIHierarchyItem from a ProjectItem
Hi, I need to find a UIHierarchyItem from a ProjectItem. My current solution involves getting the UIHierarchy from the Solution Explorer, and searching depth-first for the hierarchy item with a corresponding project item. For a large project it takes 15-20 seconds to find it, and the Solution Explorer window flickers the whole time. Is there a better way Ivo I don't think ...Show All
Visual Basic Radio Check Options in Menu Strip?
First off, I'm completely new to the world of Visual Basic. I took a little break from programming for about 20 years :) What a change... and THANK GAWD! I'm trying to keep current in my studies and am using VB.NET 2005 beta 2 at the moment and training with App Dev's VB .NET course... I've got the basics down, nagivation, understanding of objects, properties, etc... but for the life of me, i can't find what i'm looking for... and what I THOUGH ...Show All
SQL Server any known problems SQL 05 with sharepoint 2.0 SP1 and .NET framework 2.0
hey come on raise your hands i got another challenge for yall :-) well, i have installed asp.NET 2.0, SQL 2005 with Sharpointservices 2.0 SP1 and the latest patches... i recieve always #50070: no connection to the database possible, well i checked all logins, roles and security and didn’t find any further problem, sharepoint service get started with an domain admin account who i local admin too, the connection from sharepoint to ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How do I develop games for the XBox 360?
The starting point to learn how to build games for the XBox 360 is here . In a nutshell though, building games on your PC using the DirectX SDK is the best starting point for building games for the XBox 360. You can't get an XDK for xbox or xbox360 unless you are a registered developer and for now this means you are a big company with lots of $$$$ All the public information is here: http://www.xbox.com/en-US/dev ...Show All
Visual Studio Team System Rule to check "is Equals method is used" is not working...
hi, I have written a rule to check is Equals method is used instead of "==". This rule is not working. I have attached the code snippet here. Could you check and tell what is wrong with this code. public override ProblemCollection Check(Member member) { Method method = member as Method; if(method==null) { return null; } & ...Show All
Visual Basic need help???
hi! i'm new to vb.net from vb6. i have two form ( form 1 & form2 ) both contains textbox1. for vb6 my code look like this; form2.textbox1.text = form1.textbox1.text but it didn't work with vb.net...any help thanks, mac Hello, i've tried this code and it works... Dim frm2 As New Form2 frm2.TextBox1.Text = Me .TextBox1.Text frm2.Show() Me .Hide() thanks, mac ...Show All
Visual Studio Express Editions Tutorials for a complete noob to c++ and visual c++ express edition
Hi, my title says it all really, im after online tutorials that teach me just about everything to do with vc++ ee, and if vc++ isnt any different to normal i already have some. Craig This thread has a good list of books and websites (some of which have tutorials). check them all. ...Show All
Windows Forms Opening one child form from another
In my MDI app, I have the parent opening a child, but would like to open another child off the first child to keep my form from dissapearing behind the parent form. Is this possible I'm creating this in C#. You kn ...Show All
Visual Basic Parameter Passing\ VBA\ Access Query
Hi, I have 4 select queries in MS Access which accepts Parameter during execution. All the 4 select queries are being used in a Union query to club all the resultant records and the Union query is in turn called by the final query. I'm trying to pass value for Parameter using VBA Code. Final query is the one invoked from VBA. Dim qrydef As QueryDef Set qrydef = db.QueryDefs("qry01") qrydef.Parameters![MonthNum] = CurrentMonth .. ...Show All
