Software Development Network Logo
  • Windows Live
  • VS Express Editions
  • Windows Vista
  • Visual Basic
  • Visual C++
  • Visual J#
  • Architecture
  • SQL Server
  • Windows Forms
  • Visual C#
  • Microsoft ISV
  • VS Team System
  • Game Technologies
  • Visual FoxPro
  • Smart Device

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

Ix2

Member List

Ralf Welt
mr. robot
KYChen
Amshanti
rockronie
JDev
Ting-fang Zheng
Michael Baarz
kedklok
xcao
dsm1982
AlvinTheUnready
meatandvegetables
MpDzik
Scott_P
Maldini1010
Apteryx
huskerwendy
Prdkv
David Weller
Only Title

Ix2's Q&A profile

  • Windows Forms help

    hi,all I want to get some cells in DataGirdView by GetChildAtPoint() method. for example: private void dataGridView1_DragDrop(object sender, DragEventArgs e) { Point point = new Point(e.X, e.Y); Point pointOfClient = this.dataGridView1.PointToClient(point); Control control = dataGridView1.GetChildAtPoint(pointOfClient); string a = ((DataGridTextBox)control).Text; } in this method ,I use GetChildAtPoint to get the values of cells,when executed,I found the control is null. I want to know the reason of it . in addition ,is there another method to ...Show All

  • Visual C# accessing outlook 2000 using c# with out MAPI & without COM

    actually i want to access outlook in c# application. means i want to access all mail items in all folders with out MAPI. can any body suggest with .NET components. Hi Sivaji, Based on my understanding, you want to read outlook 2000 items in .NET. If I misunderstood, please feel free let me know. If we did not use MAPI, we need to go the COM way. Automation Outlook and Read/Write its item. We can use Outlook COM Object Modal in .NET by adding COM referenect to Outlook. For Outlook XP,2003 we have offical PIA(Primary Interop Assembly), but for outlook 2000 there is no PIA. So that the IDE will generate a ...Show All

  • Visual Studio Express Editions Menu Overflow woes

    hi all, a) I have a menu that is built at runtime and items added dynamically. When the menu overflows the overflow menu itself does not have the same back color etc as my main menu. How can i change this b) (Related) as a workaround I changed the fore color of the menu items from white (on the main menu) to black (on the overflow) using the placement property. This works fine for menu items that are created and immediately drop onto the overflow menu, but when the last item of the main menu shifts to the overflow because of the overflow button appearing, it ratains it white fore color. even if i itterate through all menu items as each one ...Show All

  • Smart Device Development Form flicker on GotFocus...

    I am trying to replicate in .NET some of the functionality of the SIP.  I would have much rather have used the SIP but the app is a full 1024*768 res and the board supplier only included the small SIP, which is not great for my users  . My SIP is basically an array list of buttons created at runtime and arranged nicely on a target control usually a panel hosted on my Main form. The problem is that when I try to use the keyboard on a pop-up form, each time the user presses a key on the onscreen keyboard I have to refocus the pop-up form. Consequently there is alot of screen flicker each time a key is pressed on the keyboar ...Show All

  • Visual Studio Team System The Art of Installing Team Foundation Server

    I am trying to install the TFS for TWO WEEKS. May be there is not a fourm that I had not read, but the installation continues to FAIL due to infinite errors, exceptions that even may be MS staff does not have idea about. I think that a miracle has to happen to get the TFS installed in my poor PC. I realize that the installation of TFS is a real system administration ART! We appreciate that you are trying our product and are a little worried that it does not install for you. The best way to help you is for you to send us the error information.  We have had many out there that have had issues, and we have ...Show All

  • SQL Server Sending Data from SQL 2005 to and from C# code

    Hi Background: I am a post-graduate student developing a model of the way HIV/AIDS spreads in communities. The data sets I am using are large (eg census data - 50m records) and the manipulation is complex (eg deciding which individuals will begin a sexual partnership, and with whom). Problem : I need to process a table of data in code written in C# that will insert the results which are also a table of data into a table in the database. In the example set up below, a table with rows comprising an Integer and a Real is the input. The output is a table where each row also comprises an Integer and a Real. Each row of input, say (Inti, ...Show All

  • Visual Studio Team System Differences between .testrunconfig files for Tester version and Developer version???

    This post is a follow-up question to my previous post at: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=174441&SiteID=1 Using the suggestion from the previous post to change the threading state of my test configuration helped solve my initial problem. However, now that I have created all of my tests (and test configuration file) using the Tester edition of Team System, I also need to be able to deploy these tests so that my developers (who will be using Developer edition) can easily run these tests for themselves, possibly by command prompt. I have attempted this on a Developer edition and it does not seem to be able to read m ...Show All

  • Visual Studio Team System Need Help!!TFS Install

    Hi in start of install of TFS i have error 31010 "VSTF _PASSWORD"....... Thx We just saw this error internally, and it stemmed from a setup that was in progress and was restarted. Leaves setup in a strange state and we try to repeat a step that we shouldn't. Could you look in %temp% of the installing user and grab the *.log files, zip them up and provide them The way I worked around this was to install another program and then tried to install TFS again, and all worked.  We are tracking how to get avoid this case in the future marc ...Show All

  • Windows Forms WM_GETTEXT Usage

    How do I get the text of a textbox using WM_GETTEXT & SENDMESSAGE in VB.NET Thanks in advance Imports System.Runtime.InteropServices     <DllImport("user32")> _     Public Shared Function WindowFromPoint(ByVal xPoint As Integer, _     ByVal yPoint As Integer) As Integer     End Function    Dim intHandle As Integer    Dim&nb ...Show All

  • Windows Forms How can I alter the property of the main form control from a secondary form?

    Hello, I want to change the BackColor property, for instance, of a control belonging to the main form from a seconday form. How can I do that Please help. Thanks. I'm not an experienced C#'er, but I would try this. If the secondary form was created by the main form, saying secondform.Parent should get you the main form (Possibly you'll need more .Parent, but keep working your way up). Then TypeCast to the main form's type. Then put a period, the controls name, and the property (in your case BackColor); EX: MainForm amf; SecondForm asf; Do ((MainForm)asf.Parent).controlname.Backcolor ...Show All

  • Visual Basic Future of Visual Basic in India

    Visual Basic 6 is still alive and kicking in India despite the emerger of Visual Studio.Net. I think it will take atleast two more years for Visual Basic 6.0 to be completely flushed out of india. I think pockets of VB6 will remain all over, not just India, as some systems will simply never be upgraded. ...Show All

  • Visual C# Why must I cast on the way out of an emumeration?

    Hello, It's hardly a major issue, but I do occasionally get irritated when the compiler tells me that something like Logger.Log("portfolio selected", Developers.carlos); doesn't work, because I haven't casted Developers.carlos as an int (which I never think to do, as I have explicitly defined the Developers enumeration as being of type int ( public enum Developers : int )). Just wondered if there was a good reason behind this. Obviously it's not very important, but brevity in code is always nice if it doesn't compromise functionality or readability... Thanks, Carlos C# supports implicit casting only if corresponding implici ...Show All

  • Visual Studio 2008 (Pre-release) The 'http://www.w3.org/2001/XMLSchema:schema' element is not declared

    Hi, I am using the FEB release of WCF. I am using typed dataset in my service. when I try to generate proxy for this service, i am getting the following error: The ' http://www.w3.org/2001/XMLSchema:schema' element is not declared the same was working fine in previous version of WCF. Some thing seriously wrong with recent WCF release (FEB release) Thanks in Advance, Venkat Can you please describe your scenario a little more. What the operation looks like and how it is imported etc. Thanks ...Show All

  • Software Development for Windows Vista Problems with Beta2

    Hi, I have several problems with Beta2: How to set Custom Attributes in Custom Activities The collection used in Beta1 is not shown anymore in Designer view / Properties of the Activity ... Cannot open the Test Workflows of the Actvities download from windowsworkflow.net (ForEachActivity, SqlDatabaseActivity). Error: Error loading workflow. .... Invaild data found while deserializing an object of type 'System.Workflow.Activities.SequentialWorkflowActivity'. Any help appreciated! Thanks Andreas There are now code snippets for you to use to create properties in your code behin ...Show All

  • Visual Basic Button attributes

    I'm trying to figure out a way to make buttons "float" above the excel spreadsheet when you scroll across and down the page. i would like the button to remain stationary when scrolling. is this possible in vba thank you. ...Show All

©2008 Software Development Network