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

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

int2str

Member List

pgyb
Jiaozi
Iain Fraser
Xavier Espinoza
muraliK
Wagner K.
Sun Haiwei
Guy le Mar
kirank.gl
asisurfer
AaronL
HBN
MartinNorfolk
sapo
Robert McGinley
n3bu1a
Slade Gellin
kenny08
Clickmaster
CougarKitE
Only Title

int2str's Q&A profile

  • Visual Basic Opening a file using VB 2005

    Hi, Anyone knows how to open a file in notepad from a VB2k5 windows forms application I know the openfiledialog() class commands. I just want to know whether you can actually open the .txt file using notepad and if yes, how Thanks and regards, Arun. This is syntax that has been around in VB since at least version 6, but I believe still works (replace C:\Test.txt with the actual file name): Shell("notepad.exe c:\test.txt", AppWinStyle.MaximizedFocus) ...Show All

  • Software Development for Windows Vista a process definition tool

    Hi I am about developing a generic process definition tool. The user will be allowed to define the business process model by dragging and drop the functionalities. Then this model will be converted to xml file and saved to a repository. Is this program suitable to implement such a tool If it is not, can you suggest a program to implement this tool. Rehosting the WF designer and allowing users to drop activities onto the design surface, and then generating XAML, sounds like what you're looking for. There are numerous samples and documentation on MSDN about this: http://msdn2.micro ...Show All

  • Visual C# It's possible to implement Enum.Parse<T>( string )?

    The API for the RTM is the same as it was in 1.1, but generics can be leveraged to improve this. Thanks, In fact, somebody has already made this suggestion: http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=4dc5a86e-6645-44fd-8cc6-154c8ffa2dad ...Show All

  • Visual Studio Express Editions Build Form Application From Scratch

    I'm trying to create a form application from scratch and I have some questions: 1. Do I create an "Empty CLR project" or an "Empty Projet" from the "General" tab of the Create New Project dialog I've tried both. 2. namespace System is not recognized and I've try to add references under the Project>>Properties dialog, but none show up to choose. What am I doing incorrectly Please advise and thanks in advance.  To create a new c++ form application : New Project --> CLR --> Windows Forms Application that's easy When you create a Windows Forms project, System namespace is alr ...Show All

  • Windows Forms Display Windows Form (Form itself, Not control) in IE

    Hi All, We have one Simple Windows Forms application which is presently running independently successfully. (Very Simple Single Form Application) Now, We need to embed the same app inside IE. Well, We can for sure display any control in the browser by converting to assembly using <object> tag. But, Can this form itself be displayed in the browser. Form is created like this, namespace EmbedTest { using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; public partial ...Show All

  • Visual Studio Express Editions Can not download the C# e-book from benefits portal

    I, too, have another kind of a problem. I just recently registered VC#, and I received the email with the Benefits Portal. When I try to download any of the goodies(I am a complete newbie-begginer-so I am very much interested in the e-book .pdf file) I get only a dreamweaver file. Can anyone help me As you have a different problem I split the post so you have a new thread instead. are you trying to download from this page https://connect.microsoft.com/downloads/downloads.aspx SiteID=40 This download https://connect.microsoft.com/Downloads/DownloadDetails.aspx SiteID=40&DownloadID=242 What hap ...Show All

  • Microsoft ISV Community Center Forums Inaccurate double variables in VBA!!!

    Hi All, I'm working on a big structural project. I wrote about 10000 lines of VBA code using AutoCAD, Excel and Access, but one of the problems that I could never resolve was inaccuracy in single and double variables. For example when I try to read start point of an AutoCAD line object in double variable A and then compare it with another double variable B that is equal to A, I don’t get correct result. For example if VBA watch window shows both A and B as 32.125 then when I subtract A and B I get something like 1.23123467423E-13 !!! I have VBA version 6.3 and I arise this problem in other applications such as Excel and Access, for ex ...Show All

  • Visual Studio Team System Project creation failed with error:"Initialization failed for plugin(s): 'Microsoft.Pcw.wss', 'Microsoft.Pcw.currituck'"

    During creation new team project from Visual Studio 2005 I get Project creation failed with error:"Initialization failed for plugin(s): 'Microsoft.Pcw.wss', 'Microsoft.Pcw.currituck'" message with log: 07/08/2005 10:43:00.938 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://as-cmp-1:8080/bisserver/EleadWebService.asmx " from the registration service | Completion time: 0 seconds 07/08/2005 10:43:00.938 | Module: ELeadServiceMediator | eLead web service proxy constructed | Completion time: 0 seconds 07/08/2005 10:43:01.108 | Module: ELeadServiceMediator | Template Information for domain "as-cmp-1" retrieved ...Show All

  • Visual C# c# colordialog custom colors save

    Hello, Is there some way to save and restore the custom colors in a colorDialog in a Windows Forms project When I look in the ApplicationSettings's PropertyBinding pop-up for the colorDialog, those custom colors are not there. Thanks. The ColorDialog class exposes a property called CustomColors which is an array of integers that represent the colors in question in an ARGB format. Worst case you could save these values manually after use of the ColorDialog and then reload them later. ...Show All

  • Visual C++ project is always 'out of date'

    I recently upgraded a vs 2003 project (standard C++ console application, reasonably complex, links to several libraries including Boost, Blitz++, and fftw). For some reason, since the upgrade, one of the projects in the solution (the startup project in case this is relevant), is always out of date when I do a compile, or run in the debugger. All files in this project are always recompiled, whether any of them have been changed or not. Any ideas what's going wrong, what I should look for Could you please log an issue at http://lab.msdn.microsoft.com/productfeedback/default.aspx . I am sure the owner ...Show All

  • Visual C# C# 2003 code optimization?

    I have written a Newton Fractal generator.  In computing the Newton Iteration I included a switch to determine the order of the equation.  See code snippet below: public Complex evaluate(Complex x, int order) {    switch (order)   {    case 0:          return (((((((A*x+B)*x+C)*x+D)*x+E)*x+F)*x+G)*x+H)*x+I;    case 1:          return ((((((8*A*x+7*B)*x+6*C)*x+5*D)*x+4*E)*x+3*F)*x+2*G)*x+H;    case  2:          return (((((56*A*x+42*B)* ...Show All

  • Software Development for Windows Vista Invoking a HandleExternalEventActivity from an Asp.Net Host

    Trying to get a HandleExternalEventActivity invoked from an Asp.Net Host. To make things simple I reused the sample SDK Sample Application “OrderingStateMachine” we all know so well. Problem Microsoft.Samples.Workflow.OrderApplication . OrderService . RaiseOrderCreatedEvent is Fired ok BUT Microsoft.Samples.Workflow.OrderApplication . Workflow1 . ProcessOrder method is never Invoked. I figure it must either a bug or my client-side code... Anyone able to sort me out The asp.net code:   protected void Button2_ ...Show All

  • Visual Studio Team System Problems while using TFVC Web Service

    When i try to use the "QueryWorkspace" or "CreateWorkspace" of "Repository" class, i get the following error:- "The request failed with HTTP status 405: Method Not Allowed." Im completely clueless as to why this error is occurring. Please help me in this regard. Hi, Are you going directly against the web services rather than using the client object model See the following forum thread regarding using the web services vs using the object model... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=358913&SiteID=1 If you are already using the obj ...Show All

  • Visual C++ Error: LNK2019: unresolved external symbol _FlushIpNetTable...

    Hei everyone, I get that build error while trying to call a function in IP Helper from C code in a VS C++ project. I #include <Iphlpapi.h>. Someone solved this by adding the line: #pragma comment(lib, "Iphlpapi") and this also solves my problem. However, I don't understand why. What does that line do Thanks a lot. / Rolle The #pragma used makes the linker link to the lib "lphlpapi.lib" which is probably the library that defined the unresolved symbol stated in the error you were getting. For more details, please take a look at http://msdn.microsoft.com/library/def ...Show All

  • .NET Development Optimize database search

    Hi, I am using Visual Studio 2005 pro (C# language) and SQL2005 Express Edition. I am building an application which currently decodes a large file and builds a SQL server database from it. The scenario is: One table (we'll call it TABLE1) which contains over 9,100 rows which holds names of places (and some other information). Another table (which we'll call TABLE2) which contains the same name places, but has lots of other information. This table holds over 600,000 rows of data. I want to be able to quickly search TABLE2 for a name of a place in TABLE1. If the name doesn't exist in TABLE2, I want to delete the record in TABLE ...Show All

©2008 Software Development Network