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

Software Development Network >> Luis Esteban Valencia Muñoz's Q&A profile

Luis Esteban Valencia Muñoz

Member List

Joshua0001
GinaK
a.s.viswa
Zados Maerc
Dietz
Leon Mayne
Benjj
Fox Me Up
cdemez
Abu Yaman
Norb
Northern Ferret
rene schrieken
Lima Beans
Dareman
Alok_sriashoka_Patna _city
irvendeep
Vassilux
kennm
Naheem
Only Title

Luis Esteban Valencia Muñoz's Q&A profile

  • .NET Development asp.net and dynamic link

    < asp : HyperLink ID ="HyperLink1" runat ="server" NavigateUrl =" what will be here "> HyperLink </ asp : HyperLink > [ dropdownlist ] [ Hyperlink ] I try to achieve the following dropdown list takes values from a database and when clicking the hyperlink the name.doc file will be open where name means the value selected in dropdownlist. Hi, You will find an answer to your question at: http://forums.asp.net There you will find many ASP.NET related Q&A. However, here I can suggest you to take a look at the "Databindings" for the hyperlink control and try to bind the NavigateUrl property to the SelectedValue of the dropdo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Missile Commandeer

    First XNA game...done!  It's an old school missile commander clone (only its CommandeEr, like pirates...ARRRR!!!).  I spent extra time to maintain the original "cutting edge" graphics to make it a true classic.  Check it out... (I just added the screenshots, game and source code to my website) Click here for the game    Improvements to come: - MIRV missiles - Extra lives - High scores - suggestions Nice update, I especially like the MIRVs. I haven't played it much but my top score is 16440 on level 18. I'm pretty sure that other people have done way better :) I think the score penalty for hitting destroyed cities should be raised again. The problem that I f ...Show All

  • Visual Studio Team System Automatically generate a work item on state change in requirement

    I have a request from management to automatically create a work item for a technical design document any time a requirement WI changes to active state. I'm not sure where to begin on this one. I suppose there is something in the project alerts functionality which will allow me to trigger this. I am comfortably using the API, if someone can point me to the appropriate classes. Regards, ++Alan You can subscribe a web service on work item change event and process your custom logic there. You can use workitem object model in your web service to make changes to a set of work items. Below are few pointers that can help: Getting notifications to a webservice: Few posts that walk through how to do it and solutions for common needs ...Show All

  • Visual Basic Checking MS-office service pack levels

    I have a vb.net app which does a number of checks on a user computer and reports these back to the help desk. I would like to determine the best way of finding the service pack level for the installed version of Microsoft Office. Using vb.net. Any pointers would be most appreciated. Each Office application also has a COM/Interop library that comes with the application(ie you must have the office app installed for your application to work on the clients machine). You must first reference this library at the project level(Project - Add Reference - COM - Microsoft Excel 11.0....) and then inside your class use an imports statement like: Imports Excel = Microsoft.Office.Interop.Excel ...Show All

  • Visual Studio Express Editions Pass a variable from one form to another...

    Hey I've searched and searched but I haven't found a solution to this problem... All I want to do is pass a string from one form to another. And since C# doesn't allow global variables (or does it... ), I haven't found a way to do this. Let me know if you need more information to solve this problem. Thanks To do this, I use a Settings variable. It is very easy to do. Create a string setting "MyString" and when you need to send that data from one form to another, on the form that has a string that you need to send, do something like Properties.Settings.Default.MyString = thestringthatneedstobesaved; Thanks, paoloTheCool ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to disable driver anti-aliasing

    I need to preserve the exact colors (and thus, hard edges) when I read back the rendered image via an offscreen surface filled with GetRenderTargetData. There is an option in the control panel where the driver forces anti-aliasing for all applications. If I do not set the quality-performance slider correctly, I will get anti-aliasing. Is there a way (in code) to prevent that I understand what you're saying. Maybe you have an alternative to do picking (for example) without doing tons of collisions tests ...Show All

  • Visual Basic Adding Leading Zeros to String

    I have written the following function to add leading zero to a string, my question is there a simple way to do this Can you use the string.format Private Function FixLength( ByVal String1 As String , ByVal length As Integer ) As String 'check that string is not already the correct length If String1.Length <> length Then Dim output As String = String1 For bitcounter As Integer = 1 To length - String1.Length output = "0" & output Next Return output Else 'if the string is already the correct length then return it Return String1 End If End Function When you originally convert a number to a string, you can use String.Format to add leading zer ...Show All

  • SQL Server Enabling remote errors

    Hi, I am accessig reports through report manager. The RS and report manager are installed on same remote machine. i have edited the ConfigurationInfo table in the report server database to set EnableRemoteError to True but still i am gettin the following error when i try to access the reports from my machine through report manager(installed in remote machine) An error has occurred during report processing. (rsProcessingAborted) Cannot create a connection to data source 'Prague DB'. (rsErrorOpeningConnection) For more information about this error navigate to the report server on the local server machine, or enable remote errors I have done that, but still i am getting th ...Show All

  • SQL Server Unable to read Local event log(Reason:The parameter is incorrect)

    Hi All I want to create a schedule job on the SQL Server agent. For a test basis I just created a sample package and created a job. It is giving me this error ‘Unable to read Local event log(Reason:The parameter is incorrect)’ Please suggest me or if anyone is running schedule jobs please help. My machine has Widows Server 2003 running and I have sql server 2005 . Is it problem with server or any patch needed I was reading as SP1, but still I was reading the error is reproducing. How are you all doing this job scheduling as it must be a common scenarion. Rgds Sai 42/4236 We have installed SP1, but still get this error in the event log and SQL Agent log. ...Show All

  • Visual Studio Retrieving embedded elements

    Hi All! I've run into some trouble when trying to present data from an embedded element in a datagridview. The code that should do the work looks something like this. public partial class CompartmentHostShape { public override void OnDoubleClick(Microsoft.VisualStudio.Modeling.Diagrams.DiagramPointEventArgs e) { Form f = new System.Windows.Forms.Form(); DataGridView dgv = new DataGridView(); CompartmentHost ch = this.ModelElement as CompartmentHost; foreach (CompartmentItem cit in ch.TestRole) { //This actually prints out the expected values Debug.WriteLine("ComItemName for cl is: " + cit.ComItemName); Debug.WriteLine("CompartmentHost for cl is: &quo ...Show All

  • SQL Server Cascade set to null on delete.

    Hi all, I am using SQL Server 2000 and am trying to perform a basic delete query on a table called ClientType. The only child table of this is called Client. The relationship between the tables has a cascade action of cascade update and when I try to perform the delete operation, I get the error "DELETE statement conflicted with COLUMN REFERENCE constraint". The foreign key field accepts nulls and has a defauilt value of null. Now, am I being completely dense or shouldn't the cascade update set the foreign key values to null Regards, Stephen. OK, you just defined the Cascade on the update, if you delete a row and the child table contains rows for that parent row and you did not define a casca ...Show All

  • SQL Server Script task

    Hi, I am new in SSIS development. In the script task of the Control Flow, how to use my custom classes (that use SMO and DTS for building a package and are written in C## ). If not the Script Task then which tool I have to use thank you very much Jamie. Did you put your DDLs into the root of the Microsoft.Net folder Through "Add Reference", I cannot find my DDLs I just put into C:\WINDOWS\Microsoft.NET\Framework ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Coding4Fun: Beginning Game Development Help

    I am new to programing and I am a little confused with one part of the tutorial  (towards the bottom).  The instructions say: "Since the timer class is contained in a different namespace we are going to add a using statement so we can use the FrameworkTimer without having to write “Microsoft.Samples.DirectX.UtilityToolkit.FrameworkTimer” every time. At the top of the class in the using directives region add the following line of code: Visual C# Microsoft.Samples.DirectX.UtilityToolkit;" I am having trouble with what I put in italics.  I have no idea where to put the code.  Do I put it in the dxmutmisc.cs class ( ), or my actual "GameEngine.cs" class ( ), or is it something that was changed ...Show All

  • Windows Forms datagridview

    hi, i have a datagridview(vid=sual basic 2005 and sql server 2000 thru dsn im working). i want to 1)display data from a table to datagridview 2) add new rows 3)delete 4)update. i added a datagridview and added 15 columns to that ans set name and columnheader for each. i also want some of the columns to be calender etc...(i added genericdatagrid user control.dll) i have the following code in the form load but no data is coming. can u please help con.ConnectionString = "dsn=alphasql" con.Open() da = New OdbcDataAdapter( "Select * from Company" , con) 'da.SelectCommand = New OdbcCommand("Select * from Company", con) da.Fill(ds, "Company" ) DataGridVi ...Show All

  • Software Development for Windows Vista Reusage of Rules Engine Components

    Hi! I've tried to reuse some components of the wwf rules engine. The goal was to validate expressions which are edited in an expression editor. But the rules engine only offers the ability to edit and validate conditional expressions (return type bool). All the classes are defined internal, so it is not possible to extend the classes. Does somebody now an option to validate more general expressions, or have I to refactor the rules engine and build my own solution Andreas ...Show All

©2008 Software Development Network