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

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

CSharpCoder

Member List

-JW
Gary D
Kolja
Frederik Vantroys
Bander ALSHARFI
nwave
david2929
msmuser
JP2006
JLovero
Nickeay
Justin Voshell
ReneeC
gauls
Ultrawhack
GLutz78
NMM
mitasid
mumato
Luis Esteban Valencia Muñoz
Only Title

CSharpCoder's Q&A profile

  • Windows Forms drag user controls to winform(VS2005)

    Hi: When I used vs2003, it works nicely that once a new user control created, it will show on toolbox and I can drag it into any winform, but in VS2005, it doesn't show in toolbox, and I even cannot drag it into any winform from soluction explorer, the only thing I can do is to right click toolbox and add the dll file of the control to toolbox, it is really annoying and inconveient, so any one can figure out the best way to drag user control like VS2003 into a winform Cheers HanJ srinivasintouch wrote: Hi, Do like this, Right click on toolbox, ---> choose items --->Browse --->select the dll of ur usercontrol, now it will added to ur toolbox. Now u can Dr ...Show All

  • Windows Forms Closing a Modal Form that is Showing a MessageBox Form.Hide() works Form.Close() does not.

    I have a form that is shown using ShowDialog. The form is the UI for a long running process. The user may choose to cancel the application by pressing the form close button (red X) and at that time a Yes/No messagebox will appear. If the long running process completes while the messagebox is shown I wanted to close the messagebox and then the form. If the messagebox is not shown then the form Close method works. If the messagebox is shown then only the form Hide method will close the form. I am concerned that I am doing something wrong so I am looking for suggestions as to the correct method to employ . C# .Net 2.0 sample code that will demonstrate the issue is below, to get it to work change the this.Close to this.Hide. Start by creating ...Show All

  • SQL Server issues about sp1

    I update my sql to up1,however encounter one question when defining cache in lookup control prompt:Failed to set property "Maxmemoryusage64" on component "lookup" and i can not set not using cache size (64 bit) any idea thanks ...Show All

  • Visual Studio Express Editions Which API I should use to refresh a directory ?!

    I try to refresh (like pressing F5 button in windows) a special folder via programming ! But I don't know what should I do! Please help me MadAboutC# is correct about using the Directory/DirectoryInfo classes to refresh the directory. in VB.NET:   Dim theDirInfo as new DirectoryInfo( path ) theDirInfo.Refresh()     ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Skinned Animation Tutorial

    I have released a tutorial set that covers the following topics: creating a file tokenizer, creating a content importer, creating a content processor, creating a content writer, creating a content reader, creating your own vertex format, creating a bone pose table, creating a skinned animation controller, and using the controller to view a skinned animation. It is available here: http://dastle.spaces.live.com/ I turned it into a codeplex project: http://www.codeplex.com/animationcomponents Should work on all ascii .x files that have less than 56 bones, but is missing some important features like tweening between animations and running on xbox.  Also, if you want the most stable versions, you'll have ...Show All

  • Windows Forms how to make "About" form a cool flat one?

    Hi, all... When I create the "About" windows form, there will always be "minimum", "maximum" and "Close" on the right top corner... I want to make the "About" Form just a flat picture with cool color and picture... and when user click on it, it will be closed. I see some this kind "about" in some application. I like it very much. How can I realize it Shall I design and create the flat or 3-D picture by myself and then pretend it to be the "About" form Then can I close it when user click on it Besides, may I add some music too Thanks a lot! Thank you Andrej Tozon! It is useful and I've tried to make my own cool background image.  Is there a ...Show All

  • Visual Studio Permanent and Tempoary CommandBars

    Hi, I'm new to VS AddIn developement and have run into a problem. I'm trying to get my 'Command' to appear on the "Item" menubar of solution explorer. However, if I create a command in the OnConnection() method when the 'connectMode' is 'ext_cm_AfterStartup', i.e. it's a temporary AddIn, then the command's 'IsAvailable' property is set to false and nothing appears in the context menu. Alternatively, if I create the command when the 'connectMode' is " ext_cm_UISetup", i.e. it's a permanent AddIn, the command's 'IsAvailable' property is set to 'true' and everything works fine. Now, to be honest, I'm don't know whether the command's 'IsAvailable' property is anything to do with it but it seemed like it ought to. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. is there no tuts in text not video lol?

    is there no tuts in text not video lol I can't stand video tuts not to be mean to people who make movies there great but im a learner by reading guides. I can't find any n00bie starter guide.. Any advice would help man years ago look for adobe movie tuts never found any now all i can find xna movies no text guides.4 http://www.riemers.net/eng/Tutorials/XNA/Csharp/Series1/Starting_a_project.php Follow it from start to finish. ...Show All

  • SQL Server How to deal with the problem? "Errors in the OLAP storage engine: "

    Who can tell me how to result the problem Errors in the OLAP storage engine: The attribute key cannot be found: Table: FactSalesSummary, Column: ProductKey, Value: 212. Errors in the OLAP storage engine: The attribute key was converted to an unknown member because the attribute key was not found. Attribute Product of Dimension: Product from Database: Teradata Adventure Works Test, Cube: Teradata Adventure Works, Measure Group: Fact Sales Summary, Partition: Fact Sales Summary, Record: 1. Errors in the OLAP storage engine: The process operation ended because the number of errors encountered during processing reached the defined limit of allowable errors for the operation. Errors in the OLAP storage engine: An error occurred while process ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem wih Beta 2

    Hi, i was trying GSE beta 1. It was working ok. Now i have just installed Beta 2 and i got problem. When i try to do: m_spriteBatch = new SpriteBatch(GraphicsDevice); i get exception "The method call is invalid." also when i try to run code that we can find in XNA GSE Programming Guide : Use BasicEffect i get exception "Both a valid vertex shader and pixel shader (or valid effect) must be set on the device before draw operations may be performed." in line "graphics.GraphicsDevice.DrawPrimitives...." does any one know how to fix this problems thanks for any help! Ditto, here on my laptop. tankImage = content.Load< Texture2D >( @"Content/Graphics/tank" ); spriteBat ...Show All

  • Visual Studio Express Editions Convert to upper case Visual Basic 2005

    hi I have one question. for examle, when i press the button, all words conteined in a RichTextBox are converted to upper case. Thank you. Are you asking how to convert the text to uppercase, or is it already converting to upper case and you're asking why it's converting to upper case You original post suggested that it was already converting to upper case when you pressed a button. ...Show All

  • SQL Server SQL Server Not An Option As a Data Source

    I'm in VS 2005 trying to access a database running on MS Sql Server Express 2005 (local machine). In VS i choose Data | Connect to Database | and then i select change on the Add Connection Dialogue box. For some reason I'm only given two options which are the following: MS Access Database File or MS SQL Server Database file. I've seen options in books showing MS SQL Server but that doesn't show as one of my options. I'm running the Server express locally and can access it through my Management Studio Express as localmachine\sqlexpress. Is this a limitation of Express or do i need to adjust some options in the IDE Any help would be great. jeremy hi Jeremy, it's a limitation of VS.Express.. the Server ...Show All

  • Windows Forms "Windows Handle already exists." problem

    Hi, I have an application in which I open a form from another form as a dialog. There are some buttons on the opened form one of which closes the dialog form. If i open the dialog form and then close it by pressing the close button, an exception is raised with the message " Windows Handle already exists." Can any body tell my why this exception is raised and what is the work around Thanks in advance, Wasif Ehsan. ...Show All

  • Visual Studio Team System Methodologies & Patterns

    Any suggestions on which methodlogies we should choose What is preffered for .NET How successfull are Agile and Extreme Programming in real world Please suggesst some books and/or online article. Thanks. Michael: Thank you very much for the sincere advice, it was much appreciated. I have never worked with any methodologies before and the co. I work for is now migrating to .net from classic asp. Though I have experience with .net I never had a chance to work for a team that used any process. I have couple of friends that suggested Agile and/or Extreme Programming and since we are in the process of migration I thought it would be good to look into methodologies while we are at it. Would you suggest any book on either XP or Agil ...Show All

  • SQL Server Super Join - is Merge Join the answer?

    Is there a way to do a super-table join ie two table join with no matching criteria I am pulling in a sheet from XL and joining to a table in SQLServer. The join should read something like “for every row in the sheet I need that row and a code from a table. 100 rows in the sheet merged with 10 codes from the table = 1000 result rows. This is the simple sql (no join on the tables): select 1.code, 2.rowdetail from tblcodes 1, tblelements 2 But how to do this in SSIS Thanks - Ken This is how I did it... Used a Data Flow task to pull the spreadsheet into a temp table, and then I did a "Insert into tbl3 select from tbl1, tbl2" Execute SQL Task. I would have preferred a Merg ...Show All

©2008 Software Development Network