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

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

Stokh

Member List

Jimmy.Lin
AlexCr
DBrett
Gedoo
Sharezxx
soli3d
R.Tutus
George Waters
Kevin Dente
SQLme
malabar2
ChristopheGo
Nothingbutproblems
Gurpreet_Sodhi_69db48
Praveen Dayanithi
Shailesh Chaudhary
SyracuseCheer
Tanmaya
applepie
Nick Sheng
Only Title

Stokh's Q&A profile

  • Windows Forms Grouping

    Has anyone had any luck creating a control that is derived from the DataGridView that implements grouping This control is a major letdown without it. I've been working on a sample that does this when databound to a datatable. It will be a few more weeks until I get something posted on my blog. I'll create a post on this forum when I post it. It only works with databound through a DataTable as it relies on the filtering functionality of the DataView/DataTable. I currently have it working with only one grouping, but I'm also working on multiple grouping. -mark DataGridView Program Manager Microsoft This post is provided "as-is" ...Show All

  • Visual Basic Session state in VB.net

    Hello all! I know there is a session state in asp.net. Is there something in a vb.net application that does the same thing Thanks! Rudy Session is really a concept of asp.net and VB.Net is merely a language used to develop ASP.Net web applications. If you asking if there is session state for for windows applications then the answer is not by default as its really up to you how you want to persist your application data. If you asking about how to use VB.Net to implement / manipulate session state for a web application then I would suggest asking the question on ASP.NET development are best asked in the forums at the asp.net site - forums.asp.net ...Show All

  • .NET Development No symbols are loaded for any call stack frame. The source code cannot be displayed.

    Hello. I installed VisualStudio.NET 2005 a few days ago.  ( not beta ) While I'm debugging, I'm faced with strange message box. -- MessageBox -- No symbols are loaded for any call stack frame. The source code cannot be displayed. -- Debug Detail Window -- FatalExecutionEngineError was detected Message: The runtime has encountered a fatal error. The address of the error was at 0x7a2b5aec, on thread 0x358. 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. How should I solve this problem Please answer me.. Thanks. Gwisun. ...Show All

  • .NET Development Accessing private fields using Reflection

    Hi, Is is possible to access private fields using reflection . I have a requirement where I need to access a private member using reflection. Thanks Niranjan This worked: using System; using System.Reflection; public class Sample { private int mField = 0; public int Field { get { return mField; } } } public static class Test { public static void Run() { Sample obj = new Sample(); FieldInfo fld = typeof(Sample).GetField("mField", BindingFlags.Instance | BindingFlags.NonPublic); fld.SetValue(obj, 1); Console.WriteLine("Field value = {0}", obj.Field); } } ...Show All

  • Visual Studio Team System Security Problem with Accessing Work Items

    I have a security problem with accessing work items. I have created a team project based on a customized project template. Among the rest, there are a "Defect" work item and two team queries, "All Defects" and "Active Defects" . MyProject > "Team Project Settings" > "Group Membership..." context menu item shows "Project Groups on MyProject" dialog with the list of the team project groups, including [MyProject]\All that includes another team project group, [MyProject]\Developers that includes a Windows user MyDomain\John . MyProject > "Team Project Settings" > "Security..." context menu item shows "Project Security" dialog with the list of the team project groups and their permissions, particularly, the above-mentioned ...Show All

  • Visual Basic Thx

    I need a program that changes the desktop background(stretched), by using the pictures in a certain folder(let's say it is C:\), and the pictures will be links(*.lnk). Anyone can help Well, now i have a problem, i think it is silly but i couldn't find any solve for it, can anyone help. here is the code: Public Class Form1 Private Const SPI_SETDESKWALLPAPER As Integer = &H14 Private Const SPIF_UPDATEINIFILE As Integer = &H1 Private Const SPIF_SENDWININICHANGE As Integer = &H2 Private Declare Auto Function SystemParametersInfo Lib "user32.dll" ( _ ByVal uAction As Integer, ByVal uParam As Integer, _ ByVal lpvParam As String, ByVal fuWinIni As Integer) As Integer Friend Sub S ...Show All

  • SQL Server How to set page orientation to landscape?

      How can I set the page orientation to landscape I tried to set "printDocument.DefaultPageSettings.Landscape = true;" but it didn't work. I have spent hours fixing the problem but I couldn't get it work. Below is the code:      private void printDocument_PrintPage(object sender,             System.Drawing.Printing.PrintPageEventArgs e)         {             e.HasMorePages = false;             printDocument.DefaultPageSettings.Landscape = true;           ...Show All

  • Visual Studio Express Editions Need help registering for Visual Web Developer 2005

    Hello, I have downloaded Visual Web Developer 2005 some time ago and now only have 5 days to left. I click on Help->Register Product and try and click on the link Register Now , however, an empty IE browser is displayed. I have made sure that under internet options on the program tab the check box is enabled for "internet Explorer should check to see if it is the default browser". It is enabled. I then go back into Visual Web Developer and click on Help->Register Product and register now but still no luck. I have a windows passport and everything. not sure what to do at this point and only have 5 days left of the version... All I need is a product registration key.... Any help would be MUCH APPRECIATED!!!! T ...Show All

  • SQL Server SQL Update with id

    Hi I have a Excel sheet in this i have to take out a id and then search in the SQL DB if there is a Id like this and update some fields. I have it allready in Access but i need to have it in SSIS i have everthing exept the Update itself. I take the Id from the XLS and then i go to the DB and look if there are some of this ids in there. i "Merge Join" then then there are some left (5-10) now i wanna say take this IDs and update it on the DB but i search for so long now. I'm sure it have to be easy. I make a very short version. I need to do a SQL Update statement. And link the Existing Database with a Excel Table. LIKE: UPDATE Database INNER JOIN Dataflow ON Database.Number = Dat ...Show All

  • SQL Server Problem with SQL Server 2005 Express

    Hello, I am programmer from Bulgaria and I am new in working with SQL server. I have a problem and want to discuss. Imagine that there is software system working on Windows XP professional, SQL Server 2005 express database, programs (source code on Microsoft C/C++) that connect to SQL Server 2005 express via ODBC and around 30 users that working 24 hours a day. For simplicity let imagine that in database have 2 main tables. In first table users add record. The program get value of certain field from that record and add that value to certain field in existing record in second table. (For example => imagine that in first table insert record for sell of some good /document of sell/ and in the second tabl ...Show All

  • Audio and Video Development Is Media Foundation ready for software development now?

    Hi all I'm new to Media Foundation and spent several days looking for and studying its information. As you know, we can find very few documents currently. The main source is the MSDN online version and is still very immature. Since Vista has already claimed MF as its next-generation platform for high qualitiy multimedia presentation and the PMP/PE forced people who want to take advantage by OS-native protection to use Media Foundation instead of DShow (as you know, PMP only supports MF.), I think people who want to develop multimedia applications (well, maybe for Bluray or HD) should consider now to change from DShow to MF. But from the documents I read and from this forum I saw lots of unresolved issues (including the multiple ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. GSE RTM on Vista RTM (unsupported)

    i know it's not supported ... but has anybody got it to work bought the club account on the 360 and downloaded the app on the 360. installed Express on Vista with no problems and registered. tried an update, but didn't see any service packs. then i installed GSE, which complained about the VS projects, but it still seemed to install. fired up Express and the XBox 360 Starter kit project was there and built fine. went to tools options, and setup the connection to the 360. then i set the 360 to listening mode. but when i try to deploy, it just comes back and says make sure the the 360 is listening. also, turned off the vista firewall but got the same results. any ideas Thanks, casey Doh!&n ...Show All

  • Smart Device Development How to manage phone calls without using TAPI on Windows Mobile 2003 SE Phone edition

    When I'm using TAPI to manage the phone functionality of my device MDA III (Windows Mobile 2003 SE Phone Edition) I have a problem with GPRS reconnection. When I remove the code, which uses TAPI the reconnection works, but I can't use my phone. One solution is to use the default device’s phone application, but in this case I must invoke it, when I want to make a phone call, show it on the screen and transfer the phone number. The other problem is the case with incoming calls. I don’t know whether is possible to catch these calls without TAPI. I read some articles about RIL, but I don’t know how to use it ! Best Regards Tihomir Ignatov You don't want to use RIL. It is not designed for applications to use it directly, so ...Show All

  • Visual Studio Invalid argument for database

    Hi, I have a report that is connecting to two different databases and retrieving data from a stored procedure in each. My problem is that when I try and set the destination of the database at runtime, I get the following error: Invalid Argument provided. Failed to open a rowset. Error in File C:\DOCUME~1\JAMES\LOCALS~1\Temp\temp_{5E8F9D66-6EFF-47E9-96F7-65D32A761DCC}.rpt: Invalid argument for database I have other reports connecting to the two databases and I am setting their destination at runtime with no problems. The only difference in this report is the fact that it is using stored procedures rather than tables directly. Strangely enough, when I set the designtime location of the database to be the location that i am sett ...Show All

  • .NET Development How to generate dynamically proxy for some classes ?

    I need to alter behavior of calling some classes, extending it to call some intermediate function. for this I must create dynamic proxy and supply some alternate handlers with calls, are some articles or sample which do something like that service calls may by interthread call to data bound objects, or call to else app-domain of marshal by value objects, not serializing them or some applied servicing. thanks you ...Show All

©2008 Software Development Network