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

Software Development Network >> Filipe Fernandes's Q&A profile

Filipe Fernandes

Member List

samelena
Fahad Habib
radh
JaQoB
Sergio Costa Faria
Coldwar
goly
CryptoKnight
edgar.i.sanchez
Saileyee Thakur
Mark Favor
Naldiian
zerodevice
Vincent123
Novacaine
Jack Hu
Blue9000
Ralf Ellersiek
trknssr
ShermanChin
Only Title

Filipe Fernandes's Q&A profile

  • Visual Basic COM hellp

    Type 'Microsoft.Office.Interop.Word.Application' is not defined. this is the error i am getting for this code i am using the reference to the word object library 11.0 and i have Imports System.Microsoft.Offce.Core...take a look and let me know....thank you Dim word As New Microsoft.Office.Interop.Word.Application Dim doc As New Microsoft.Office.Interop.Word.Document doc = word.Documents.Open("c:\template.doc") doc.Activate() Dim rng As Microsoft.Office.Interop.Word.Range For Each rng In doc.StoryRanges With rng.Find .Text = "[name]" .Replacement.Text = txtname.Tex ...Show All

  • Windows Forms Combo Box Problem with String Display Member and Number Value Member

    Hi, I have been trying to figure out what wrong for a few day already. I was not able to find any answer to the problem in the forum. If anyone know of any or know what's wrong pls help me. Thank you. Table Information: PurcOrder Table PurcOrderID PayeeID (Datatype ==> Number) ... ... Payee Table PayeeID (Datatype ==> AutoNumber) PayeeName (Datatype ==> Text(72) ) I'm writing a project managment system for construction using VS 2005 and Access 2003 as the db. I have a combo box in a win form binded to PurcOrder Table. Payee ID is a combo box. the display member is set to PayeeName in payee table while the ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Flicker in Direct3D application ???

    Hello guys, I developed a small(very simple) 2D game last summer, and I remember I had to use a temporary output for the Drawing/Graphics, and then whole Output draw at once(like one bitmap) so that I avoided "FLICKER PROBLEM". Now, I am trying to get into 3D programming and want to ask, if there could be the same problem, because when my SpaceShip is moving I think its not so smooth as it should be and that it might be the same issue with Drawing something on something else and therefore cause flickering. I am using Direct 3D to render scene. Thx. Peto Usually flickering is the resu ...Show All

  • Visual C# Ability to compile into previous versions of .NET?

    Hi, all! I just wondered if anyone knows if it's possible to compile for older versions of .NET I've got a network of thin clients that use XP Embedded, and I can't even get a form with a simple button to run on one! Fortunately, MS is addressing this with "MSBEE". See http://msdn.microsoft.com/vstudio/downloads/tools/msbee/default.aspx ...Show All

  • Visual Studio Team System Viewing word document from change set or document history.

    If I try to view a word document associated with a change set or view the history of a word document and choose to view an older version, I get the error message: "No application is associated with the specified file for this operation" However, if I choose to view the latest version of the file from source control explorer, it works fine. Anyone got any ideas on what I need to do to get this working Thanks, Rod ...Show All

  • Visual Studio Team System Error Spawning fxcopcmd.exe

    I'm trying to determine why VBA for Excel won't take my component that I wrote with C++/CLI.  I decided to give fxcop a try by enabling it in my project properties -> code analysis. I get this right off the bat: Performing static analysis... Project : error PRJ0003 : Error spawning 'FxCopCmd.exe'. I verified that this file exists in: e:\Program Files\Microsoft Visual Studio 8\Team Tools\Static Analysis Tools\FxCop The Event Viewer doesn't report anything related to this.  So I'm stumped. Thanks, Brian Hi, Michael.  The project, a C++/CLI Class Library, had lain dormant for since this issu ...Show All

  • Windows Forms DataBinding Problem?

    I have a textBox that is bound like so; this .txtBoxAccountAddressLine1.DataBindings.Add("Text", DSAccountAddress.Tables[0], "AddressLine1"); I then have the follwoing code so that I can pass the value to the stored procedure to update the Address like so; string AccountAddressLine1 = this .txtBoxAccountAddressLine1.Text; If the user erases the txtBoxAccountAddressLine1.Text and then presses the Edit Button to Update the Address, the value is not blank, it actually still displays the previous value that was in the txtBoxAccountAddressLine1.Text. When the Update has completed, I perfrom the following code before I retrieve the Address in ...Show All

  • Visual Studio Team System Warehouse Troubleshooting Guide

    This will be a living document and as we troubleshoot issues, we will add to the query and document. It will culminate in a consistency checker tool which automates the checking and ultimately other functions like kicking the warehouse etc... Feedback is welcome and I will update this data. Symptoms: The data in the reports is stale and doesn’t seem to ever get updated. The reports error out. An error has occurred during report processing. (rsProcessingAborted) … Background: Data in the operational stores (Work Item Tracking, Version Control, Team Build, Integration Services) is pulled into a relational database (TfsWar ...Show All

  • Visual Studio Installing VS 2005 with SQL Server 2005 RC1

    Hi all, I have installed Sql Server 2005 RC1 on a Win 2003 machine. It also installed BIDS alongwith it. Now i need to install VS 2005. I have got VS 2005 Beta 2 DVD. But while installing it, it also tries to install .NET Framework 2.0 Beta, which fails because SQL Server 2005 RC1 has already installed .NET Framework 2.0 Is there any solution for this Thanks in advance. Sumit Pilankar The version of SQL you have installed on your machine does not work with the version of VS you're trying to install. The latest versions that work together are the RC versions of VS 2005 and SQL or the released versions (c ...Show All

  • Software Development for Windows Vista Trouble with FindFirstFile()

    Hello, I'm writing a program that needs to extract the filenames from a given directory. Naturally I decided to use FindFirstFile and FindNextFile of the Windows API, but no matter what I do, I cannot get FindFirstFile to return a valid handle to a file. Here's the code: WIN32_FIND_DATA file_info; // will hold file info HANDLE file_handle = INVALID_HANDLE_VALUE; // handle to the file DWORD error; // will be used to tell when there are no more files // get the handle to the first file file_handle = FindFirstFile( "C:\\Documents and Settings\\Josh Heitz\\Desktop\\Projects\\Transfer Program\\debug\\" , &file_info) ...Show All

  • Windows Forms MDI OpenFileDialog

    Hi, I need some help. I have MDI Form and ChildForm with richTextBox. and I am trying to open file (like a text file) from the menu on the MDI form, but so far it did not open any file and this is the code that I am using: childForm new childForm(); filename String(); Stream = new System.IO.StreamReader ; dlgOpenFile.ShowDialog(); dlgOpenFile.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*"; dlgOpenFile.FilterIndex = 2; Filename = dlgOpenFile.FileName(); Stream = new System.IO.StreamReader(Filename); childForm.MdiParent = this(); childFormchildFormText = Filename ; ...Show All

  • Software Development for Windows Vista Custom activity for showing windows forms

    I've created a custom state activity for showing/hiding a windows form. Which is the best approach to do this I though to insert a code activity inside stateinitialization to show the window, is it correct Then with some mechanism (ExternalDataService ), when user clicks on close button, the activity waiting on that event performs windows closure. Samples would be appreciated. Thank you very much You have the general idea. There are a couple of ways to do this. If you want to totally block the workflow until you have dismissed the form, then you can just have a code activity (or a custom activity with co ...Show All

  • Visual C# 101 Samples problems with final release of SQL 2005

    Opening 101 Samples project with the final version of SQL 2005 there is an incompatibility error message that ask to recreate the DB. "Database XMLDATA.MDF cannot be upgraded because it's non-release version (600) is not supported by this version of SQlServer.... You must recerate the databse..." Someone have generate have still the version "Beta2" in order to create the sql script. Many Thanks Angelo       Hi Karen I am looking for all sample that use database in the collection downloaded from: http://download.microsoft.com/download/8/1/d/81d789e2-0cbb-421e-b4f9-b4 ...Show All

  • .NET Development VSA obsolete in FW2.0?

    The namespaces Microsoft.VSA, Microsoft.JScript.VSA etc. are marked as obsolete in the documentation of the Framework 2.0 beta-2. I used classes in these namespaces for customizing applications by using JScript's at runtime. Are there any substitutions of the VSA stuff in the new framework or does Microsoft just stop developing this Thanks karlo I am interested in the resolution of this topic as well. We are currently developing a medical device that would greatly benefit from VSA's scripting capabilities. I was surprised to see that it was deprecated since VS2005. In particular, what we had envisioned was ...Show All

  • SQL Server reporting service installation directory

    Hi there, my question may seem silly. I have installed SQL server in the default directory. The plan is that we want to keep the program files in C drive, and the rest data file etc should be on a seperate drive, like, a D drive. But for Reporting service, should it go C, or D then The whole installation of reporting service is huge. The report server and report manager websites will also be installed with reporting service. I just worried the size may grow bigger and bigger and my C cant handle it anymore. Any inputs What you normally do with ith Thanks alot Sid the sloth...the lord of flame ...Show All

©2008 Software Development Network