Software Development Network Logo
  • Windows Forms
  • Visual Basic
  • .NET Development
  • Visual Studio
  • SQL Server
  • Microsoft ISV
  • Visual C#
  • Game Technologies
  • Smart Devicet
  • Audio and Video
  • Visual FoxPro
  • Visual C++
  • SharePoint Products
  • Windows Vista
  • VS Team System

Software Development Network >> Arnaud MIGEON's Q&A profile

Arnaud MIGEON

Member List

Pantomime
hrubesh
HPEvju
joeydj
Rhubarb
Kent Waldrop Fe08
Rouretain
Jocker23
XpyXt
Jon Prudhomme
Grant Carthew
Salman Maredia
ahmad.nazmi
abc0918
s441
Beric Holt
Skill225
waywar405368
jortiz
A.F.B
Only Title

Arnaud MIGEON's Q&A profile

  • .NET Development how to not include base class in shema

    Hello I have three classes A,B,C. B derves from A and C derives from B. I only want to include A and C in the wsdl so that the client does not see B. I tried to use the [ XmlType (IncludeInSchema = false )] on B but then C wont be included either. Even adding [ XmlType (IncludeInSchema = true )] to C wont include C. How can this be done I do not want to include B and B:s properties should not be seen in C either. Thanks This is not possible: as soon as C gets included in the wsdl (either as an explicit WebMethod parameter or via [XmlInclude(typeof(C))]), all its base classes will be added to the wsdl; this is because XSD type generation component (XmlSchemaExporter) strictly follows the CLR inheritance ...Show All

  • Windows Live Developer Forums Window Live Alerts SDK

    Hi Is there any forum present where I can post all my queries regarding Windows Live Alerts SDK Regards Makarand This general forum and the chatter forum are places you can ask about Windows Live development that doesn't fit into one of the other specific-topic forums. Go ahead and post your question/comment about Windows Live Alerts SDK here and we'll make sure it gets to the right people inside Microsoft. Thanks! -Danny ...Show All

  • Internet Explorer Development How to catch certain browsing events

    Hi everyone, i'm currently developing a BHO with ATL as i'm in need to write an application that would record the interaction between a user and the browser while surfing the internet. With my BHO i'm able to get notification of the events thanks to the DIID_DWebBrowserEvents2 interface. This way i can record when new windows are opened, a page is navigated to, a print template is istantiated and so on. But this just takes care of half of the events i'd like to catch. What i'd like to record too is when a user presses the back, forward and refresh button, saves a page or the content of a link, adds a bookmark, and similar. I can't get notifications of those events from the DWebBrowserEvents2 interface. How could i manage in getting this in ...Show All

  • Visual Studio Express Editions very Easy Question - excel read-only in a tab

    at least i think it will be I'm new to VB (running 2005 express) I just wanted to know if theres a easy way to have a tab displying a 3 collum list "read-only". i've already got the list in excel and just wanted to be able to view it without having to re-add all the data. any ideas ive got a 2 sheet excel document, the 2nd sheet has the list of names (films names about 600) and person A score and Person B score, the 1st sheet is not needed in the VB app all i want is to be able to VIEW the 3 collums from sheet 2. preferably without retyping all the entries. ideal would be without having to copy the excel file with the exe is any of this possible if so how ...Show All

  • SQL Server What language of external application can interact with SSIS?

    Hi, all here, I am having a question about the language in which external managed code written can interact with SSIS Is it only applications wrriten in .NET-compliant language can interact with SQL Server Intergration Services packages Thanks a lot in advance for any guidance and advices for that. With best regards, Yours sincerely, ...Show All

  • .NET Development Problem Importing Data From Excel

    I'm attempting to import data from a spreadsheet and I have the following problem. Some of the fields appear blank even though in the spreadsheet they have values further down the sheet. This is my connection string. conStr = "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=C:\Documents and Settings\mark.bosman\Desktop\test.xls;" & _ "Extended Properties=""Excel 8.0;HDR=YES;MaxScanRows=0;""" The rest of the data populates fine, but two columns containing integer values that are not populated till around the 150th row don't appear. Any suggestions hello friend i am using same query but could not get result pAd ...Show All

  • Visual C# Managed equivalent function of DWORD Gettickcount()

    Is there an equivalent managed function of: DWORD Gettickcount() If not, is there anay way in C# to catch the time elapsed from windows start up I wouldn't be forced to p/invoke those functions. Thank you. is there anay way in C# to catch the time elapsed from windows start up You can read the System Up Time performance counter. That way you don't have to worry about the tick count wrapping. ...Show All

  • Visual Studio Express Editions Windows Application creation using Process2 object

    When I create Windows Application in C# Express Edition in following file (named Program.cs) I see using of Program object: static class Program {...} But MSDN help says that Program object has been superseded by the Process2 object, so it should no longer be used. Existing code using this object continues to work for backwards-compatibility purposes. For new applications, use the Process2 object. So, if the Program object should no longer be used why this object is beeing used in default Windows application template Where Can I download Windows Application template using the Process2 object instead of the Program object MarcD wrote: I think you are taking stuff out of ...Show All

  • SQL Server VARBINARY and DATALENGTH()

    I have two databases that have the same exact tables. Each table has a varbinary(max) field that will hold a pdf file. In one database, I can use datalength() on the pdf varbinary(max) field and it will return the same number of bytes as the actual size of the file. In the other database, I use datalength() on the pdf varbinary(max) field it it returns exactly half the number of bytes as the actual size of the file. Do you know what is causing this I know that nvarchar will return double the bytes. But this is returning half. Any suggestions would be appreciated! Trish Here is what I found out. I had a problem with my PDF files. I had pages but no data on them. Once I fixed that we foun ...Show All

  • Smart Device Development fetching data from web service to pda over GPRS

    I am working on PDA application which calls web service that fetches 40 customer details in one call. The call from PDA over GPRS takes between 4-6 minutes to fetch the data back. 4 out of 5 calls fail. In the event log I can see that the SP has executed successfully but still on PDA it throws web exception. So to get the total time taken from invoking the web service; to getting the data back, c reated a simple web service which returns "Hello World". The PDA calls the web service via GPRS and gets the "Hello World" text back in 90 seconds, also 1 out of 5 calls to the web service throws a web exception (unable to connect to web service). Is there any way to reduce this time and to fetch the data more ...Show All

  • Visual Basic Tab Page Order. See the VIEW menu.

    Hi, I am using vb.net 2003. My question concerns tab pages. My tab pages get out of order when I run my application. How to I force the order to stay consistent Thanks, The order of the tabs follows the zOrder of the tabpages. The problem that you are encountering is widely known, but as of yet, no one has reported a set of steps to follow in order to reliably reproduce the symptoms and so MS are not able to fix it (Not Reproducible). I am not 100% sure but I believe that the order is only changed when you use the Collection Editor to modify the TabPages at design time. You can reset the zOrder in the IDE by using the SendToBack command on each of the tabpages, making sure that you start ...Show All

  • Visual C++ Dll function library returning a string to VBA

    Hi, I have developed a dll function library in C++ which returns functions of type 'double' successfully to VBA using lines: extern "C" __declspec(dllexport) double __stdcall MyFunction(double MyArg1,...) and a .def file in C++ and calling it from VBA with: Public Declare Function MyFunction Lib "P:\MyDLL.dll" (ByVal MyArg1 As Double, ...) As Double My question is how can I code a function to return a string to VBA I've tried using types char, std::string, __wchar_t etc but all have produced various errors. What coding should I use Basically, I want to protect my 'intellectual' property. Once the dll gets circulated round at work, I want to be able to prove that it was mine, so want an About(v ...Show All

  • Visual Studio Team System TFS over Internet - Receive TF31002 Unable To Connect

    I am running TFS in Single Server mode (ATDT on 1 machine) and am using the Workgroup edition that came with my MSDN license. Everything works great when connecting from VS Team Explorer on the server. I can't seem to connect with Team Explorer from my workstation machine. I am trying to connect over the internet, not local LAN. Can someone please point me in the right direction. thanks, Chris Jim I have tried Basic Authentication and receive the same results. I have read in several places that this first version of TFS does not support Basic Authentication; they were not able to get it working and didn't have time to fix up the bugs. ...Show All

  • Visual Studio 2008 (Pre-release) error while implementing Message security in WCF Client application

    hi, i am doing a security application using the Procedure as follows 1) created two certificates server and client certifcates 2) placed the client certifcates in current User/Personal location placed the server certificates in current user /trusted people location placed the server certificates in localmachine/my location using makecertifcate and certifcate manager 3) i created the host application wcf enabled service and web config of the host application as follows < serviceCredentials > < serviceCertificate findValue = " wcfsServer " storeLocation = " LocalMachine " storeName = " My " x509FindType = " FindBySubjectName " ...Show All

  • .NET Development Why are there extra items in List after deserialization

    Actually, I know why. What I need to know is the best way to get around this. Here's the deal: I have a class that exposes a List<>. In the constructor of this class, a couple items are added to the list. i.e.    public class MyClass    {       private List<OtherObject> m_list;       public List<OtherObject> List      {          get { return m_list; }          set { m_list = value; }       }       public MyClass()       {      ...Show All

©2008 Software Development Network