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

Software Development Network >> Fabio Gouw's Q&A profile

Fabio Gouw

Member List

glchapman
Thomas Greenleaf
SkifL
mah_
C#
Sammu
itai_sh100
TheBeard
trenskow01
Ragavendra
Naveen Prakash
Roy Chastain
Bhanu Prakash Nunna - MSFT
Lars K
John P. Grieb
AnonZZ
DirectXPeter
c0d3r
Alpesh555
tori K
Only Title

Fabio Gouw's Q&A profile

  • .NET Development How to add an internal XSLT document to an XML document

    I would like to combine my XML and my XSLT document into one document, how do I go about doign this I have been googling around and found some exaples that use the href="#myStyleSheet" and then the styelsheet tag has an id="myStyleSheet" but it only seems to be applied to html output. I am using my XML document for excel. I will show you what I have at the moment and someone could point me in the right direction that would be great! I really need this solved quickly too, but I suppose it will take as long as it takes. here is my XML file: (truncated XML to shorten post) < xml version="1.0" > < xml-st ...Show All

  • Windows Forms How to : make sort types of DataGridViewColumn when click HeaderColumn

    Dear all, In my application have many types of DataGridViewColumn such as : Comboboxcolumn, MasktextBoxColumn (this type i customize), checkbox Column ... without DataGridViewColumn is make sort but other is not. Please help me my problem. Thank for your collaboration. Khiem Vo. Set the column's SortMode to Automatic. -mark Program Manager Microsoft This post is provided "as-is" ...Show All

  • Smart Device Development PocketPC SerialPort and turning off/on the device

    Hi, Here a simple C# example that reads data from a GPS Device Assume two Buttons on the form and one Textbox. Further a SerialPort with the DataReceived Event handled in the form. public class Form1 : Form {     public delegate void SetText ( string strPar);     public SetText myDelegate;     public Form1() { InitializeComponent(); } private void Form1_Load( object sender, EventArgs e) {    myDelegate = new SetText (SetTheText);    serialPort1.BaudRate = 4800;    serialPort1.Handshake = System.IO.Ports. H ...Show All

  • .NET Development Fill an unbound datgridview with access data

    I am struugling with some basic concepts here. I am trying to pull some data from an access mdb using a dataset, do some work with that data and then fill a datagridview with the results. The datagridview is unbound because I need to provide calculated coulmn headings (ie dates) - which I can do. I can do all elements seperately but cannot seem to combine them. How do I extract into a dataset, manipulate those rows ie loop through several times to fill a month of data and then send those new rows out to the DataGridView I suspect I am using the wrong technique - any ideas would be appreciated. Snippet: Pri vate Sub Popu ...Show All

  • Visual Basic how to work with file protected with password

    hi, I have one serious problem. I need to open a text file in append mode which is in a folder on windows server 2003 network. The folder is protected with login name and password. If I use open statement in vb code to access the file how can I pass the login name and password. Is it possible waiting for early response. Thanks Hi, Weird, but I did not find anyway to do that from managed code so here is example showing how it is done using Win32 API, please note that password stored in cleartext may be easily retrived from your binary:  Imports System.IO Imports System.Runtime.InteropServices Public Enum NE ...Show All

  • Windows Forms toolstrip control

    im unable to resize the toolstrip controls' width property in vb2005 pls help me pls help me for same problem if u got answer ...Show All

  • Smart Device Development IMailRuleClient : SMS arrive notification

    Hi alls, I try to use IMailRuleClient  in my application for intercept SMS notification, but it doesn't work, I can't get any notification.  OS : Mobile 2003 4.21.1088 / VS2005   Is it a right key \\Software\\Microsoft\\Inbox\\Svc\\SMS\\Rules     Any idea Thanks Hello Paul, Could you please tell me how to use SmsSetMessageNotification(...). I want to invoke my class (say sample.parse to parse the sms) to process SMS and see what is the content type of the SMS (simple text or binary). Thanks in advance, Ramana ...Show All

  • Visual C++ Visual Studio 2005 MFC Applications on Windows 98

    Hi, I am tring to build a unicode app to work on win 98/nt/xp. Built a sample MFC application in Visual Studio 2005 Team suite Beta 2. A unicode dialog app with a button. When run on windows 98 it shows this message.  Installed VCredist_x86 and .NET framework 2.0 latest versions downloaded from web. Also coped mfc80u.dll to the exe folder. Microsoft Visual C++ RuntimeLibrary Runtime Error! This application has requested the runtime to terminate it in an unusual way.  Please contact the application's support team for more information. I tried with Express Edition and Windows Forms it works in windows 98. Thanks, ...Show All

  • Visual Basic Overwriting Data in Text Files

    Hi all, I have an application that writes sets of data to text files when you click the save button. The each set of data has a heading and the data im saving gets placed under this heading. Everytime you click the save button, my code will check through the existing file to see if the current heading exists. If it does it will attempt to overwrite the old data with the newly saved data under that heading. Problem is.. it appends the data to the end of the file instead of overwriting it!. If ive lost you imagine a file with the following data in it. Heading1 A B C Heading2 1 2 3 Now say i want to save s ...Show All

  • Visual C# Subclassing controls

    I want to modify the bahavior of a standard control by changing some of the methods. I know I can do this by subclassing the control. However, it seems like I need to create a new control as a seperate project and reference the created dll in my main project. This seems like a lot of work for a simple task; what I'd really like to do is have everything in the same project (although not the same file). What I'm used to in Visual C++ is to use the base control as usual (eg. drag an edit control onto a dialog), and then use DDX_Control in my DoDataExchange to subclass the control. Is there a similar way in C# ...Show All

  • .NET Development DataSet HasChanges problem

    i have a problem with the dataet method HasChanges , im using a combobox DisplayMember to show the empoyee name from the employees table , and in the back im using the ValueMember to update the allocations table with the employee ID. it always returns true when i load the data into the form but im not changing any data. any one got any ideas thanks in advance. this . sqlDataAdapter2 . Fill(ds_temp51, "Employees" ); this . sqlDataAdapter1 . Fill(ds_temp51, "Allocations" ); this . cb_emp . DataBindings . Add( new System . Windows . Forms . Binding( "SelectedValue" , ds_temp51, "Allocations.empid" )); this . cb_emp . ...Show All

  • Visual Studio Team System Detailled Error Stack Trace in Unit Test Results

    How can i view a detailled error stack trace of a unit test (e.g. stack trace with line numbers and the possibility to jump directly to that line) The "Error Stack Trace" Column and section in the Test Result view does not even show the line number. thomas Can you get line numbers in a stack trace without deploying a pdb file in a production release ...Show All

  • Smart Device Development Visual Studio 2003 Emulator connection problem

    Hi Everybody Is was hopeing, that somebody in here would be able to help me out with my problem, since I haven't had much luck solving my problem my self. The problem is pretty common as far as what I've read in this forum. I run Visual Studio 2003 on Windows XP SP2 US in vmware ACE. I've installed the following software. SDK for Windows Mobile 2003-based SmartPhones SDK for Windows Mobile 2003-based Pocket PCs Windows Mobile 2003 Second Edition Emulators for Pocket PC Windows Mobile 2003 Second Edition Emulators for SmartPhone I've since then tried installation the Windows CE .NET Utilities v1.1 for Visual Studio .NET 2003, but that didn' ...Show All

  • Visual Studio 2008 (Pre-release) SQL 2005 CLR + WCF

    Does anyone know if WCF will be accessable from within SQL Server 2005 CLR This is not possible in RC0(as i know this may not be possible in V1 also),WCF team and SQL teams are aware of this request,If we have any updates in this area later,I will send you update. when i spoke to SQL team last time,They suggested me some workaround(I didn't test that workaround,I felt that is not right approach),please go through following links to know more about this. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=318103&SiteID=1 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=221521&Sit ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Font.DrawText() bug

    I'm not sure if this has been fixed in the latest sdk (downloading it now) but there seems to be a bug in the direct3dx Font.DrawText() method. When you use the DrawTextFormat.WordBreak format the lines get broken at punctuation marks as well as whitespace so that fullstops (periods), commas, apostrophes etc. at the end of words can get split to the next line which is really undesirable behaviour. I currently have the oct 2005 sdk so I'll see if the latest makes a difference. Email your repo steps and any code to directx@microsoft.com they *might* pick it up from the forum but the email is the only offic ...Show All

©2008 Software Development Network