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

Software Development Network >> Gilles Auzemery's Q&A profile

Gilles Auzemery

Member List

RSMitchell
Michael Reynolds
PeteJM01
d72e4d
Furious P
Jessica Alba
Hassank
LeoXue
Larkin Y
brad1
John Veson
Tryston02
MShetty
Keano16FCeltic
qpsk
Aleniko29139
Aaron Marten - MSFT
Shazen
slimcode
SaimaSalim
Only Title

Gilles Auzemery's Q&A profile

  • Visual C++ Problems with ListControl in Property Page

    I have been developing a small app using a property sheet with a couple of property pages in it. I have various control on the different pages all working fine. However, I am now trying to add a List Control in the Report style. I am using the code; CRect rect; connectionsList.GetClientRect(&rect); int nColInterval = rect.Width()/5; connectionsList.InsertColumn(0, _T("UID"), LVCFMT_LEFT, nColInterval*3); connectionsList.InsertColumn(1, _T("Memory"), LVCFMT_LEFT, nColInterval); connectionsList.InsertColumn(2, _T("Networking"), LVCFMT_LEFT, rect.Width()-4*nColInterval); to try and create a couple of column headings but I am getting generic debug assertation errors. In the debugger I can see that t ...Show All

  • Windows Forms How to pass ab object between forms

    Hi, how Can I pass an object between 2 forms. For example if I have an object created in a button click event Form1 frm1 = new Form1(); MyObject obj = new MyObject() obj.Id= someintvariable; obj.Name=somestringvariable; frm1.MdiParent = this.MdiParent; //this is an MDI app frm1.Show(); how Can I send obj to Form1 so I can use it there Thanks There are several ways to do it. You can choose one of them as per choice or need: Suppose you have 2 Forms; Form1 and Form2; First you are trying to make a form an MDI parent but you are writing wrong syntax here is the right one... To make Form1 an MDI parent you need to set its property like this: See the properties of Form1 in PorpertyGrid and Set it ...Show All

  • Windows Forms Form_Load event + BackgroundWorker Thread (VB.2005). Behaviour not as expected.

    G'day, I've got a vb.net 2005 windows form opening via the following code. Dim frm As New frmOptions Me .Opacity = 0.8 With frm .ShowDialog() ' Do something here if the databases have changed. Me .Opacity = 1 Call Me .SetupLogin( True , e) End With In the Options form that I'm opening I'm doing some searching for actual SQL Server databases available to the user and this takes a while to perform, so I've used the background worker thread to help speed up the loading of the form. Example. Private Sub frmOptions_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles MyBase .Load BackgroundWorker1.RunWorkerAsync( GetActualSQLServe r) ' Do a heap of stuff th ...Show All

  • .NET Development How to get an .xsd from a resouce file

    Hello All: I have a .xsd file that I call from a DataSet using ReadXmlSchema. I would like to add the schema file to to a resource and call like so: MyDataSet.ReadXmlSchema(MyApp.Properties.Resouce.MyScema) this throws an exception. As an alternative I can use a string resource referencing the path to the .xsd file but would prefer just to add .xsd file to the resource and use it directly. Any ideas on how to do this, or, Am I going in the wrong direction TIA Trophus "You Kill One Bug...And Fifty Show Up For The Funeral" Hi, Your thread seems to be more appropriate in XML and the .NET Framework and there you may find satisfactory answers. Thank you. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Beginner shader question - I'm missing something obvious

    Hello, all: I'm working on a simple space sim, and I'm trying to render a weapon shot using an HLSL shader. I haven't used a shader before, so I've read through a bunch of code samples, and picked up a couple of books, so I *think* I (kind of) understand what's going on with vertex and pixel shaders. The problem I'm having is that when I enable the vertex shader the mesh I'm rendering is drawn in black. If I disable the vertex shader (comment it out), the pixel shader outputs the color I expect. I've tried it with a mesh I created and with a mesh created via Mesh.Sphere with the same result. Here's the shader code (it's almost an exact copy of the simple pixel shader code from MDXInfo). As you can see, it's totally simple: uni ...Show All

  • Visual C++ What is SET and how is it used on COM in VC++ environment.

    Hi All. I am working on creating COM DLL's on VC++. I want to know what is a SET,why is it used and how is it used in COM. Can any one guide me. Thanks in Advance Do you mean SET as a data container or the keyword SET from the scripting language The later SET (keyword in the scripting language) is just an indicator to assign the object reference to a variable and not the default value it evaluates to. ...Show All

  • Visual C# Microsoft Connect vs. MSDN Lab Product Feedback Center

    Hi! All you guys that worked with the PFC every day please go and vote for http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=131312 ! Thanks. ...Show All

  • Visual Basic spell check

    how to create spell check in vb.net i need a spell check component in asp.net and my code behind file is in vb.net please help me There are open source spell check modules on the net. http://www.csharphelp.com/archives2/archive343.html ...Show All

  • SQL Server Local Server Connection

    Hi I am trying connect to a database in SQL EXPRESS 2005 that is located in the same machine that is running (Windows XP Pro) IIS using classic asp code, but i cannot seem to connect to the database. Please anybody help. Here is the code below. ConnectionString = "Provider = SQLNCLI;" & _ "Data Source = UNIDWEB\SQLEXPRESS;" & _ "Initial Catalog = <dbname>;" & _ "Integrated Security=SSPI;" objCmd.open ConnectionString Hi, make sure that you enabled remote connections for the instance. The walkthrough how to do that can be found on my site int he screencast section. If that did not help you, do not hesitate to come back :-) HTH, Jens Suessmeyer. --- http://www.sqlser ...Show All

  • Software Development for Windows Vista DLL registration fails on Windows vista

    Hi, i am in process of upgrading a DLL application from VS 2003(Windows 2003) to VS 2005 on Windows vista platform. There is a post build event for registering the DLL. This fails with error code "0x80070005". When i try to register this DLL through command prompt, it fails with the same error code. With reference to all forum discussions, i disabled UAC on vista and tried registering the DLL through command prompt. This time it fails with the error code "0x800703f2". There is absolutely no way i can find out about this new error code on the net. Can somebody help me resolve this P.S. : i am running VS 2K5 as an administrator and also i have administrative privileges for my login. Thanks in ...Show All

  • Visual Studio Team System During a merge, the "Building Change Summary" goes into infinite loop

    My machine hangs while resolving conflicts during a merge. Here's what is happening: I initiate a merge between 2 branches It correctly identifies the conflicting files. I select one of the conflicting files and click on "Resolve" button. The "Resolving Conflicts" window comes up saying that its building a change summary. This process of building change summary keeps spinning.....and my machine hangs. The resolving conflict operation never ends. Note: This only happens for some files and not others. I tried doing this from multiple machines and got the same result. Is this a known problem, bug Thanks. Sorry you weren’t able to get through to the right peopl ...Show All

  • Visual C# changing label from program.cs

    ok well i have a listener thread in program.cs that listens for messages from my NetworkStream and then needs to acces a label on my Form1 ive tried Client. Form1 test = new Client. Form1 (); test.label1.Text = data; Client being my application name Deerhake44 wrote: what RizwanSharp said didnt work i didnt understand what u said Hello Deerhake, My solution didnot work and what Ilyas said you didnot understand that. now the only solution remains is that you post piece of your code here, So one can fix that and explain that what you were doing wrong and what is the right way to do that thing because are seemed to be a newbie and you didnot understand what Cross Th ...Show All

  • Visual Studio Express Editions Trouble with C++ Express Install

    I have tried multiple times to instll the MSVE C++ package with no success.Everytime I try I get a MS .Net Framework 2.o installation errror, which in turn prevents the rest of the package from installing. I have/had none of the components that were not allowed to be on before I started. I even ran the vs_uninst_betas.exe to make sure I wasn't missing anything. I just do not know what to try next to get around this issue. I am running a Athlon Processor, >1GB RAM, Win 2000 SP4. Is it possible the because I have .Net Framework 1.1 installed, that it is causing a problem I look forward to getting some help. Thanks In lack of other ideas, can you verify you have a working installation of Windows Ins ...Show All

  • Visual C++ Does VS2005 include Windows Installer?

    Does VS2005 include Windows Installer If so, how do I run it to create an installation package for users to install or upgrade my products You can download Windows SDK. For more information, visit http://msdn2.microsoft.com/en-us/library/aa370563.aspx ...Show All

  • Visual C# Enable and Disable line number

    Hi, How to Enable and Disable line number in code view Thanks Balamurugan ...Show All

©2008 Software Development Network