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

Software Development Network >> Fiona Fung MSFT's Q&A profile

Fiona Fung MSFT

Member List

PaulMal
Paul Harrington MSFT
mornevr
gfs
Sourav Parida
LinaGT
the_real_joc
laMenAcquired
XBTester
Plenty
jtl8678
javieruy
Hua Wang
e-wrench
Tmac
argodev
Gunky
ShankuN
Henrik Uffe Jensen
Vince15
Only Title

Fiona Fung MSFT's Q&A profile

  • .NET Development WSE 3.0 - PolicyAssertion and Attachments

    Hello, I'm starting using WSE 3.0 and I'm having trouble in finding solution to these 2 problems: - I have created a PolicyAssertion and I want my WebService to use it without using a policy file. I've managed to do this on the client side, but on the service side I'm out of ideas. The documentation on the subject only gives examples with a policy file, but I wanted to do this without one. - In WSE 2.0 we had SoapEnvelope.Context.Attachments where I would put binary attachments. In WSE 3.0, can we just add binary data to the body Thanks in advance for any help given. Regards, paulo To use a policy on t ...Show All

  • Visual C# ClipBoard is not returning desired object

    Hi guys. I created a simple object that I then implant into the ClipBoard Clipboard.SetDataObject(new MemoryData(image, Text)); Then when I am going to read it, I use this code (taken from MSDN): IDataObject data = Clipboard.GetDataObject(); if (data.GetDataPresent("SLib_Creator.MemoryData")) { MemoryData m = (MemoryData)data.GetData("SLib_Creator.MemoryData"); MessageBox.Show(m.Text); } However the 'm' is always null, it always fails and gives me the message saying the the 'm' is null... Please tell me what I am doing wrong. Sincerely: Jonatan mark MemoryData class Serializable ...Show All

  • SQL Server Reference variables with identical names but different scopes

    Hi, I have a script task that can "see" 2 variables with identical names. The only difference is that they are scoped differently. As far as I know my script task will use the most locally scoped variable by default. Is there any way to make it use the other one -Jamie   DarrenSQLIS wrote: Give people a chance, you only posted a few hours ago! Saying that from all we have learnt about the “precedence” behaviour of variables and scope, I certainly don’t think it can be done. Did you suggest a fully qualified syntax to access higher variables I’d quite like that, but not a big deal for me (yet). Yeah I know, sorry,&nb ...Show All

  • .NET Development Bug in DataTable wizard code ? MS Access, retrieving @@Identity ?

    Hi ! I think I have found something strange... I'm using Visual Studio 2005 Beta 2. I'm accessing a Access 2003 database using the built in DataTableAdaptor component to insert a new row into a tabel. The table has a Identity column called "Id". Now, I want to retrieve the Identity using the normal Event RowUpdated method but here's the thing. When looking at the wizard created source code in ReportDataSet.Designer.vb no event is published for the ReportDataAdapter. (My Class is called "Report") A component called ReportDataAdapter.Adapter (public property, that mirrors the m_adapter variable of type TabelAdapter) is however published but t ...Show All

  • Windows Forms problem wid datagridcolumnstyle ... urgent

    i m using msdn sample code to create a custom column style using datetimepicker but its not showing the control when im clicking on the required column same happened wid me when i used extendeddatagrid from gotdotnet workspaces i was using a custom control that time.. wat may be the problem ...Show All

  • Smart Device Development ODBC

    Hello everyone and happy Easter, i'd like to write some data in any database using ODBC, is this possible on windows mobile 2003 and how till now i've tried to get the ODBC drivers from my pocket pc but i keep having null objects as results. here is the code, it's actually 3 c# files that u add to a project and a form that has a button called button1 and a multiline textbox called textBox1, when you click on the button the drivers' list should be displayed in the textbox this code gets the DSN name using System; namespace ODBCMngr { /// <summary> /// Summary description for ODBCDSN. /// </su ...Show All

  • Visual C# Unable to update the dependencies of the project

    I have had this error every time I try to check my program into source control after making changes. The project builds and works fine until I check it in and check it back out then it won’t build. I have deleted the setup project and built a new one only to have the same problem after checking it into source control. It also givs me a warning that " Assembly ' FolderName\FileName.exe ' is incorrectly specified as a file. Any suggestions would be helpful. I need a little more information to try to narrow things down.  I should mention that there do seem to have been similiar problems reported before [ ...Show All

  • Visual C++ Backgroundworker Component

    I am using VC++ Beta 2, with Windows Forms. I want to run a process in the background, leaving the UI responsive, and also to update a text box on the UI with interim progress data from my process. I have found a way to initiate a worker thread on the NET - as below. using namespace System; using namespace System::Threading; public ref class ThreadExample { public : static void ThreadProc() { //Do stuff } }; void RunProcess() { Thread^ oThread = gcnew Thread( gcnew ThreadStart( &ThreadExample::ThreadProc ) ); oThread->Start(); } RunProcess starts the thread fine, ...Show All

  • Visual FoxPro Ascii Key Code for Right Click

    Is there an ascii key code that I can check for like I do for any other key I could not find anything in help on this subject. I want to test if someone right clicked on a OLE object that has no Right Click event. Don Higgins Crew Chief Pro Software www.crewchiefpro.com         Marcia gave me the correct answer on another forum. The trick is to use the MOUSE UP Event for the object (because every mouse click has a mouse up release - kindof like flying where take offs are optional, landings are mandatory!) In the mouse up event of the object I checked for which button was just RELEASED.   ...Show All

  • Visual Studio How to manually process template in June CTP?

    I'm using the generate many files from one template approach by Annie . But the parameters for "ProcessTemplate" on the interface ITextTemplating has changed in the June CTP. You now need a "IVsHierarchy" as a extra parameter. Where do I get that thing Passing in null doesn't seem to work. Hope someone knows how to solve this, Gerben. It's actually the first, filename, parameter to ProcessTemplate that must not be null. The following code works in a command handler, and produces the output "Component = TestComponent". I think you should be able to plug this into Annie' ...Show All

  • Windows Forms How to intercept WebRequest.Timeout

    Hi, there WebRequest wreq = WebRequest.Create(Url); wreq.Timeout = 15000; IAsyncResult r = (IAsyncResult) wreq.BeginGetResponse ....... ....... I must do something when wreq.Timeout. Where can I write code in Thanks... Hi, Thanks a lot I know how to resume, I omit the resume code here, just to protrude the restart download error. If I run 10 times, it gets error about 8 times, ...Show All

  • Visual FoxPro RSA Public/Private Key Encryption in VFP 9.0

    Hi, I need to be able to decrypt data pulled from a MySQL table encrypted with RSA public/private key encryption within a FoxPro application.  I am currently using the FoxPro Foundation Class known as _cryptapi as a wrapper to the CryptoAPI interface.  The problem I'm having is that I can't seem to figure out how to decrypt a RSA encrypted string of data.  I know that the _cryptapi class provided by Microsoft uses the Microsoft Base Cryptographic Service Provider which in itself uses RSA public key encryption algorithms, but for some reason I am having the hardest time finding the methods that support this in the _cryptapi fo ...Show All

  • .NET Development Permissions for dll hosted in IE

    hi all, i'm looking for solution to this problem - i host winform control.dll in IE. As soon as this dll is created, it tries to connect to server where it's loaded from to read configuration file control.config.xml and to connect to remote object through .net remoting. Problem is in permissions - how to give programmaticaly permissions (if it's ever possible), or what to do to successfully read config and then to be able to connect (=>serialization and probably more permissions) this probably will have to be set by installation process, am i right When i run on local machine, everything works fine, but not from remote computer. ...Show All

  • SQL Server 3rd-party report editors

    Does anyone know of any products out there that allow end users to control the layout and fields of a report without having to install any special software on their machine SQL 2005 has a web-based Report Builder which may do the trick for you. SQL 2000 + Panorama Enterprise Report Builder is another option. ...Show All

  • Software Development for Windows Vista how do you install vista ???

    i must be an idiot or something ive been trying all week to install vista on my pc with nothing but problems. i have a sata hard drive running windows xp. i also have a fully formatted ide hard drive that i want to install vista onto only. i dont have a dvd burner so i cant burn the iso files to a cd to create a bootable install . i can use a virtual drive ( daemon tools ) for this i believe what is the best thing to do in my case should i re-install xp onto the ide drive , then add a partition for vista or leave xp on the sata and install vista onto the ide ( basically run two differnet operating systems on two seperate drives ) i re ...Show All

©2008 Software Development Network