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

Software Development Network >> Koltron's Q&A profile

Koltron

Member List

Ramanuj
Manuk
RGrizzzz
wtrn
eric_o
Rothariger
hunb
Bruce Baker
nileshdr1
Tryst
Vladimir Chtepa
Closer
install
Pavan Contractor
Rhubarb
AdriM
Jakein2006
Pbr4Me
George Tar
icewill
Only Title

Koltron's Q&A profile

  • Microsoft ISV Community Center Forums error message when closing ie7

    The computer administrator profile is not having this problem only the other users on my home computer. Upon closing the browser this pops up: iexplore.exe Application error The exception unknown software exception (0x0eedfade) occured in the application at location 0x7c812a5b We have ie7. Can someone help The best place to get help on IE7 is http://www.microsoft.com/windows/ie/support/default.mspx There is a newsgroup dedicated to IE issues and discussions: microsoft.public.internetexplorer.general I'm sure that someone has had the same issue and has a solution or a workaround. When you post something up there, be sure to clue them in to your operating system and which version number ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Matrix.Scaling Problem

    Hi I write a simple game with C# 2005 and Directx9. I load a mesh from file in my application, and then use Matrix .Scaling () method to scale up my model like below: device.Transform.World = Matrix .Scaling(10,10,10) I turn on lighting in my application. When I scale up my model, the model become darker. If I scale mesh more, the mesh become darker and darker. What can I do about this problem I don’t want that my mesh become dark when I scale it up. Regards… Hey, First of all you have to understand that the size of the scene is fixed (apparently another 4x4 Matrix) and when you scale something in the World matrix the lighting reacts accordingly. Just picture ...Show All

  • Windows Forms Setting up Picturebox with a dot grid.

    Hi, Using VS2005, I need to produce a picturebox (or Panel), with a grid of points ( dots). to use in the design of some line drawings. The reason for the dots, is to enable a number of the angles to be more or less constrained to 90 degrees. The idea is to be able to collect the X,Y axis of the pixel positions, using mousedown, draw the line and save each pixels positions for later use. Hope someone has an idea on this. Thanks Tailor private void panel1_Paint(object sender, PaintEventArgs e) { for (int x = 0; x < panel1.Width; x += 10) for (int y = 0; y < panel1.Height; y += 10) e.Graphics.DrawLine(Pens.Black, x, y, x + 1, y); } ...Show All

  • .NET Development Questions about .NET 3.0

    Hi, Want to clear few things. 1- .NET 3.0 can be installed with .NET 1.1/2.0 with XP Pro. All on one machine 2- .NET 3.0 works with VS2005 standard 3- Do I get any additional compoenets in VS2005 once I installed .NET 3.0 Or any changes in VS2005. anything you want to share please thanks Supported Visual Studio 2005 released (RTM) tool sets: Visual Basic Express Edition, Visual C# Express Edition, Visual Web Developer Express Edition, Visual Studio Standard Edition, Visual Studio Professional Edition, Visual Studio Team System Editions. * *Note: The Visual Designer for WPF is not currently supported on the Express Editions of Visual Studio 2005. ...Show All

  • SharePoint Products and Technologies Sharepoint development future? .NET 3.5 and beyond...

    We are at the beginning of developing for Sharepoint 2007. It has however occured to me that with .NET 3.5 on the horizon (with Orcas release of Visual Studio) will we be locked into coding .NET 2.0 (and 3.0 with the right wrappers) until Sharepoint is updated What is the roadmap for this as it has implications for our ability to keep pace with current technology if we are tied to the Sharepoint platform for development I have not seen any roadmap for the future of SharePoint nor its development platform which makes sense since things are probably just in the planning stage. Without trying to sound too flippant if you are worried about future directions you will never develop for right now ...Show All

  • .NET Development Passing parameter to stored procedure

    I am passing parameters to a stored procedure that accepts three parameters: @PerControlBegin, @PerControlEnd, @GreatPlainsCompanyCode in my catch block, i get the error below ERROR [42000] [Microsoft][ODBC SQL Server Driver][SQL Server]Procedure 'usp_GreatPlains_GarnishmentIntegrations_GetTransactionsByPerControl_Test' expects parameter '@PerControlBegin' , which was not supplied." Can anyone help with this Thanks ================================================== private void FillDataGrid(string sSelectStatement, string PerControlBegin, string PerControlEnd, string GreatPlainsCompanyCode) { OdbcDataAdapter daVendorInfo;  DataSet         dsVendorInfo;  ClearDataGr ...Show All

  • Visual Basic "user32" SendMessage (....)

    Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" ( ByVal hwnd As Integer , ByVal wMsg As Integer , ByVal wParam As Integer , ByRef lParam As any) As integer Private Declare Function SendMessageLong Lib "user32" Alias "SendMessageA" ( ByVal hwnd As Integer , ByVal wMsg As Integer , ByVal wParam As Integer , ByVal lParam As any) As integer that was how i declared them in VB6 this is how i am declaring them in vb .net 2005 Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" ( ByVal hwnd As Integer , ByVal wMsg As Integer , ByVal wParam As ...Show All

  • Visual Basic run in hidden mode when calling a .bat file?

    I call .bat file from my vb.net application.But I dont know How do I get the cmd prompt to run in hidden mode when calling a .bat file help me please... if I understand what you are asking, you wish to hide the command window. If so, try this: Dim theProcessStartInfo as new ProcessStartInfo(" filename.bat ") theProcessStartInfo.CreateNoWindow = true theProcessStartInfo.WindowStyle = ProcessWindowStyle.Hidden Process.Start(theProcessStartInfo) does this work for you is this what you are after ...Show All

  • Visual C++ Compile error: C3699

    First off, I would like to say that I am quite aware that I am supposed to use " ^ " instead of " * ". My question is this: In the code below, to my knowledge, filelist creates a new object identical to xml->ChildNodes[0]. Is there a way that I can create a handle to the object xml->ChildNodes[0] instead of duplicating it I have tried using " * " instead wich obviously brings up the C3699 compiler error, but im not sure what else to do. If it creates a copy, then any changes i make the filelist will have to be manualy copied to xml wich is what im trying to avoid. [code] using namespace System; using namespace System::Xml; String^ filename=gcnew String("some file name"); XmlDocument xml= ...Show All

  • Visual Studio 2008 (Pre-release) Are there tools to convert a Windows application (.net 2) to WPF windows application

    Are there tools to convert a Windows application (.net 2) to WPF windows application. ...Show All

  • SQL Server VS 2005 with SQL Server CE 2.0 for Windows Mobile 5 Devices ?

    I Have a smart device application developed in VS 2003 (VB.Net) and Sql server ce 2.0. Now I have upgraded the application to VS 2005 (VB.Net). My question is, Can the Application developed in VS 2005 can communicate with Sql server ce 2.0 and Sql server 2000 sp4 or Do I need to change the Sql server ce 2.0 to sql server 3.0 to work with windows Mobile 5 and Pocket PC 2003 SE devices You can develop with VS2005 and SqlCe 2. You'll probably have to manually change the references from SqlCe3 to 2. SqlCe 3: %Program Files%\Microsoft Visual Studio 8\SmartDevices\SDK\SQL Server\Mobile\v3.0\System.Data.SqlServerCe.dll SqlCe 2: %Program Files%\Microsoft Visual Studio 8\SmartDevices\SDK\SQL Server\Mobile\v2.0\Syst ...Show All

  • Visual C++ How to build strmbase.lib?

    I've got BaseClasses for DirectShow, and I don't know how to build strmbase.lib. I would be grateful for any sugestions. ...Show All

  • Visual C# How do you se the default size of a custom control?

    How do you se the default size of a custom control For some reason my buttons always get the default size 200 x 200 pixels. Is that size inherited /Lars No that isn't the default for a button but it is probably the default for your user control. You can set the Height and Width properties in your constructor (or more like InitializeComponent method) to change the default values. Note however that ultimately your clients will set the size of the control. Michael Taylor - 9/28/06 ...Show All

  • Visual Studio Express Editions how do i know my picture is a picture

    i have a programme part of which loads a picture in using a loaddialog box it all works fine. my question is - how do i know that the file i select is a genuine bmp, jpg or gif if its not then it crashes the programme when i try to load it into my picture box thanks in advance for any advice you should catch exceptions and handle them in case if the file format is invalid. example: try    Me.thePictureBox.Image = Image.FromFile( "path\filename.bmp ") catch ex as Exception    MessageBox.Show("Error loading image, it maybe invalid." & Environment.NewLine & ex.ToString()) end try   however you should catch the specific exception as its cheaper th ...Show All

  • Visual Studio 2008 (Pre-release) Access to an panel inside a ItemsPanelTemplate

    I have the following code: < Grid Name = " GlobalGrid " > < Grid.Resources > < ItemsPanelTemplate x:Key = " AnimatedItemsPanelTemplate " > < AnimatedPanel:AniTilePanel ItemWidth = " 110 " ItemHeight = " 100 " x:Name = " ListBoxAniTilePanel " /> </ ItemsPanelTemplate > </ Grid.Resources > < ListBox x:Name = " MasterList " ItemsPanel = " {StaticResource AnimatedItemsPanelTemplate} " IsSynchronizedWithCurrentItem = " True " /> </ Grid > In my code, I want to access to my AnimatedPanel so I've try the following: ItemsPanelTemplate template = this .GlobalGrid.FindResource( "AnimatedItemsPanelTemplate" ) ...Show All

©2008 Software Development Network