Software Development Network Logo
  • Windows Live
  • Visual FoxPro
  • Game Technologies
  • VS Team System
  • Visual Studio
  • VS Express Editions
  • SQL Server
  • .NET Development
  • Windows Forms
  • Windows Vista
  • Visual C++
  • Smart Device
  • Microsoft ISV
  • Architecture
  • Visual C#

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

Pony

Member List

ITBOB
udooz
Stephan Aiche
Jaanus Kivi
Adam West
sos1107
NicolasG
sshetty
CamCam
SVadali
M Sivakumar
amr_sawy
PingCrosby
Tom3030
cjkarn
JeffGoneMad
Florent Montsegur
kian_z20
Devon Kyle
blacklight
Only Title

Pony's Q&A profile

  • Windows Forms Problem with showing form with small size.

    I have a problem with showing small form – I want the form to be in size (5,100) but when I’m trying to show it the form size is bigger then I want. My code: Form form = new Form(); form.StartPosition = FormStartPosition.Manual; form.ShowInTaskbar = false; form.FormBorderStyle = FormBorderStyle.None; form.Size = new Size(5, 100); form.MaximumSize = new Size(5, 100); form.Show(); // form.Size = new Size(5, 100); - works but with flicker I can change size after showing the form but then I have flicker. What can I do If you are using franework V2 you can set the FormBorderStyle property to 'FixedToolWindow ...Show All

  • Visual C# timer on stack variable not always working

    Hi, I use a timer to reconnect a TCP client when it disconnects. When I create the timer on a stack variable and I open/close other forms in the project then the timer does not fire. When I use a variable in the class then it works. Is this s bug, or something I'm not aware off This works fine:         System.Threading.Timer reconnectTimer;         private void ReConnect()         {             reconnectTimer = new System.Threading.Timer(ReconnectTimeout, null, 1000, 0);  &n ...Show All

  • Visual Studio Express Editions Install Problems

    I removed previous versions of VS express editions as stated. I first tried to install VC++ with the library and sql. I first got the 2908 error then the detailed 1935 error. I left Microsoft .Net 1.1 and it's hotfix installed. What do I do to correct this I uninstalled Microsoft.NET Framework 1.1 and reinstalled it. I still get the 2908 and then the 1935 errors. It doesn't matter if I'm trying to load VB or VC++. What's the fix ...Show All

  • Visual Studio Express Editions GridView with changed Header Text wont Update

    EDIT: see 2nd post for more up to date testing results. I'm having a few mildly frustrating issues with these components because finally they are usuable for me (2003 couldn't bind parameter values to controls), it's almost working except for one small niggling problem... I have setup an SQL database connection with my SqlDataSource and bound it to my FormView. I have manually verified that all 4 of my SQL statements exist. The formview displays the data in text boxes after clicking the provided "edit" LinkButton but when I click on Update, nothing happens. The data in my SQL database does not change. I know it is executing b ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Does DirectX have the OpenGL equivalent of Display lists?

    As the subjects asks, is there an equivalent  feature in DirectX Basically I want to just render about 200 spheres most of which will be the exact same copy of each other. Drawing each sphere independently of each each other gave quite poor performance in OpenGL until I used Display lists which enabled me to save a fixed set of drawing commands and just call the display list instead of redrawing the sphere each time. That gave a HUGE boost in speed. With 40% CPU usage I could easily render about 200 spheres at 60FPS in OpenGL. I want to  know if directX has a similar feature. I've searched a lot online and ...Show All

  • Windows Forms ADO - aggregate functions

    Can someone please confirm my understanding of this code snippet dtParent.Columns.Add("P5Sum", GetType(Decimal), "Sum(Child(GroupBy2Summary).P5)") This code snippet should add a column to the parent table named P5Sum, which will contain the result of the sum of all rows of column P5 of the child table.  Is this correct tia, Todd I thought some may benefit  ...Show All

  • Windows Forms I can't rename a file in my language(Greek) on Visual Studio Istall setup project, and work?

    I can't rename a file in my language(Greek) on Visual Studio Istall setup project, and work. I put a file in a directory in the (File System) Application Folder on the Visual Studio Setup Project, and it's name is in my language(Greek). After setup, the file is not displayed correctly in the target folder. (_) Can I fix this and how There is another forum for Visual Studio issues and another one for Setup projects. Perhaps you should send this post there! Dimitris ...Show All

  • Visual Studio Tools for Office Problem with Canceling Outlook application opening under .Net?

    Hi,   I’m having problems while canceling outlook opening under .NET, using VS.Net2003 & outlook2003. In my project I added a reference to the ‘Microsoft Outlook 11 Object library’ and created a new outlook application with the following line: Microsoft.Office.Interop.Outlook.Application app = new Microsoft.Office.Interop.Outlook.Application(); Once the above line is executed, there is an attempt to open a new outlook application and if outlook was not opened, a windows with the title ‘Microsoft Exchange Server’ is opened asking whether to ‘connect’ or ‘work offline’ or ‘cancel’. If I select ‘cancel’ the same windows ...Show All

  • Visual Basic Why does CTRL+X, CTRL+V etc. not work?

    When i open a child form, like this: frmEl.MdiParent = Me frmEl.Show() Then i can't use the standard shortcutkeys like CTRL+V etc. in a RTF box. If i open the form without the  frmEl.MdiParent = Me, then all works perfect. Anybody knows what are going wrong I have made other aplications, where everything works ok, but not with this one. I have tryed to make a empty form, only with a RTF boks on, it's the same result. I am using Visual Studio 2005 Please help Check the Shortcuts enabled property of the richtextbox control is set to true   ...Show All

  • Visual Studio Tools for Office Is it not possible to update tables with ListObject without dataset (created through wizard)

    Hi, I am new to VSTO. I am still not getting any suitable answer for my earlier posts. Let me expalin my actual problem: I have used following code to bind the ListObject: DataSet dsTrims = new DataSet (); dsTrims = MyDataAccessLayer .Provider.ExecuteDataSet(System.Data. CommandType .Text, strWhere); this .bindingdataSource1.DataSource = dsTrims.Tables[0]; myListObject.AutoSetDataBoundColumnHeaders = true; myListObject.SetDataBinding(bindingdataSource1); My where string is as follows: strWhere = " SELECT tablename1.tb1col1 , tablename1.tb1col2 , tablename2.tb2col1 , tablename2.tb2col2 , tablena ...Show All

  • Smart Device Development C++/CLI?

    I distinctly remember being told that it would be possible in VS2005 to use C++ to develop using the .NET CF. I can't find any way to create such a project however. What gives You sure can use C++, but native only. Managed C++ support was never promised: http://groups.google.com/group/microsoft.public.dotnet.framework.compactframework/browse_frm/thread/a184d802972e440c/d8f4085cc37d6d39#d8f4085cc37d6d39 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Animation controller question

    Hi, I have a specific question about the animation controller in d3dx9. I have used it to load an animated mesh from .x files for game purpose but have hit a few walls with regards to : animation blending. My experience was as follows: I called the animation name as exported from in .x file , lets say: "walk". and the controller did it perfectly but the animation would switch instantaneously as it should . I would be very interested so hear if anyone has managed to actually achieve the smooth animation blending and how and with which class/functions. Is it possible to do it with just d3dx9 and maybe i should look at middleware sof ...Show All

  • Visual Studio Text Box Action--Jump to URL

    I love the text box action Jump to URL. Works great when I specify a URL like http://www.microsoft.com . I tried a URL File://c:\hello.exe That does not work...it does if I type it into IE. Is there a way around this The report is running in a Winforms exe and would be nice to invoke another Winform application. Handles the DrillThrough event on the ReportViewer. When the event hits, always cancel it and then call the executable in the event handler. I have done this to load up a screen in my app. ...Show All

  • SQL Server Error 18452

    Hi, If I connect to SQLServer Express via Windows Authentication it works fine. But if I use SQL Server Authentication it doesn't work with a new created user and sa (with a new password) too. I turned mixed mode on, registry key HKLM\Software\Microsoft\Microsoft Sql Server\MSSQL.1\\MSSQLServer\login has the value 2 and all ports are set to 1433 but there is still error 18452. Any suggestions Did you restart the server service HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Windows Forms Refer to controls trouhg Forms

    Hi I`m tray to reuse some of my controls(Imagelist,...) that are in my mainform(MDIParent) in my MDIChildForms. What I trying to do is from my MDIChildForm refer to the imagelist in the MDIParent,so if I have a set of buttons in my MDIChildForm, I want to set the Image Property trhough the Imagelist in my MDIParent, without have to put an Imagelist in every MDIchildForm How can implement this, Thanks You can get the parent form for a child form with the MdiParent property . For instance someobject.Image = this.MdiParent.imageList1.Images[0]; ...Show All

©2008 Software Development Network