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

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

JVidal

Member List

Asif Raza Ashraf
B o g d a n
printerpro
Ryan Wade
Fiorina81
hashmi
Ganeshgoody
yanci1179
Honestas
shone xiao
perrakus
Eric Morceau
saint nik
Steve Metsker
Bryan Chriscoli
JimR1
Sahand
wintergreen-joe
Tony Scarpelli
Gboyega
Only Title

JVidal's Q&A profile

  • Visual Studio How to add parsing errors to ErrorList window?

    I am working on a project to create a language service using Managed Package Framework. I want to show the parser errors in the error list window. Using DTE2, I can get a handle of ErrorList Window. EnvDTE80. Window2 window = dte2.Windows.Item(EnvDTE80. WindowKinds .vsWindowKindErrorList); ErrorList myErrorList = CType(window.Object, EnvDTE80. ErrorList ); However myErrorList does not expose Add method on ErrorItems collection. What is ...Show All

  • Visual Studio Tools for Office Access/Create DOM for MailItem.HTMLBody and Open Contact by EntryID

    Hello, I have two questions, I wish to modify the html of a mail item when it is read in Outlook (so I can hyperlink key words, similar to Smart Tags). There are issues though when I straight modify it because it messes up the html. The best way seems to be to access the DOM. Does anyone know how I can do this Should I load the html first up into a web browser control OR is there a way to use Smart Tags when reading e-mails Second question: How ...Show All

  • Software Development for Windows Vista Missing XamlPad.exe

    I installed the Feburary CTP of the SDK, I had the January CTP on previously which I was able to uninstall successfully. However, in the sdk bin directory, I am missing the xamlpad.exe tool. Does anyone have any clue as to what happened to this tool As near as I can tell, most everything I installed with this CTP is working. Thanks in advance, I just checked my installation and found xamlpad at C:\Program Files\Microsoft SDKs ...Show All

  • Visual Studio Express Editions Someone help me make this dll project in c++ able to be referenced in vb.net?

    I have this c++ dll project but i cant figure out how to get it able to be referenced in vb.net it always says it cant be referenced. Please Help and post a link to the project you edited or send me a copy of it at josh@winmxunlimited.net The Project source - http://www.winmxunlimited.net/source.zip There could be several reasons for this. What version of C++ is it written in If it has the correct entry points, and it's written i ...Show All

  • SQL Server Error while importing Text file using Import Export Wizard

    Hi all i have text file where i can import it to excel to access or sql2000 without problem but when i import it using (sql2005 pro) i get this error message during the import O peration stopped... - Initializing Data Flow Task (Success) - Initializing Connections (Success) - Setting SQL Command (Success) - Setting Source Connection (Success) - Setting Destination Connection (Success) - Validating (Success) - Prepare ...Show All

  • SQL Server Single-threading within a Data Flow

    When moving data from a legacy system into a new database, I must "seed" ID's in destination tables, and then push those values back to the old system. This can be done within a control flow sequence container with the following steps: 1. truncate destination staging table 2. data flow to retrieve data from old system, and insert into staging table using an OLE DB Destination task 3. Execute SQL task that calls a stored procedure to seed the n ...Show All

  • Visual Basic Relase the Fix for Visual Basic Compiler Error &H8013141e&

    Hi all i just want to know when is going to be released the fix for visual basic compiler error &H8013141e&   this is already reported in the microsoft productfeedback site. i think this is a very urgent patch that must be released asap and please do not repond that i should go back to vs.2003 because i have lots of code developed in VS 2005 to framework 2.0 ..   JSB PS: this error pisses me of, i need to res ...Show All

  • Visual Studio Team System Can't we do bitmap checking in Visual studio 2005

    I need to check whether perticular image is exist in the testing page. how can i do that. thanks Unfortunately there is not a great way to verify dependent requests. There is some thing you can do. You can explicitly add the dependent request to the top level request. You do this by right clicking on the request and selecting Add Dependent Request. Then you can add a validation rule to the dependent request. ...Show All

  • Visual C# Math.Round issue

    I am trying to do some simple rounding with a precision of 1. For some reason, the only way I found that I was able to do this, is by using the following lines: double temp = tbJointServo.Value / 10.0; string tempS = temp.ToString(".#"); temp = Convert.ToDouble(tempS); txtJointServo.Text = tempS; Where "tbJointServo" has a minimum value of 0 and a maximum value of 3600. Is there any better way to accomp ...Show All

  • Visual Basic Readable Variables

    where do i declare an integer so that it can be read by all subs and forms ... the best way i have found to do this so far is to have the value flash up on the screen and then go away after being read by another sub Public Class Form 1 Protected Number as Integer = 0 Private Sub Form1_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Load     'whatever End Sub End ...Show All

  • Visual Studio Team System how can I run a unit test on difirent threat?

    Hi, How can I run a unit test on different threats I have Visual Studio team System for Software developer. I do not have the load test functionality on this version.... Please advice! Thanks Hi, Could you give us more information about the scenario you want to achieve (And I assume you meant "threads"). Thanks, Boris ...Show All

  • Visual Studio Team System Reporting Services fails after upgrading B3R to RC

    After upgrading Team Foundation Server from B3R to RC I connected to a Team Foundation Server and opened a Team Project. When trying to read the report 'Work Items' in the Team Explorer I received the following error: An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'dsStateParam'. (rsErrorExecutingCommand) For more information about this error navigate to the report serv ...Show All

  • SQL Server sql server 2000

    This is my last attemp at trying to install sql server installed, which its been quite reluctant too, as I've spent the last 2 hours with no progress. I've downloaded MSDE2000A.exe from http://www.microsoft.com/downloads/details.aspx FamilyId=413744D1-A0BC-479F-BAFA-E4B278EB9147&displaylang=en Installed it in the default directory. "C:\MSDERelA" And ran setup which returned this error "A strong SA password is required for securit ...Show All

  • Windows Forms how to capture enter key in datagrid?

    I've read that the keydown event doesn't fire inside the datagrid because the grid loses focus when you roll through the rows with the arrows. I want to be able to go up or down the rows with the arrow keys and then press enter on a row to fire an event. How ...Show All

  • Visual C++ Problem with _CrtSetReportHook on VC++ 2005

    Hello there! I have some a problem when i use _CrtSetReportHook( _CrtSetReportHook2 also has the same problem). as a parameter to _CrtSetReportHook i have a funtion: static int report(int reportType, char *message, int *returnValue); to dump the output data in a file. but when my program exits and the CRT Library attempts to call(automaticaly) the report() funtion i get an access violation at a file named stream.c at this line: ...Show All

©2008 Software Development Network

powered by phorum