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

Software Development Network >> Philippe Cand's Q&A profile

Philippe Cand

Member List

ajcanable
ceedee
Wolfgang12345
Marie-Thérèse
ming_68
PLMK
Karthick Sukumaran
Chris Marts
Beej
Vishalgiri
GDigrego
d2army
Tigerwood2006
TrevorHughes
Luislcm
Ed_Zero
kadabba
Neo the 1
DrDeath
GRiNSER
Only Title

Philippe Cand's Q&A profile

  • Visual Basic Setup Produced By "Build, Publish" Gives Error After I Uninstalled VB With CD And 'Removed' All Installation CD Programs

    Hello, I created a setup file from my application. I did this because I want to put my application on other PCs without installing Visual Basic. I basically want to just run the applicatoin on other PCs. What I did to create the setup file was within VB I clicked "Build" then "Publish." I then wanted to test the setup file on my PC, so I removed everything given to me by the VB installation CD! So, I uninstalled VB using the installation CD. But, I also had to go to the control panel to remove some of the programs that the installation CD gave me. I did this because the uninstall via the CD left things on my system that the installation CD gave me. When I was done, the control panel, remove programs listing ...Show All

  • Microsoft ISV Community Center Forums VBA Help File throws Internet Explorer Script error when I click on a link

    Hi. I tried to find this subject in the forum, but wasn't able to locate it, so I'm sorry if this has been answered somewhere... I have a new dev machine at work with Office 2003 (Office 11), VB6, and .NET Studio. The problem I'm having is that the VBA Help isn't working when i'm developing in Office's VBA editor. The appropriate "context sensitive" page pops up, but the neither the "See also", "Methods", etc hyperlinks, nor the hyperlinks in the text work; I receive an "Internet Explorer Script Error", and the message "An error has occured in the script on this page." and a URL that seems to point to the HTM file (e.g. "mk:@MSITStore:C:\PROGRA~1\COMMON~1\MICROS~1\VBA\VBA6\1033\VbL ...Show All

  • Visual Studio Express Editions Visual Basic Problems Using DirectX 8.0

    ok, What I really would like is to download visual basic 6.0, but I cant find anywhere to do that.. My problem with visual Basic express edition, is I cant seem to get my reference to Directx 8 to work, I have reinstalled directx 8 and VB but it still wont work for me, any ideas> I am programming in BASIC and am very new at it... if anybody could help me I'd be very thankfull, you can contact me by emailing me at Lukeskiwalker@bellsouth.net , or posting here... Thank you very much, Wesly can someone help me i tried to use my old code from VB6 on VB2005 and i realize i have to imports many const from DXVBLIBA just to set some constant value, can it be simplified also some of the proc ...Show All

  • Windows Forms DataBinding , wrong values

    Hi! I make DataBindings in my app and don't work good, binding controls show erroneous values. I have two DataTables, PersonsDataTable with columns{"ID","NAME","LNAME","PHONE","LANG_ID"} , and LangsDataTable with columns {"ID", "LANG"}. I'm trying that when i change the value in cmb_Combo, all controls changes to the its respective new value, but altought all controls changes its values ... ALL VALUES ARE WRONG !! I don't why, and i don't know where obtain this values, but point to an erroneous register .... i'm desperated, because i thought that was a correct values, and today, by chance, i test the values with the SQLServer ... surprise! Please help. I stoped the code to see the DataTables content and is correct. ...Show All

  • SQL Server Automating Multiple Package execution

    Hi, Can anyone tell me the process of executing multiple packages in SSIS I have 10 packages which should be executed in an order and should be automatically executed once in a day. Can someone suggest me any such process which will help me to achieve this Regards, Explorer You can build a main package that integrates the other packages in sequence and then create a job that executes the main package when you want in a schedule. Regards, Raul ...Show All

  • Visual Studio Custom Wizard

    How Can i preform validation on Project Name.. i want to enforce and directory to be with My prefix for example i want that all my projects will start with Avishay Hi Avishay, sounds like you would need to create a template for your projects. You can do this simply by opening a default project in VS and then using the export template menu command (file->export template). Make sure you fill out the default name to include Avishay at the begining. Then whenever you start a new project, choose this newly created project as the starting point. You can read more details about this and other .vstemplate features in this article. http://msdn.microsoft.com/vstudio/default.aspx pull=/library/en-us/dnvs ...Show All

  • Visual C++ Microsoft C++ Runtime Library Problem

    My computer runs "Microsoft C++ Runtime Library" when I am not using it. Afterward, my cursor gets an hourglass that does not go away. Any ideas Thanks for the response. I have narrowed it down to two possible sources, a "U3 Verbatim" Launch Pad for a USB drive or "RoboForm2Go" password software, both of which are in my Verbatim USB drive. Once again, my thanks! ...Show All

  • Windows Forms Update tables using stored procedures

    Hi all! I saw here similar questions but did find any proper answer. So, again... I have two tables in the DB. The master table has ID of the unique record from the details table. To retrive and store data I have two stored procedures: ALTER PROCEDURE dbo.GetAllMovies AS SELECT dbo.Movies.ID, dbo.Movies.MovieName, dbo.Genres.GenreName, dbo.Movies.Year, dbo.Movies.Description FROM dbo.Genres INNER JOIN dbo.Movies ON dbo.Genres.ID = dbo.Movies.ID ALTER PROCEDURE dbo.UpdAllMovies ( @ID int, @MovieName nvarchar(50), @GenreName nvarchar(50), @Year int, @Description nvarchar(1024) = null ) AS begin declare @GenreID int select @GenreID = id from genres where genrename = @GenreName UPDATE Movies ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem with transformation of world

    hi I have a problem with te transformation of world of sprites, i like move the sprite to the x=200, y=200, but its not work, the sprite stay in the initial position (0,0,0) GraphicsDevice _device; SpriteBatch _sprite; BasicEffect _efeitosBasicos; public clsSprites( GraphicsDevice device) { _device = device; _sprite = new SpriteBatch (_device); _efeitosBasicos = new BasicEffect (_device, null ); _statusSprite = new StatusSprite (); } public void Render( ) { _sprite.Begin( SpriteBlendMode .AlphaBlend); _efeitosBasicos.Begin( EffectStateOptions .Default); _efeitosBasicos.CurrentTechnique.Passes[0].Begin(); _sprite.Draw(_frames[_frameAtual].Textura, new Vector ...Show All

  • .NET Development Unable to add unsigned attributes to existing CMS object

    Hi, I'm trying to add unsigned attributes to an existing cms object, like: SignedCms cms = new SignedCms(); cms.Decode(bytes); // Add unsigned attribute cms.SignerInfos[0].UnsignedAttributes.Add(...); byte[] newCms = cms.Encode(); However, for some reason the attributes doesn't get added to the collection. Does anyone have any suggestions Hello, I also want to add a custom unsigned attribute in CMS object but I cant find any way to do so. Can somebody point me to some example on internet I am googling but no hope so far. Regards, Hashim Saleem ...Show All

  • .NET Development My database doesn't update !!!???

    I wrote a simple program with ASP .NET that modify data in a table and I'm using SQL server 2005 Express edition as my database engine. But when I modify data in a table (in the webpage) and then when I try to update the database, nothing happends, it even doesn't give me any error, and when i try to see the table again nothing is updated in the table. These are the things that I have done: 1- I gave permission to ASPNET and NETWORK SERVICE so they can Select, Update, Delete,... on that table. 2- I gave permission to ASPNET and NETWORK SERVICE to the table itself. 3- I evern assign the ASPNET and NETWORK SERVICE as the db_datareader and db_datawriter and db_owner. What else should I do Is there anything that i missed ...Show All

  • Visual C++ WMI or not WMI?

    Hi! Help me please to recognize situation : CPU USAGE 0%, all windows are not responding when IEXPLORE/EXPLORER waiting for timeout(or searching the net) by using WMI or if i should not use WMI on this case,tell me PLZ how i could do it. (CPU usage=0%,but all opened windows or part of them are not responding while internet explorer or windows explorer waiting for 'timeout' . This situation looks like deadlock or delay for a while,or because GDI does not responce proparly because it cannot redraw window till it gets answer back. ) 10x, Maria. For WMI issues, please use the newsgroups at http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.win32.programmer.wmi&lang=en&cr=US OTP Thanks, Ay ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. loading textures on array

    Hi i am making a simple pool game and have my balls in an array (each ball runs through a class to set the properties. i have a Texture2D property to set the texture so i can set the white ball colour and yellow and red ball colour. however i have set up the array and try to draw but it will not accept the array property as a texture it keeps saying it is of null value even though i have set each of the balls here is the code below as you may understand a little more. //ball class for each ball public class balls { public Texture2D tex; public float x; public float y; public Vector2 v = new Vector2 (); public float r = 12.5f; public float m = 10; } //array of ball ...Show All

  • Visual Studio Team System Is CTP7 able to use projects created in CTP6?

    I am curious if we will be able to use projects we created in CTP6 with CTP7 or will we have to recreate these projects ...Show All

  • Smart Device Development How to Edit Task in Smart phone emulator[windows mobile 5.0]

    Can we Edit Tasks in Smart phone emulator[windows mobile 5.0] I can't see the edit option in task in the smart phone emulator. Also I am using i-mate sp5m device it also have no option for editing the task. I have to know can I edit a task without any third party software or not. It could be that I don't able to found how to edit the tasks. Please Help Moving this to Smart Devices General Forum where it has got better chances of being answered. -Thanks, Mohit ...Show All

©2008 Software Development Network