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

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

RichardW411084

Member List

Electronic75
Igor L
MattCollins
Robert Barnes
Gurpreet Singh Gill
omrivm
Eias Nabhan
Bastian W.
Kayda_SQL
calvin_mayo
anzrul
Loki1982
Gerhardo
hrubesh
Utkarsh Shigihalli
yromanen
Pete_M
R.Tutus
DSent
killerless
Only Title

RichardW411084's Q&A profile

  • Smart Device Development Another newbie in .Net/C#

    Hello, I'm totaly newbie in .Net and C# world... I was developing on Symbian platform for ages and I didn't use win32 api or .Net API many years. I know how hard is to get into new area, so I hope you could help me - my experience says that forums are usually best places to talk with developers... To get first impressions and feelings about C# I did a very simple project (it's stupid utility - you can see it on www.bombon.name/ds) and now I'm trying to port it under Compact Framework 2.0.. Until now I'm pleasantly surprised with everything - it's so big difference, when comapring with C/C++ on Symbian... I have some questions(I know I could google them:) 1/ Where are the best forums related to Pocket PC development ...Show All

  • Visual Studio Express Editions how to open IExplorer

    i have used this code and an error has occured C:\Documents and Settings\sajid\Desktop\web browser\Form1.cs(102): The type or namespace name 'webbrowser' could not be found (are you missing a using directive or an assembly reference ) tell me how to remove it The WebBrowser class comes under the System.Windows.Forms namespace. Just insert the using System.Windows.Forms directives on top of the file, if it isn't already there. If you're trying to open Internet Explorer through C#, try this: System.Diagnostics. Process .Start( "IExplore" , "http://www.microsoft.com" ); Hope that helps. :) ...Show All

  • Visual Studio Team System Generating upgrade scripts from baseline

    Hi guys, I'm investigating using the DBP version of TS to solve our database versioning situation for a project we are currently planning. I have played around with it for a bit now, but there is one thing that I can't figure out. Take the following scenario: Production system has version n of the database, which was deployed at some point in time. After 6 months of development we are ready to generate a new release. A release consists of an MSI or two that does everything to install the new software upgrade the databases. The build system has no access to communicate with the production system, or test systems, or any other system. other than the build machines. How do I get VS4DBP to generate me an upgrade script for each env ...Show All

  • Visual Studio Team System Microsoft Visual Studio 2005 Team Edition for Software Testers - Team Explorer

    Installed Microsoft Visual Studio 2005 Team Edition for Software Testers, but can't find how to access Team Explorer. Team Explorer is a separate install, located on the Team Foundation Server installation disk. You can install it before or after installing Visual Studio. Of course, you'll need a Team Foundation Server to connect to for Team Explorer to be of any value. ...Show All

  • Windows Forms Waiting to asynchronous calls end ...

    Hi ! I'm writing a program that works wiht messages, this messages are registered in a MS Access .mdb file. I'm implementing asynchronous calls to register this messages, and have locked the .mdb resource for only one thread at same time can work with the file. But, sometimes a lot of messages arrive to my program and a then a lot of threads are queue waiting for register the data in the .mdb file. I'm afraid that when i close the app, some messages don't be registered because are queue and i close the app. I'm trying to implement a contingency mechanism for wait to complete all mdb transactions before close the app. -- My asynchorous task list: ArrayList TareasAsincronas = new ArrayList (); -- Way to save a message ...Show All

  • Windows Forms checkbox in gridview

    hi all, how do i add a checkbox control into a gridview i read the documentation in msdn and added <asp:CheckBoxField DataField="property" /> under the <Columns> tag, but i got this error saying that the column is not a boolean type field. users are allowed to select more than 1 property in the gridview. please help. thanks! hi, try this <asp:GridView ID="GV1" runat="server" AutoGenerateColumns ="false" DataKeyNames ="OrderId" Width ="100%"> <Columns > <asp:BoundField HeaderText ="OrderId" DataField ="OrderId" /> <asp:BoundField HeaderText ="CustomerID" DataField ="Cu ...Show All

  • Visual Studio how to use process control in vb.net

    Please give me detail description about process control in vb.net P.Veerakondalu Hi, There is a nice sample and supporting doc for using the Process component here: http://msdn2.microsoft.com/en-us/library/fy81t8yk.aspx Hope this helps. Best, Paul PS: I'm moving this to the VB General forum. This is probably a better place for questions like this. ...Show All

  • SQL Server Slow Running Insert After Changing OLE DB Destination Data Access Mode

    Hello, In a Data Flow Task, I have an insert that occurs into a SQL Server 2000 table from a fixed width flat file. The SQL Server table that the data goes into is accessed through an OLE DB connection manager that uses the Native OLE DB\Microsoft OLE DB Provider for SQL Server. In the OLE DB Destination, I changed the access mode from Table or View - fast load to Table or View because I needed to implement OLE DB Destination Error Output. The Error output goes to a SQL Server 2000 table that uses the same connection manager. The OLE DB Destination Editor Error Output 'Error' option is configured to 'Redirect' the row. 'Set this value to selected cells' is set to 'Fail component'. Was changing the access mode the simple reason ...Show All

  • Windows Forms ListView.Refresh what am I missing?

    I have a ListView control (Detail view) that I fill programatically. I expected that when I changed the value of a 'cell' (a sub-item on one of the listview items) that I could just call Refresh on the ListView control. But I don't get the updated value displayed. I must be missing something (grr....), probably simple and obvious (I hope). If I walk the data in the control, I see the updated value, but my use of the Refresh method must be incorrect. In the example below, the little WalkThroughAnswerList function displays the correct (updated) values. Please see the code fragments below. Note that I am using .Net 1.1 (and VB 2003). AnswerList is the ListView control. Private Sub AnswerList_DragDrop( ByVal sender As Object , ...Show All

  • SQL Server How to find SQL Server machine configration

    I have SQL Server client installed on my machine, through which I connect to SQL Server A. Is there any way, in which I can find out the configration of the machine on which SQL Server A is installed. I am interested in finding out the number of processors and the amount of RAM. You should upgrade :-P For SQL Server 2000, I'm not sure. Have you tried EXEC xp_msver Paul A. Mestemaker II Program Manager Microsoft SQL Server Manageability http://blogs.msdn.com/sqlrem/ ...Show All

  • .NET Development Problem with session resume

    Hi, i am a beginner in asp.net 2.0. I am creating a web applicatn for exam. User can write the exam. Exam has suppose 40qns They close the application when thy reach 30. Now he shd be able to resume from 31st qn. Can anyone tell the soln for ths.. Thanks ...Show All

  • Visual Studio 2008 (Pre-release) Data Binding to an Collection

    I'm having some issues with data binding to an collection which is within my code, am I doing everything correctly XAML: <Window.Resources> <CollectionViewSource Source="{Binding Source={x:Static Application.Current}, Path=contacts}" x:Key="contactsDataBind"/> <SolidColorBrush Color="#80808080" x:Key="Bg"/> <DataTemplate x:Key="contactTemplate" DataType="{x:Type MSNClient:Contact}"> <StackPanel Orientation="Vertical"> <StackPanel Orientation="Horizontal"> <TextBlock Name="tbDisplayName" Text="{Binding Path=DisplayName}"/> <TextBlock Name="tbStatus" ...Show All

  • Audio and Video Development About the method of loading Original Sink.

    Hi all! Please give me some pieces of advice on  how  to serialize Original Sink to MIG Process.   Because the method of making general IMFActivate doesn't exist, IMFActivate for original Sink cannot be made. I would like you to teach the way of serializing original Sink to MIG Process.   My Best Regards. Thank you for your answer. And I have more questions. 1. Please tell me how to implement the IMFActivate::Activate().     Only return "S_OK" 2. Should  I  implement all of the IMFAttributes's methods      Is it useless only they return S_OK(or E_NOTIM ...Show All

  • Visual FoxPro How to disable Foxpro screen?

    I have a project with one screen form only. When I run the execute, the screen form is within the foxpro's screen. How do I make the screen form as the only window form shown on screen Thanks. Joe. Besides Doxcpro777's good answer (I fully recommend those books plus many more from hentzenwerke.com ), I would also recommend: Hackers Guide to VFP 7 (still works for versions after that) VFP Best Practices for the next 10 years and also the big repository of information in the VFP Wiki .   ...Show All

  • Visual Studio Team System VSSConverter : how long?

    I am converting our VSS to Team system source sontrol. I have started the migration 15 hours back and is still running. The VSS is 2GB size and 7 years old. I do not see anything on vssconverter.log except the following [Common, Warning, 3, 2006/08/14 19:46:37.156] Version : 8.0.50727.147 [VSS, Perf, 3, 2006/08/14 19:46:57.203] Starting Migration [VSS, Warning, 3, 2006/08/14 19:46:57.406] Reading Metadata for: $ How do I know it is hang or not, I see there is 25%CPU usage by the vss converter on the server. Please help! Thanks Shibu Thanks Jason and Martin I am now doing an incremental migration. It is working. The vssconverter did hang first time and I ...Show All

©2008 Software Development Network