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

Software Development Network >> enric vives's Q&A profile

enric vives

Member List

wencey
Barista
Renee Doyle
user11
Nick Mc
Chr1s Harrison
JDPeckham
LynnOoi
DamsDev2007
MediamanMark
Hans Hunger
Bart Butell
Tom De Cort
Ather.
furjaw
x646d63
interpro1
abcdefgqwerty2
RoobyDoo
JIM.H.
Only Title

enric vives's Q&A profile

  • Visual Studio Express Editions checkedlistbox wont single select

    i have a checkedlistbox with five items, at run time i can select all. the selectionmode property is set to single. Paul no code yet, just the listbox and a collection. selection mode is set to one but at run time it will let me select more thann one. ...Show All

  • Visual C# CheckListBox SelectedIndexChanged Event

    Hi, I have a checklist box and I have a method that is called when the SelectedIndexChanged event fires. Is there any way to know which item in the list caused the event to fire Thanks It will be the currently-selected item in the CheckedListBox, the same as with a ListBox. The event which tells you that an item has been checked is ItemCheck, which provides an ItemCheckEventArgs with the index of the item. ...Show All

  • Windows Forms DetailsView and validation??

    I want to know how can i validade the fields edited in a DetailsView with validations controls in visual studio express 2005 thank's I will try to explain.... I Want to validate thefiels in the <fields> tag with a validation group, help me please guys how can i do it <asp : DetailsView ID ="DetailsView1" runat ="server" AutoGenerateRows ="False" DataKeyNames ="id" DataSourceID ="ObjectDataSource1" Height ="50px" Width ="125px"> < Fields > < asp : BoundField DataField ="id" HeaderText ="id" InsertVisible ="False" ReadOnly ="True" SortExpression =&qu ...Show All

  • SQL Server Export SQL database Tables into HTML page

    Hello, I just want to know how can I create a SSIS package to export a few distinct tables into distinct HTML pages. If anyone can help. Thanks in advance. Best regards... Thanks Craig for your reply, Well, seams to me that export to HTML from Integration Services isn't a easy task... In my first aproach, I try using a query "Select * from table FOR XML AUTO" with output to a Flat destination file... I have some problems with types conversion... What I really wants is put each table content in a HTML file (or XML), and send all the files (ftp) to a specific site... Best regards ...Show All

  • Visual Studio VS 2005 can't build C++ after SP1

    I installed SP1 on visual studio 2005, to see if I could prevent the crushingly slow startup of a VSS project. (our main project) on my machine (it is fine on another 2 developers machine). After the install (which was about as unslick as they go - what is the point showing a progress bar saying '0 seconds remaining' if you are right you won't see it, and if you are wrong, it looks stupid) I could no longer build C++ projects. Every time I hit build, run or rebuild it quit visual studio. All my C# projects built and run ok. It wasn't just the main project, there were other projects, including some downloaded from the web (such as the CLucene demo project). After trying various things, I uninstalled the service pack and now I ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XInput Common controller 32 bit wont install

    Hi I need to use XInput for a program I am writing in VB.NET 2005 (to use the xbox 360 controller). However I am not sure what software I need to download. I thought I needed the Microsft Common Controller 32bit but when I tried to install it, it says "Installation did not complete" Please help me! Thanks xna@microsoft.com or (in this case more likley) directx@microsoft.com . However those email addresses are not for general support - they are for suggestions and bug reports so don't expect as response. ...Show All

  • .NET Development unable to upload image to one of two image folders.

    I followed this link to do the below. I have two folders to save images. one for thumbnails and the other for bigger image. Both folders have actual images of the same sizes though. I am also writing to the database the image filename. The problem i have with my below code is in this line "Me.Imgfile.PostedFile.SaveAs(str_l_filepath)" What is happening here is i am able to save to s_folder which is thumbnail folder, i am able to write to the database. but unable to save to the other folder l_folder. Both folders reside in the same server as my project. str_s_filepath = str_s_folder & strfilename str_l_filepath = str_l_folder & strfilename 'strip the type of extn from filename Dim extpos AsInteger = strfilename.L ...Show All

  • SQL Server Remote Source and Destination Performance

    Given the following scenario, what kind of performance should be expected in transferring about half a million rows We are seeing about a 9 minute execution time. Is this reasonable for about 460,000 records moving from source to target, with 3 inner joins from the source Source: Server A.OLTPDB Target: ServerA.DataMartDB Server A is running SQL Server 2000. SSIS is running on a different machine, Server B. The reason for this is that we are distributing the SSIS package for use with a BI product built on SSAS 2005 and the requirements are such that the client could very well have the source OLTP database on a different physical machine than the data mart. My understanding is therefore that: 1. SSIS will do all of the hea ...Show All

  • .NET Development System.net.Webexception

    Hi All, I am in serious trouble. We have a desktop Application that was originally developed in C#.NET 2003 and then upgraded to VS 2005 an year ago. This desktop application accesses its Oracle Database through some webservices also written in .Net 2003 and upgraded to VS 2005 later. Real Problem:- End users of this application takes out excel reports (apart from a loads of other things). They have 14 reports which they can take out from this. Out of these 14 reports one of them gives error in production and when I run the same code in development then it runs fine. This is the error that I get in Production:- The following exception has occured: System.Reflection.TargetInvocation. Exception has been thrown by t ...Show All

  • Visual Studio Some items in HoL don't match GAT

    I finally made HoL work with June 2006 version of GAT (don't ask me how, it just happened). However, I observe the following issues with HoL and it's documentation: 1. The XML snippets are not exactly right. for instance, XML namespaces are wrong ("igt-wizards" instead of "gax-wizards", or "igt-template" instead of "gax-template"); 2. "Exploring the GAT" document makes reference to ".t3" templates instead of ".t4"; 3. The template syntax in the document is wrong (for example <#= connectionSettings.Name #/> does not exist and ending slash is wrong, apparently - old syntax); 4. Getting a warning for this entry in the Recipe definition: < xi:include href = " TypeAlias.xml " xmlns:xi = " http://www.w3.org/2001/XInc ...Show All

  • SQL Server performance issue,help please

    Hi, I have a table,which increases fast, 1,000,000rows/day. insert/update/delete/select on this table. an index on accout column was created, and we often use this account column in the where condition. like : select name,account,amount... from mytable where account='12345678' update mytable set ... where account='12345678' How to increase the performance on it partition the table Thanks, table structure: account int, name varchar(20), desc varchar(50), amount money, tr_date datetime, balance money one account may have one or more records. ...Show All

  • SQL Server Chinese Characters display in browser

    Hi all, I have a field in table with datatype as Nvarchar with the collation "SQL_Latin1_General_CP1_CI_AS" to store chinese characters. In asp page i added encoding is "BIG5" to display chinese characters, When i try to display the same chinese characters in MS Reporting Services 2005. It shows UNICODE data (same as in Query Analyser). I would like to see the chinese characters as same as in browser with asp Page (encoded big5). Please help me to overcome this issue. Thanks in advance CMani ...Show All

  • Visual Studio Express Editions Making a working form out of Visual Basic Express

    Hi, I was wondering if there was someone who knows how to make a simple application using the checkboxes in Visual Basic Express what is the code to store the info on those and what is the codes to go with two buttons, one to clear the info / cancel and the other to send the checkbox marking info in an automatic text email. I just got through with lesson 2: Getting Started: Beginners Guide to Visual Basic Express. Thanks! Firstly, you must replace the string variables I had put in the MailMessage (things like email address to and from, subject, body and server IP for SMTP access) if you want to make an online application, you need ASP.NET (Web developer express edition if you want the free one) - this would be a differen ...Show All

  • Visual Studio Team System how to upload test cases into visual studio

    hi can any one pleas let me know that how to upload test cases into visual studio from word document. and how to create bug report in visual studio. By raju I'm assuming that you have Visual Studio, not the Express Version. The express version doesn't support this feature, so I'm moving this thread to the VS forum. Thanks- -Tim <MSFT> ...Show All

  • SQL Server MSSQL Server 2005 Not Reporting Errors to Windows Event Log

    Hello All, I just performed a fresh install of MSSQL 2005 Server Developer Edition on my XPSP2 machine along with MSSQL 2005 SP1 and I noticed that errors are not being reported in the Windows Event Viewer. Is there a way to enable/disable logging here I need to view these logs because when the tasks > 'copy database' task fails it submits its error in the Windows Event Log however since I reinstalled MSSQL 2005 these log entries don't appear here. thanks in advance. Hi: The main log for SQL Server 2005 installation has changed, and placed in the following location: %ProgramFiles%\Microsoft SQL Server\90\Setup Bootstrap\LOG\Summary.txt For more information, please refer to ...Show All

©2008 Software Development Network