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

Software Development Network >> Rich Pearson's Q&A profile

Rich Pearson

Member List

davidlee9023
hingos
rocky_don
oasisman
AdeptBlue
GRK
SerialSeb
Deva Wijewickrema
Peter Bernhardt
Jamie Thomson
Andriy G.
MShetty
SidharthMalhotra
venp
JGreene
Harshad7_jp
Leon Mayne
Imran Hameed
DriverEntry
mobigital
Only Title

Rich Pearson's Q&A profile

  • Software Development for Windows Vista Official Release Date?

    I am currently working a project where I am using Windows workflow and also .net 3.0. But in order to be able to actually release the project I have to be able to show on microsofts site the official release dates, whether they have passed or are still comming can anyone help. Thanks Thanks for the quick response. The issue here is I cannot release software with beta products. What I am after is a the actual release dates where I can show a microsoft page link on: Windows Workflow .Net 3.0 Thanks ...Show All

  • Internet Explorer Development IE7 displays my xml/xslt page differently from IE6

    Hi, I have a Web application that works as follows: - An ASP.net page generates an XML string linked to an XSLT stylesheet and sends it to Internet Explorer. - Internet Explorer applies the stylesheet and displays the resulting HTML page in the browser. Everything worked great with IE6 and most of this still works fine in IE7 except for one page. In that page, I return an XML string similar to the following: 1 < xml version="1.0" encoding="utf-8" > 2 < xml-stylesheet type="text/xsl" href="styles/volumetryAdmin.xslt" > 3 <ifinance xmlns="urn:ifinance" auth="0" lang="fr" today="20061109"> 4 <precomps> 5 <precomp id="5& ...Show All

  • Visual Basic i dont know how to connect to database in vb.net iwant to lear through wizard

    i dont know how to connect to database in vb.net i want to lear through wizard i am using vb.net 2005 and my database server is sqlserver2005 i dontknow how to connect to database i would like to learn to connect to database through wizard manner can any one please tell me or send the links where i can learn to connect to database through wizard manner Try taking a look at the VB data samples located here: http://msdn2.microsoft.com/en-us/vbasic/ms789075.aspx#data ...Show All

  • SQL Server Proc with bad performance

    Hello, I'm trying to rewrite the following proc for better performance. Which approach would be the best way CREATE PROCEDURE dbo.upTest(@ProvID int, @GewID int) AS IF @ProvID IS NULL AND @GewID IS NULL SELECT ProvID, Prov, GewID FROM dbo.Alg_Geo_Prov ELSE IF NOT @ProvID IS NULL SELECT ProvID, Prov, GewID FROM dbo.Alg_Geo_Prov WHERE ProvID = @ProvID ELSE IF NOT @GewID IS NULL SELECT ProvID, Prov, GewID FROM dbo.Alg_Geo_Prov WHERE GewID = @GewID ELSE SELECT ProvID, Prov, GewID FROM dbo.Alg_Geo_Prov WHERE (ProvID = @ProvID) AND (GewID = @GewID) GO Many thanks! Worf I rearranged your query as there was a problem when either ...Show All

  • SQL Server how to connect from visual studio to a ms sql 2005 database on a server

    Hello, I have visual studio 2005 installed on my PC. I want to create a new website and I want the site to be connected to a MS SQL 2005 database that resides on my hosting account. I am thinking this can be done but I have watched videos, spent time looking for a site to help and I have hit a brick wall. I have no idea how to do this. Can anyone please help me with some instructions or a webpage that shows you how to do this. Thank You Joe Hello, I have found the solution and would like to share it with anyone that needs this info. I have found you can connect to a ms sql 2005 database that resides on your hosting account either by using the Visual Web Developer Express Edition whi ...Show All

  • Visual FoxPro How to disable ODBC auto login display if made connection failed

    Thank in advance. I would like to disable the ODBC auto login when login failed. I have tied to set the menu->tools->options->remote Data show login to Never. It seems work but only in IDE but cannot work in executable file. Some experts give me advice please. Window xp, Visual foxpro 8 ...Show All

  • Visual Studio 2008 (Pre-release) CommunicationException was unhandled

    When doing multiple client load test using wcf Service with tcp , i get the following error. The socket connection was aborted. This could be caused by an error processing your message or a receive timeout being exceeded by the remote host, or an underlying network resource issue. Local socket timeout was '10:10:49.6250096'. The same code is working fine for single user version. The service has http and tcp end point. Http end point is working fine with multiple client. I also had the same problem with TCP binding but not with WSHTTP binding. After some testing I have found a solution that work with my application, I hope it is working in your case too. My solution was to enable PortSharing in config files (client an ...Show All

  • .NET Development force english exception messages

    On my development machine I want to force the exception messages of thown excpetions to always be in english language. I have installed the english Visual Studio 2005 but the exception messages appear in german. How come Does that mean I have installed a german language pack for the .Net Framework If so, can I configure the Runtime to always show english excpetion messages without having to uninstall that german language pack If not how can I uninstall the german language pack Exception messages will usually be localized based on the culture specified in the current thread's CurrentUICulture property. To adjust the exception message language, simply specify the desired culture. If an appropriate language pack is not available on the ...Show All

  • Visual Studio Team System Newbie question...... How to get starting with source control

    Hi Everyone…. In the past, our team has working on the web sites on a development server byconnecting directly to the files. (ie: \\devwebserver1\website1, \\devwebserver\website2, etc.). Once work is finished, the project being worked on is then moved to a testing server. I have just finished installed TFS on a brand new machine, and I have created a new Team Project without creating a source control folder. From here, I would like to know where the source files (aspx, aspx.vb, images, etc) should be located. Should they stay on the development server, or should they be moved to the TFS Where can I find a document that outlines the structure to be followed Thanks, Forch ...Show All

  • Windows Search Technologies WDS 3b2 - file type list is truncated

    On one of the machines where I have installed the second beta of WDS 3, the list of file types on the advanced page stops at "mda". No extensions below that in the alphabet even appear, nor can I add them manually (when I do so, it seems to work but the the added extensions doesn't stick - the next time I open the file types setting page, it is again truncated). Running on XP home SP2 - and by the way, all the registered file types show up properly when viewed from the menu in an Explorer window. Thanks for any help Thank you Edward. Indexing Options CPL expects that all subkeys under HKCR give Administrators either read/write (default) or read permission. I wonder what could have stopmed on default permissions Tha ...Show All

  • Visual Basic More than one datareader at the same time?

    How to replicate this snippet of code using Ado 2.0 I mean, you are not able to use two datareaders associated to the same connection. Let me know, how do I such thing, I'm just a newbie with ADo .Net. TIA  sql = "select..."  command.commandtext = sql  set recordset = command.execute   While Not recordset.EOF    sql2 = "select..."  command.commandtext = sql2  set recordset2 = command.execute  While Not recordset2      Wend    Wend   Once you "fill" you tables within the dataset then you can loop through the tables, such as dim dt1 as DataTable = dsDataset.Tables(0) dim dt2 as DataTable = dsDataset.Tables(1) Fo ...Show All

  • Visual C++ Problem when call VC6 DLL in VS2005

    I have a vs2005 project which calls a vc6 produced dll, and in that dll there are some classes which use CMap,CList classes.After calling functions in that dll, the vs2005 project crash when CMap class destructor is called.Anybody knows the reason If the vc6-compiled DLL is using any runtime library functions (like the C/C++ runtime or STL) then the configuration is not supported. What you're probably seeing is that a VC6 free/delete method is trying to delete a block of memory allocated by a VC8 malloc/new method--which is not supported. Each version of the runtime allocates and initializes header data (usually just before the address returned by the CRT allocation procedure) as well as values used to ...Show All

  • Visual C++ Is there a way to create a dll in C++ without a def file and have it work for a Visual Basic Host?

    Is there a way to create a dll in C++ without a def file and have it work for a Visual Basic Host Private Declare Function GetPaperAbsorbency Lib "C:\Program Files\Microsoft Visual Studio\MyProjects\geob\Debug\geob.dll" (ByVal Ftn&, FilePath$) As Integer Private Declare Function Cov2Key Lib "C:\Program Files\Microsoft Visual Studio\MyProjects\geob\Debug\geob.dll" (ByVal Coverage&, ByVal MultFunct&, ByVal Ftn&, ByVal EF&, FilePath$) As Long Above are two declarations of dll functions that I added to the dll I was working on. The VB program cannot find the entry point for Cov2Key. Is there something wrong with my declarations I can provide more source code if needed ...Show All

  • Visual Studio Visual Studios shuts down...

    I hope i am on the right forum here. I have something really frustrating going on here. I am currently developing a Windows Forms application. Everything was working fine until today when visual started toi shut down on me. so i removed visual from my computer and installed it new. so at least now i can open all my other project/ solutions except the one form in this project where it started to die on me. oh after it shuts down memory and registry is too small exeption are popping and most of the time i have to shut down the computer so it is working again. i did already a memory test, increased registry, removed .net framework 2.0 and installed it again and chkdsk on my computer and everything turned out fine. in my eventlog i get the eve ...Show All

  • SQL Server CSV FORMAT [Suppressing a Text Box]

    Hi all, in the Details section of my Report, i have a table and a text box. Can some one tell me as to how i can suppress the text box from being rendered along with the table into CSV format. Hi Amrish, The only docs I could find refer to XML on MSDN. But the information applies to CSV as well. http://msdn2.microsoft.com/fr-fr/library/ms155396.aspx ...Show All

©2008 Software Development Network