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

Software Development Network >> Della Torre's Q&A profile

Della Torre

Member List

magikalpnoi
ratslav
RLovelett
w014nd
Kevin Rodgers
Bubo
steff111
uwcodeman
SGI101
nan1953
Kevin Rodgers
WinFXGuy
Neil_FD
Pascal Jette
madenci
BetsyT
Rodrigo Acosta
Chris Dunaway
cb3431
Andy Bui
Only Title

Della Torre's Q&A profile

  • Microsoft ISV Community Center Forums Elegance (and performance) Problem

    Hello, I developed a class (class CMatrix, that holds a lot of functions not really related to the other class) to use in another class. Currently, it's working real fine, but I don't know if there's a better way to handle with this. What I do today is, in the main class: Dim Matrix As CMatrix ... somewhere in a sub or property Matrix = CMatrix.MergeSort(Matrix) ... rest of the code If my CMatrix could acess the data in the main class, it would be fine, bc I wouldn't have to pass nothing. Thx in advance =] In most cases, you don't want to use pass by reference. It usually make the function unintuitive, unless you need to output more than one variable from a function. See those common ...Show All

  • Visual Studio Express Editions Reports in VB Express Edition

    Hi friends i have been working over a project in vb express edition, but the problem is , in express edition i dont have crystal reports, this is what i think if there is Crystal Reports in EX. Ed. Please let me kno how to install and use them, or any other alternative. plz help... The good news: You can use crystal reports with Visual Basic Express The Bad news: There are serious limitations with what you can do!!!! The details: I am writting an app that creates monthly reports of sales for all customers of a specific type. I basically runs in batch and spits out a pdf format of a report showing the details for each customers monthly transactions, yearly totals, contanct info ...Show All

  • Visual C# Private constructor

    What is the use of a private constructor as it is not getting called with an object creation in .net/c# I would greatly appriciate if anybody could clear my confusion here. Thanks in Advance..................... Use a private constructor to implement the Singleton and Class Factory design patterns. You'd supply a static method that creates the class instances for the client, thus carefully controlling how they are created and initialized. Missa's example of OleDbTransaction is different, its ctor is marked "internal". That's another technique where you allow only "trusted" classes within the same assembly to create the object. Trusted, as in, can be counted on to properly initialize the object. Possib ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. F14 XNA Game with Full Source

    Well here it is. I finally got my first game into a releasable state. Screenshot, video, and full source available after the jump. http://aroganworld.blogspot.com/2006/09/f14-xna-game.html I couldn't have done it without the great help from this forum (and all those xna sites). Let me know what you think.   arogan wrote: Thanks. Oh and if anybody is interested in hosting the file let me know.  I really don't have a good place to host it.  It's around 4.4MB.   http://www.sourceforge.net is another good place for hosting open source Great game to be your first shot at it! : ) ...Show All

  • SQL Server upgraded from 2000 to 2005, Trigger won't fire now..

    Hi all, I recently upgrade my db from sql server 2000 to sql server 2005. I had a trigger that was working perfectly prior to the upgrade. It is an update trigger. Now when an sp executes and updates my table the update trigger does not fire. The really weird thing is when i manually execute an update in a query window against that table the trigger DOES fire. Is anyone aware of how this would be possible Why would the trigger execute when the update is run manually as opposed to when the stored procedures executes the update Are there server/system/session setttings or permissions that could cause the trigger to not fire This can only be due to the db upgrade. Nothing has changed in regards to the code. I have checked and rechecked that ...Show All

  • .NET Development Security for new serial port class

    Does anyone know what permission is needed to use the System.IO.Ports class eg. SecurityPermission sx = new SecurityPermission ( SecurityPermissionFlag .Execution); In other words What SecurityPermission is needed I am trying to build a WinForm control to run in a browser. Thanks in advance. PatC Looks like " unmanaged code ", see http://msdn2.microsoft.com/en-us/library/system.io.ports.serialport.aspx Eeeeh not something that will be easy to accomplish, and probably not to be recommended either. See http://msdn.microsoft.com/msdnmag/issues/04/04/SecurityBriefs/default.aspx for some thoughts on such light restrictions. The last guy asking here about increasing th ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 2D animation

    I am trying to make some simple animation, like 5 frames. I have all the bmp files with the frames I want. How do I allow them to be animated in my game and how do I string them together. Each time Draw() is called, you can draw the next picture in the sequence. And then when you hit the last image, revert back to the first one. You can also add a delay between each frame, so the animation will run slower, and at the same pace on every computer. ...Show All

  • Smart Device Development Command Button (C#.Net VSN 2005)

    Hi I have 100 buttons on GroupBox of a form. ie., Button1, Button2....Button100. I need to change the Color of their texts in a single event. If so far, I don't need to mention "this.BtnSurah11.ForeColor = System.Drawing.Color.Maroon;" for each and every buttons. So is it possible to build up a loop for 100 sequences which define the object (button), from the loop can we change their property For example int i; for (i=1;i<=100;i++) { String Str = "Button" ; Str + i .forecolor = System.Drawing. Color .Maroon; } or foreach ( Control control in this .Controls) { if (control is Button ) ...Show All

  • Visual Basic Compairing text

    If I want to compair the textbox text of several textboxes how can I ignore the default blank "no text". 'But of course the backcolor is red when someboxes are not filled If a7.Text <> a8.Text AndAlso a7.Text <> a9.Text AndAlso a8.Text <> a9.Text Then Panel1.BackColor = Color.SteelBlue Else : Panel1.BackColor = Color.Red End If I don't know thats why I was asking. I want a better way I thought I would show you what I had come up with I'll try the loop but have to read more about it. I've only been codeing a month. ...Show All

  • SQL Server Using FreeTextTable Conditionally

    Hello all! I have a stored procedure that accepts a parameter @SearchTerm that may be null. In my WHERE clause, I check for all records where @SearchTerm is null, or are LIKE '%' + @SearchTerm + '%' when not null: SELECT (some records) FROM (some tables) WHERE @SearchTerm IS NULL OR (some fields are LIKE '%' + @SearchTerm + '%'); I am trying to use FTS with a FreeTextTable to make our search ability more robust: SELECT (some records) FROM (some tables) JOIN FreeTextTable(tableName, columns, @SearchTerm) ft ON ft.[KEY] = tableName.[KEY] However, because @SearchTerm can be null, meaning the user is not filtering our records by a search, doing a JOIN to a FreeTextTable throws an error (cannot have null as search string). Ple ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D picking with the mouse combined with a moving camera...

    Hi all, I'll get right to the point. My camera is defined using the following code... cameraworld = Matrix .CreateTranslation(xplane, yplane, 0) * Matrix .CreateScale(zoom) * Matrix .CreateRotationZ(angle); view = cameraworld * Matrix .CreateLookAt( new Vector3 (0, 0, 100), Vector3 .Zero, Vector3 .Up); projection = Matrix .CreatePerspectiveFieldOfView( MathHelper .ToRadians(45), ( float )graphics.GraphicsDevice.Viewport.Width / ( float )graphics.GraphicsDevice.Viewport.Height,1.0f, 1000f); effect.View = view; effect.Projection = projection; I've also got code to allow me to place objects in the game world, after unprojecting the mouse points and finding the point of intersection with my XY plane. Only probl ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Game and GameComponent Feedback

    We've been combing the forums and the Connect database for bugs, feedback and suggestions around the application model. We still have a small amount of time to consider any other feedback you may have. So this is the thread that you post your latest likes or dislikes with Game, GameComponent, services, etc. Please scan the other threads before posting here, I'd like to just gather things that haven't already been discussed or reported elsewhere. Thanks! proposed components to include MenuComponent CameraComponent RadarComponent (2D postion view of objects in 3D world) TerrainRenderingComponent StatusComponent (Display info) and .. SceneGraphComponent Matias ...Show All

  • Internet Explorer Development Outlook 2003 Email Headers not Printing after IE7 upgrade

    Does anyone know if there is a fix for this yet It seems to be major issue without any reliable work around other than hitting forward button then printing the email. Help! Wahl04 Check your version of .NET. If you are still running .Net 1.1 then install .NET framework 2.0. That seems to have fixed the problem with me. Looks like some of the code is designed for 2.0 framwork. Cheers!! ...Show All

  • Visual Studio Express Editions Help regarding the learning resources

    Hi, I followed the learning resources on http://msdn.microsoft.com/vstudio/express/visualcsharp/learning/default.aspx Lesson 9: Databinding Data to User Interface Controls. Here the problem I encountered: After adding the database and the data source. I selected datagridview than drag and drop the customer data source to my form. Started the program, I realise from the datagridview I could not save changes to my database. Why is this so Is the save button not programmed correctly well the datagridview will not automatically commit changes to the database but rather the datasource (Dataset for example) so you would need to program a button to save the info back to the database using the DataAdapter Update method. ...Show All

  • Visual C# Object/Entity/Class Generator from DataSet/Schema

    Hi, I've googled around and searched this forum as well. I'm looking for a generator to make an entity class from my dataset. Currently I'm using XSD in an pre-build event (VS2005), which looks like this XSD "$(SolutionDir)MyDataSet.xsd" /c /outputdir:"$(ProjectDir)Auto-Generated" /namespace:MyNameSpace.DataTypes. I'm not very happy with how the generated code looks like. My class is named MyDataSet.cs, and the customer object is named MyDataSetCustomer. I would prefer just Customer. Previously I've used XSDObjectGen, but I've found no .Net2 version of this. Does anybody have some nice utility or tip of how to make good entity classes from datasets ...Show All

©2008 Software Development Network