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

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

elygirang

Member List

PatrickFe
hadas_r
Hector Urizar
jrock2468
TedHoward
Jan Friberg
christinamarygeprge
Mookey
Nikolay Shustov
Ashwin Seshadri
Spook77
Snow Ko
melf1969
Peter_DK
William Zhi
IngredientX
Luis Esteban Valencia MCP.
frank_r
ShadowLord
Gus Crawford
Only Title

elygirang's Q&A profile

  • SQL Server SQL Server 2000 to 2005 Upgrade

    I backed up my SQL Server 2000 databases and restored them into 2005 using the Server Management studio. By default, the databases where running in SQL Server 2000 (80) compatibility level. I changed this to SQL Server 2005 (90). I guess my question is: Have I upgraded Will I be able to utilize the new features and functionality of 2005 and the potential performance improvements Restoring the database did the thing already of "migrating" HTH, Jens Suessmeyer. ...Show All

  • Visual Studio Express Editions export whole program/project to work on another pc?

    hi dudes, sorry i'm very much vb.newby... can someone please explain how i can export my project i'm writing in spare time at work to my home pc, intact with all code and interface design in place please in vb.net express i have tried saving the project and then copying the whole project folder home but this doesn't seem to work properly when i open a file - there's so many, anyway! another thing i thought i might try was to export project template but the descriptions it offer for the two choices from it worry me this action may not be appropriate either thanks for any advice from any one, matty Squeakstar, ...Show All

  • Visual Basic receiving email with .NET VisualBasic

    How can a .NET VisualBasic application or web app receive email you may try 1. your VB application connect to a Exchange Server using Post Office Protocol 3 (POP3) and Internet Message Access Protocol 4 (IMAP4) protocols as well as support for Simple Mail Transfer Protocol (SMTP) http://www.microsoft.com/exchange/evaluation/whatis.mspx 2. create your own SMTP server http://www.c-sharpcorner.com/Code/2003/Sept/SMTPPOP3MailServer.asp ...Show All

  • SQL Server SQL 2000 Publisher and SQL 2005 Suscriber

    Where can I found information on how its works and how to do it I tried to do it but I always received an error message Check out the following topic in SQL 2005 BOL: Using Multiple Versions of SQL Server in a Replication Topology (ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/rpldata9/html/45154b65-b46f-4aad-82e4-261376a7e9d4.htm) The general rule of thumb for replication topologies involving multiple versions of SQL Server is the following (with a couple exceptions): SQL Server Version of Distributor >= SQL Server Version of Publisher >= SQL Server Version of Subscriber. If you are using a m ...Show All

  • Visual Studio Tools for Office Can't Run Sample

    I downloaded and installed "Visual Studio 2005 Tools for Office Sample: Estimate Solution" and ran the database setup project but when I try to open the sample project I get an error complaining that it could not open the "EstimateExcelTemplate.vbproj" file. There is no such file in that folder Did I miss something here Hi Wayne, Have you downloaded the latest version of the Estimate Solution sample (We just updated this download this past week): http://www.microsoft.com/downloads/details.aspx FamilyId=401878B1-E03A-4FDC-8079-4344D574313B&displaylang=en When I download this sample, I find the "Est ...Show All

  • SQL Server Long duration Pre-Execute phase

    Does anyone know why SSIS sometimes just sits in the Pre-Execute phase of a data flow and does nothing It doesn't matter how elaborate the data flow is or the volume of data. It can sometimes take 80% of the task's run time. Are you able to monitor activity on the source system Perhaps the problem is there. A shot in the dark - perhaps the problem is the one documented here: http://blogs.conchango.com/jamiethomson/archive/2006/02/21/2930.aspx Just a thought!!! -Jamie ...Show All

  • Visual Studio Visual Studio 2005 Final Setup: ¿ How to avoid reboots and ... ?

    Hey guys ... I'm performing an administrative install of VisualStudio 2005 with a "/UNATTENDFILE" switch and i have all prerequisites preinstalled. Please, i need help with this three questions: 1. If i have all the prerequisites preinstalled, how to create an ini file (/CREATEUNATTEND) only for a VisualStudio and NOT for it and all the prerequisites 2. How to avoid the reboots in the installation process 3. How to install the MSDN Library to run from a source ubicated in a shared resource With the previous version of MSDN (for VS 2003) this switch MSDN.MSI SETUP_EXE="yes" works (500 MB aprox.), but with this new version it in ...Show All

  • Visual Basic How do I send form name with WebRequest

    I have a simple html form <html> <head> <meta name="GENERATOR" content="Microsoft FrontPage 5.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>New Page 1</title> </head> <body> <form action=" http://www.xxxx id=xx " method="post" name="myform" class="boxpesan" > <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="430" id="AutoNumber1" height="150">   <tr>     <td width="100%">  & ...Show All

  • Visual Basic vb6 convertion

    I am porting a project from vb6 to vb.net 2005 and I cannot figure out one convertion. 'This Function gets the text of the window Private Function GetText(Get_hWnd As Long) As String Dim lenTxt As Long, retText As String lenTxt = GetWindowTextLength(Get_hWnd) + 1 retText = String$ (lenTxt, " ") GetWindowText Get_hWnd, retText, lenTxt GetText = retText End Function The bold function is what I cannot figure out. I know the String function is the following: String Function String( number , character ) Returns a Variant of subtype String that is of the length specified by number and is filled ...Show All

  • Software Development for Windows Vista Interval between WorkflowIdled and persistence

    In experimenting with how the runtime persists an Idle workflow, it appears to do so within a couple seconds after the WorkflowIdled event.  In our case, we have many calls out to services that will can take significantly longer than this, in the 2 - 30 seconds range.  I'd like to avoid the performance hit of Persistence in this case, and trigger a persistence only after 30 seconds.  Is there a way to configure this interval between WorkflowIdled and peristence Thanks, Riley Riley, One way to do this would be to ensure UnloadOnIdle is set to "false", and then subscribe to the workflow's O ...Show All

  • Visual C++ converting float to string and string to float

    I know this is getting kinda repetitive but...how would I convert a float to a string and also a string to a float..Thanks a lot..(Code samples would be awesome). Echo: I tried your code, and it works with: Int32 i(99); cout << i.ToString() << endl; You might want to make sure you're using the Visual Studio versions of the includes.  The /showIncludes compiler flag (set under C/C_+->Command Line) can be used to determine exactly which header file you're pulling in.  You should get: 1>Note: including file: E:\Program Files\Microsoft Visual Studio 8\VC\include\sstream 1>Note: i ...Show All

  • .NET Development I expect a client cert will return after starting System.Net.HttpListener in "Negotiate" mode

    I want to write a HttpListener requires browser to submit its client cert before response.  When start following code, the browser prompts for password only and nothing is returned in the server side statement .GetClientCertificate() .  Instead, the response headers("Authorization") has a long base64 string [Negotiate TlRMTVNTUAADA...].  I suspect it is the client cert that I want.  However, I fail to create the cert from it. What is wrong Imports System.Security.Cryptography.X509Certificates Module modClientCert     Private xListener As New System.Net.HttpListener     Public Sub Main() &nbs ...Show All

  • Visual Studio Team System How to get the name of a .vb file

    Hi Guys, I developed the rule below to get the name of all *.vb files that are inside a projet and wanna verify if the name has an especif construction. But, when I debug the rule method, I get the name of the .dll of the project and not the files inside it. How can I verify each file in a project I am analysing in fxCop the project dll. Is it correct Public Overloads Overrides Function Check( ByVal Modulo As Microsoft.Cci.Module) As ProblemCollection Dim failed As Boolean = True Dim fileName As String = Path.GetFileName(Modulo.Name) Dim filePrefix As String = fileName.Substring(0, 3).ToLower If fi ...Show All

  • System Center CapMan.exe Fatal error

    Has anyone else seen the following error Title: CapMan.exe - Fatal Error CLR error: 800004005. The program will now terminate.  I've installed it on a WIndows XP SP2 system and am trying to run it for the first time.  Thanks,  Jason I have also had this error for any program i install. Whenever i try opening it the program closes. I do not know where SCCP is or where to find my .net framework. ...Show All

  • Software Development for Windows Vista How to access <Activity Reference...> in DesignerHostingApplication

    Hi, I'm trying to reference another activity from the property grid with the DesignerHostingApplication from Lab 10. When I click on <Activity Reference...> I get tge following error: The service 'System.ComponentModel.Design.IDesignerHost' must be installed for this operation to succed... What do I need to do to get the Activity Reference dialog Hi Might be a nasty question but could you give me a link to the labs Or are you talking about the wwf virtual lab offered by microsoft Thanks, Sebastian ...Show All

©2008 Software Development Network