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

Software Development Network >> Sacha Vieux-Roy's Q&A profile

Sacha Vieux-Roy

Member List

VMan
AnnabelP
JezPop
Naolin
DavidThi808
eldiener
Christian Sparre
Pyromedic
Aaron Sulwer
tgbt
Steph_Job0
a.d.m
may east
saarar
Kelly R. Martin
Artur Shokin
Sreekk
Helen Cool Granny
dmee
Aaron S.
Only Title

Sacha Vieux-Roy's Q&A profile

  • Smart Device Development How to move around the different forms of the project?????

    Hi everybody!!! I am developing a Pocket Pc program with Visual Basic. This program have many forms. From the first one I can go to the second one by clicking a button. I do that like this: NextForm.Visible= True Me .Visible= False I don't know if it's the correct way to do it, so sometimes it work and sometimes not. If I do: PreviusForm.Visible= True Me .Visible= False It doesn't work at all, the program dissapear and I have to reset the ppc because I cannot execute the program again. Also I can close the form by clicking the OK button but again I've to reset the ppc because some forms are still open but I cannot reach them... So..., I have no idea how I should do it, any help woud be gra ...Show All

  • SQL Server keep together

    Hi. I have two groups and a detail row in a table.First is ProductGroup, second is ProductSubgroup and the detail area's name is ProductName. My problem is that I want to keep the detail and the ProductSubgroup (second group area) together.For example sometimes ProductSubgroup is written at the end of the page and the detail area is on the next page or the ProductGroup (first group area) is written at the end of page and the ProductSubgroup (second group area) is written on the next page.And I don't want this.But for example the ProductSubgroup area contains too many detail rows and this time I want to split the records two pages.I hope you help me.Thanks! Hi Ian, What would be the overhead in terms of ...Show All

  • Smart Device Development Managed Camera API raises an Unknown Exception ?!?

    Hi All, I tried to run the following code: Microsoft.WindowsMobile.Forms. CameraCaptureDialog myPictureTaker = new Microsoft.WindowsMobile.Forms. CameraCaptureDialog (); if (myPictureTaker.ShowDialog() == DialogResult .OK) { string myPicture = myPictureTaker.FileName; Image MyImage = ( Image ) new Bitmap (myPicture); pictureBox1.Image = MyImage; } myPictureTaker.Dispose(); The line that shows the dialog 'myPictureTaker.ShowDialog()' raises an unknown exception when run on my Windows Mobile 5 IPaq hw6915. The actual exception details are: System.InvalidOperationException was unhandled Message="An unknown error occurred." StackTrace: at Microsoft.WindowsMobile.Forms.CameraCaptu ...Show All

  • .NET Development getting info from a database

    I am trying to get info from a database, this info will be stored in variables, my question, is there any difference with binding the data to a variable that binding the data to a textbox for instance. that was my mistake, I swear I wrote this in......you normally should get an exception thrown since you did not read... if reader.HasRows Then    reader.Read()    intSTRMod = Convert.ToInt32(reader(1)) end if ...Show All

  • SQL Server updating batch record after exporting data

    I created a package in SSIS to export data from mutiple SQL server tables to a single flat file . Once the export is completed i need to update 2 tables ( a batch table and a history table) In the batch table I need to insert a record with batch # (system generated),batch date, status( success/failed), record count( no of records in the flat file), batch filename). In the history table, i need to insert a record for each of the rows in the flat file with the foll info. batch number,datetime,status(success/failed) My question is how do I get the batch status,record count, batchfilename for batch table update and how do i get to update the history table. BTW, i am executing this package as a SQL Server Agent job. I am new to Integra ...Show All

  • .NET Development error: c101008d

    Hi all, I have the following minor but annoying error whenever I build my application for the first time after modifying its code . "Error 2 general error c101008d: Failed to write the updated manifest to the resource of file ".\Debug\eConsole.exe". The process cannot access the file because it is being used by another process. mt.exe " The building is fine for the second time. In other words, whenever I modify the code, I have to build it twice because the first time always generates the above error. This is true for both debuga and release versions. This is not a big deal, but just a bit annoying. Could anyone offer some tip to fix this Thanks, hz Great diagnosis Anonymousojjojo! I had this pro ...Show All

  • Visual Studio Windows installer problems

    I ran into some virus problems a few days ago and thought that I had fixed them.  I then received access to install Visual Studio 2005 and Windows XP PRO embed SP2.  I checked for comapatibility of XP PRO with my computer and everything checked out fine.  I was too hasty in the install of XP PRO and forgot to make a system restore point before the install.  After the install everything seemed to work just fine but then windows installer popped up.  The windows installer box just says "initializing installation" and does nothing else.  If i click cancel on the box, it says "canceling installation" but does not go away.  Eventually it will give a message that says "retry or cancel" and I hit cancel and then ...Show All

  • .NET Development How can I have one and just one copy of my application running in the same time???

    How can I have one and just one copy of my application running in the same time I did somethign similar a while ago; doing something like this is so popular that I blogged about it here: http://dotnet.org.za/ernst/archive/2004/07/20/2887.aspx What makes it neat is that, if an existing instance of your application is already running, it will bring it to the foreground and maximize it. With the inspiringly named "helper" class (linked to from this blog-post) you're able to write: public static void Main() { bool firstInstance; Mutex mut = new Mutex( true , strSystemMutex, firstInstance); if (firstInstance) { try { Application.EnableVisualStyles(); Application.Run(new frmLogin()); } catch (Exception ex) { Excep ...Show All

  • Windows Forms Problem Deploying MS Speech Recognition (sapi.dll)

    Hi -Visual Studio Professional 2005 -Windows Forms -VB.NET -MS Speech Recognition Engine My application usese the MS Speech Recognition Engine to test the correct pronunciation of the users. It does work fine in my dev machine. And after deploying it on severall machines it does work also. But in others it does not. The difference between the machines is that the second ones don't have Office 2003 English version installed. They have the portuguese version of Office 2003. Since i cannot force the users to install the english version of Office (which does solve the problem) I have an huge problem in my hands. I hope someone can help me out in this. What I have done so far: 1-included the merge modules included in the MS Speech SDK in ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. What is MultiSampleQuality

    Hi, I'm curious as to what exactly MultiSampleQuality is. I understand how to set fsaa with MultiSampleType using a PreparingDeviceSettings Event Handler or just fiddling with the presentation parameters can calling Reset(). But to fulfill my curiousity, I was browsing the docs and saw little documentation on MultiSampleQuality. I understand I need to set the Type to NonMaskable to use the MultiSamplyQuality Or it must beset to an int less than the Type. What is that int all about and MultiSamplyQuality all about Thanks It doesn't mean anything on the Xbox. The 360 implements multisampling directly inside the special memory chip that holds your framebuffer data. This makes it obscenely fast, but no ...Show All

  • .NET Development How do I specify paramaters from my SqlDataAdapter.Update method?

    Hello, I have some code that takes the data from my local machine and then sends it across the network to an SQL server 7.0 backend. Here is my code: myDS.Tables("tblName").Rows.Add(myDataRow) mySQLDataAdapter.Update(myDS, "tblName") The problem that I am facing is when the second line runs, it adds to the data that is already in SQL server 7.0. What I want it to do is update the data on the network where the ID from the local machine is the same as the ID in the data on the network server. Is there a way to specify logic in the SQLDataAdapter.Update as such... mySQLDataAdapter.Update(myDS where id = id, "tblName") Thanks in advance. Hi, the pr ...Show All

  • .NET Development what is .net 2.0 frame work?

    what is .net 2.0 frame work how it help us how can we install this frame work which language it supports is it easy to learn is it support java The Microsoft .NET Framework version 2.0 extends the .NET Framework version 1.1 with new features, improvements to existing features, and enhancements to the documentation. The Microsoft .NET Framework version 2.0 redistributable package installs the .NET Framework runtime and associated files required to run applications developed to target the .NET Framework v2.0. The .NET Framework version 2.0 improves scalability and performance of applications with improved caching, application deployment and updating with ClickOnce, support for the broadest array of browsers and devices with ASP.NET ...Show All

  • Visual C# exception on eventhandler SelectedIndexChanged

    private void ComboBox1_SelectedIndexChanged( object sender, EventArgs e) { // ComboBox take data from a BindingSource this .TextBox1.Text = this .ComboBox1.SelectedValue.ToString(); } Why this code generate an exception NullReferenceException when closing the MainForm if I make this.. this .ComboBox1.SelectedIndexChanged -= new System. EventHandler( this .ComboBox1_SelectedIndexChanged); the exception is not generated but I haven't the event that I need !!! Can anyone help me Thank all. Soe Moe wrote: Hi.. Normally, the ComboBox1_SelectedIndexChanged event won't occur after Form closing event. Did you do anything in the Form closing e ...Show All

  • SQL Server regarding extended property

    hi, Can anyone tell me how to use the extended stored property like sp_addextendedproperty in java code Thanks, Meghna Hi, what u have given me is the SQL querry for using sp_addextendedproperty, but if i want to do the same thing from a java program will it be possible Also how can i view the added extended property using ::fn_listextendedproperty from a java program Thanks, Meghna ...Show All

  • SQL Server Restricting access to certain folders?

    Hi all, I have a user who I only want to provide access to a single folder within RS2005. I don't seem to be able todo this, they can either see everything or nothing at all. What am I missing Any help much appreciated. Kind regards Tarun Hi, thanks for all the replies. If I give the user access to the Home page, suddenly they can see everything within it, not just the folder I gave them access to. As it stands I seem to get everything or nothing, i must be doing something wrong! Kind regards Taz ...Show All

©2008 Software Development Network