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

Software Development Network >> John Mitchell's Q&A profile

John Mitchell

Member List

Boris
abw2003
wujek_bak
Joe_MCUSA
209732
Doby
Udi Raz
kittani
Azath
Ben Fulton
mustangchik83
djlins
Atul.Langote
WvanEck
kurjan
djdarkblue
peterneo
MuthuDotNet
Constantin Crstian
Konrad L. M. Rudolph
Only Title

John Mitchell's Q&A profile

  • Windows Forms I unchecked "Automatically generate deployment webpage" now...

    So I unchecked "Automatically generate deployment webpage" under the Options button so ClickOnce would publish. (original post here ) Now, how do I create a deployment page to test out the app Regards! =) The issue with creating publish.htm for browser-hosted WPF via Publish Wizard is a known bug and a future release will carry a fix. Meanwhile you can either type the Url in your browser's location bar (as someone suggested) or employ a test HTML page with a hyperlink to your .xbap. Yes, you do need to configure MIME types on your web server though. This article has details. You can post ...Show All

  • Visual Studio Express Editions Using ODE in 2005 Problems

    Currently I am in the process of converting source from Visual C++ 2003 (7.1 Plaform SDK from DVD) to Visual C++ 2005 (8.0 Platform SDK 2003 SP1). While I have found the following code will compile fine in 2003, when moving to 2005. It doesn't like it as much. #include <windows.h> #include "ode/ode.h" #pragma comment (lib, "ode.lib") # define DARKSDK __declspec ( dllexport ) class ODEPhysics {  dWorldID World;  dSpaceID Space; public :  ODEPhysics()  {    // constructor   this->World = dWorldCreate();  }  ~ODEPhysics()  {   // deconstructor  &n ...Show All

  • SQL Server Problem With Stored Procedure

    Hi, I am using Stored Procedures on SQL SERVER 2005. It uses cursor to perform row by row operations of string searching. Now the performance of the cursor is fine till the records to be searched are below hundread as the records in which i am searching is 1.5 lakhs. As one of the fields that i search in a bigger field rises to 7,500 unique entries the peroformance drastically decreases. I know cursors can decrease performance but i have tried the iterative ideology too in it but still the performance is still the same. The string searching is being done with the help of PATINDEX . It is my guess that it can be potential reas ...Show All

  • .NET Development Still little confusion

    Hi Friends    I have a question regarding Digital Certificate/SSL. How digital certificate actualy implemented in application. Suppose i want to secure my application with digital certificate/SSL I had purchased digital certificate from verified Certificate Authority (CA) Now do i need to make changes in my web application developed in Asp.Net Give me detail idea about it Thanking you in advance David Hi David. The certificate must be installed on IIS, then the iis will enable 443 port, allowing response/requests with https. The data exchanged by browser and application will be encript ...Show All

  • .NET Development Filter records with TextBox ?

    He, I'm a pretty new in VB 2005, and everithing is still little complicated for me, so I have the following question: How can I filter my records (datagrid or details) by entering values in a textbox. Example: I have a form (name=form1), textbox(name=txtFilter), SQL Table (name-Users, rows: ID, Name, Address) With other words - I want to tell my query to filter not with preliminary defined criteria like (SELECT * FROM (table name) WHERE Name="John"), and with user defined criteria-real time, something like: (SELECT * FROM (TableName) WHERE Name = my.forms.form1.textbox1.text) I'm not sure how exactly to do this, so if someone can suppl ...Show All

  • Visual Studio Tools for Office Install vsto 2005

    Hello, i would like to install vsto 2005 with visual studio 2005 beta 2. I have first test the version 2003 (visual studio and vsto), and i will test the last version 2005 (i haven't uninstall the previous install). After install the version 2005 of visual studio standard edition, i don't see office project. I have search a moment, and i don't find an install to Visual Studio 2005 Tools. I can't create a office project I have find a visual studio team suite edition, it's the good version to work with office Can you help me, please Hi Aaron, You are correct that a VSTO solution will not load o ...Show All

  • .NET Development Compiled regex in beta 2

    In 1.1, when you create a compiled Regex, AppDomain.CurrentDomain.GetAssemblies will include an Assembly with a name like  RegexAssembly12_0. In 2.0, this doesn't seem to happen. Is this a change in the way GetAssemblies works, or in the way compiled regexes work Good question.  GetAssemblies should be the same as before. This is a change in the way compiled regexes work since Whidbey Beta2.  Regular expressions have been switched to use lightweight code generation.  This does not change the contract functionality of regular expressions, but enables better performance when creating ...Show All

  • Visual C# Copy the content of two DataTables to One Location

    Hi I have two DataTables With the Same Structure and each of them content different   data.. I want to copy the data from the first DataTable to the Second DataTable In another word I want to make the data of the two DataTables in one Location .. How can I do that And thanks with my regarding Fraas foreach (DataRow row in table1.Rows) {     table2.ImportRow(row); }   ...Show All

  • SQL Server Internal error: file 'dmattributeset.cpp', line 2004

    I created a Neural Network model with AMO in C#. It seems that everything (including pre-processing) goes well until the final stage of processing (i.e. model training after retrieving all the data), then I consistently get the following error: Internal error: An unexpected error occurred (file 'dmattributeset.cpp', line 2004, function 'DMCubeAttributeSet::GetAttributeGroup') Could anyone offer any clue about this error I created an almost identical model with DM Studio and it works fine. It seems it is impossible to view the model created by AMO with DM Studio that is very handy in viewing various aspects of models. Thanks in ad ...Show All

  • Visual C++ aspell compilation problems

    Hi, I tried to post on the forum but it kept coming up with an internal error so i was wondering if you could help me with the following:I have recently been trying to compile aspell (a spell checker written in c and c++) in visual studio .NET (2003) which has taken forever but i managed to get it to compile a dll now. When i come to add this dll file into another project which will be using the methods from this dll it keeps giving the following error and not allowing me to add it: "Add Reference: Error adding reference to the project.". Does anyone have any suggestions on how to overcome this Any information woul ...Show All

  • Visual C++ Unmatched braces in preprocessor

    Hi, I have a quick question about the VC++ preprocessor.  I'm #defining some start and end assembly code, as I use it in several places and I don't trust it as inline - I need to make sure the registers don't change. So, I tried # define __asm_dp_start __asm { \ push eax; push ebx; \ mov eax, tempValueALU; \ mov ebx, op2; # define __asm_dp_end mov result, eax;\ setc bl; mov ALUCarry, bl;\ seto bl; mov ALUOverflow, bl;\ pop ebx; pop eax; \ }   The problem is, the VC++ preprocessor removes that last closing brace - no matter how many I put in, it strips them; I suspect it's trying to helpfully remove unmatched braces.&nbs ...Show All

  • Visual Basic External protocol in IE:D (advanced registry edit?)

    In Internet explorer I have seen various programs being opened by using an external protocol here are some examples. steam:\\ (used to lauch internet games) mms:\\ (windows media) how can i make my own protocol link which opens my project when called for from IE like myprotocol:myparameters And how would i get the program to detect what paramaters it was started with. Ty John :) ...Show All

  • Visual Studio Team System TFS and SQL 2005?

    is it possible to use SQL 2005 Dev Edition with single Small Team foundation Server My Hardware Specifications are 1G Ram. Hi, Areej, Sorry to say but, I read this message from the msdn subscriptions web site: To install Microsoft Team Foundation Server, you must download and install SQL Server 2005 Standard Edition separately. SQL Server 2005 Developer Edition will not work with Team Foundation Server. Regards, killem ...Show All

  • Windows Forms Handling event.

    Hi, Everyone. I have a problem Im writing a toolbar and my toolbar have event OnGotoLink here is code : In .Net ActiveX control:     Sub OnButtonClick(ByVal sender As Object, ByVal e As EventArgs)         Dim lMenu As CSLMenuItem         lMenu = CType(sender, CSLMenuItem)         'MsgBox(lMenu.Url)       &nb ...Show All

  • Visual Basic MSFlexGrid

    Hi guys!! Im working on a vb6 to .Net upgrade, which uses MsFlexGrid. The data to insert in the Grid is taken from a database recordset. Which loads the headers and later loads the row, changes the column width and some other validations. The main problem is when setting the new width and getting the actual width from columns. .Net doesnt throw any compilation exceptions, but in run time i get the message set_colwidth and get_colwidth are not members of MSflexgrid. NOw I tried using datagrid. I can pass the info with a dataset. But then I got another problem. From a database query, I get a field where I have one string with differen ...Show All

©2008 Software Development Network