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

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

Simone1

Member List

JiltedCitizen
Ģ&#174&#59;€ğ&#167&#59;QĻ
pattyg
lkshikoh
RJGibson
Swal
RAYMOND KNIGHT
xLogicTalentedx
Tom Janssen
NozFx
SSUser
AHachmann
Tengu
sanaltsk
LAE2
zn00p
NeederOfVBHelp
rf09
CJW99
hrubesh
Only Title

Simone1's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Animated Progressive Mesh

    Hi everyone!!! I am quite new to directx programming and for my project i am working with directx9.0 and c#. The project consists of programming a mesh analyser tool. One of the features I must implement is : animate a mesh using LOD. I can animate a mesh(skeleton animation) , play on the LOD using the progressive mesh class. And I was wondering can anyonne give me some advices(or tips) how I can combine both techniques--> animate a progressive mesh. Thanks for your attention. ...Show All

  • Visual Studio doing a search in MSDN techinal articles, columns and msdn magazine

    Pls, How can I do a search in msdn or msdn2 that returns results only from technical articles, columns, periodicals and msdn magazine withount including the regular .Net help documents. Thank you How about locating information that s in the technical articles and columns that are inside the .Net and MSDN Library . Here are three Examples of those articles I am talking about: 1- Implementing a Background Process in Visual Basic .NETSample Files:vbBackground.exe Load Sample Solution Copy All Files Help Rockford Lhotka Magenic Technologies October 1, 2002 2- Creating Web Server Control Templates ProgrammaticallyRequirements This paper assumes that you are generally familiar with creating Web Forms pages and using ASP.NET ...Show All

  • Visual Studio Team System Extensibility of Data Generation

    I badly need documentation on the extensibility / creation of custom Data Generators (Attributes and their parameters, custom designer entries or adapting / using the designers that are there, custom data bound, etc.) and can't find anything othere than the too simple examples. I thought there was a link somewhere in the forum, but I can't find it again. Is there anything published / blogged yet beyond returning simple values Alle Hello Sachin, Thank you very much!  I was at that level already and have started deriving from the Generator Class in order to have a common base class for a set of generators interchanging information through static variables in the base class (intera ...Show All

  • Visual C# How export a gridview to excel using c#

    How export a gridview to excel using c# thanks! there are a couple of options, unfortunately for us since its WinForms based, there is apperently an easier way to do it in ASP.NET if we were using ASP.NET in order to help better, could I ask - how are you populating data into the datagridview Are you entering it manually or have you databound it from a dataset, using a DataAdapter to fill the dataset with records ...Show All

  • SQL Server DTS 2000 Migration Issue

    Hi , I am trying to Migrate DTS 2000 package to SQL 2005. I am opening the wizard form SQL Server Management Studio------>Object Explorer------>Management---->Legacy---->DTS ---->Migration Wizard . when i run the wizard with source location than folder destination . In the third step of the wizard i am getting an error saying : This wizard will close because it encountered the following error: ADDITIONAL INFORMATION: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index (mscorlib) Please advice me how to proceed Thank you Syeda ...Show All

  • Visual Studio Team System TSD306: Can not resolve the ambiguity between...

    I have many these warnings. See examples of code for which the warnings occures: ----------------------------------------------------------- create function dbo.FLT_F_GetFilter (@xmlDocID int) returns @result table ( number int not null, type varchar(20) not null, ColumnName sysname null, Operation nvarchar(40) null, ProcedureName sysname null, Value varchar(7000) not null ) as begin insert into @result select F.number, F.type, RTC.[Name], FOT.[Name], RTC.ProcedureName, F.Value from openxml(@xmlDocID, 'Items/Item', 3) with ( number int, type varchar(20), ColumnName uniqueidentifier, Operation uniqueidentifier, Value varchar(7000) ) F left join dbo.ResultTypeColumns RTC on RTC.ResultTypeColumnID = F.ColumnName ...Show All

  • Visual Studio 2008 (Pre-release) Expression Blend WPF WPF/E confusion

    I have downloaded and done the tutorials for expression blend. I have it integrated (lack of better terminology) with visual studio etc so I can create an EXE with a WPF UI. What got me excited though was a channel 9 interview which I cannot seem to find that spoke of WPF/E being a Flash type technology for the Web with a limited .net framework enabling you to code behing WPF/E in your .net language of choice. This was really exciting to me as I have been toying with Adobe Flex to create a web 2.0 UI and really did not want to have to learn action script. I therefore grabbed the WPF/E SDK to find that it's xaml tags seem different to what expression blend creates and uses and therefore xaml from expression blend will not run in the bro ...Show All

  • Visual Studio Express Editions RTbox set textcolor

    Hi, I've got a problem again. I'm trying to accomplish the following: In my RTbox I'm trying to change the color of some words (like in VB.NET). This is the code I'm using: Public Sub ColorCmds()         With rtbMain             Dim i As Integer             For Each cmd As String In cmds                 For i = 1 To .TextLength                     If Mid(.Text, i, cmd.Length) = cmd Then        &n ...Show All

  • Visual C# Multi Thread USB port

    Hi All, I am developing an application to get information through USB connected devices. Couple of same devices connected to several USB port belonging to the same PC. I tried to use multi threading to read all the devices in parallel but failed. I can only read all the devices if I am not using multi thread but instead read them using different instances of my application. ANyone have any idea what should i do to make the thread reads all the devices in parallel using USB port Hey Simon, Thanks for the reply. The problem i am facing is that I can only open the usb port once, couldn't open the port again to be used by other threads. I am using a PPP open connection in each thread. could ...Show All

  • Visual Studio Team System Install VSTS with data tier on a Cluster SQL Server

    hi .. I was wondering if someone can send me a link for installing VSTS in a dual server mode. where data tier resides on a clustered SQL Server instance. I am not having any luck with finding such a doc on msdn. thanks You just need to install Tfs data tier on the active node of the cluster, follow carefully this step in the installation guide "Checklist: Team Foundation Server Cluster Deployment" for complete instructions. ...Show All

  • Visual Studio Express Editions Cant insert data into sql server database

    Hi,   I’m making a program wich uses a database built in SQL Server Express. Hi have this code to read data from the database:   user = new RemoBDDataSet . UtilizadorDataTable (); this .utilizadorTableAdapter1.Fill(user); int c = user.Rows.Count; for ( int s = 0; s < c; s++) { string nomes = user .Nome; this .listBox2.Items.Add(nomes); }   and it works fine. It gets all the names from the field Nome (eng. Name) of the table Utilizador  (eng. User).   What i cant do is to insert new data on the database file. I tried this: RemoBDDataSet . UtilizadorRow ur = this .ds.Utilizador.NewUtilizadorRow(); ur.ID_Biometrica = "5.bir" ; ur.N ...Show All

  • Windows Forms Threading Problem

    Hi I have a winforms application which does some database processing and updates a progress bar. As it does the processing, it also writes to a log file using log4net. I would like to add a Multiline text box to the application which can be used to display the a "tail" of the log file. How can I do this You are accessing form controls in a secondary thread. That's a big no-no and will cause the kind of problems you describe. It looks like you're using VS2005, you probably set CheckForIllegalCrossThreadCalls to false somewhere in your code. Remove that statement. Check out the BackgroundWorker class in the MSDN library, it has excellent documentation. ...Show All

  • SQL Server TRUSTWORTHY databases and UNSAFE assemblies

    To set up a managed sproc to act as a WSE 3.0 web service client I had to register the following .Net DLLs as UNSAFE assemblies: System.Configuration.Install.dll System.Web.dll Microsoft.Web.Services3.dll In order to register UNSAFE assemblies I had to set the database's TRUSTWORTHY property to 'true'. Can anyone tell me what are the implications of doing this Thanks, Max Ryan, thanks for the good info. I'm finding I'm in the same boat with a trying to make a call to a LDAP 'webservice'. Its not a true webservice, but makes a call to a URL, and sends back a XML document. There might be a more effecient way of reading the tables in the xml feed, but I'm still learning. Any, what I'm doing is r ...Show All

  • Visual Studio Team System SQL Server Barfing on TS project Creation

    I have tried several times to create a project using TFS. Each time, I have gotten errors similar to the one below. I've followed the tutorials/directions given for setting up a TFS admin account, but for some reason, I am still not able to create a new project. I am sure that I am missing something somewhere, but I haven't figured out where it is. Here are a few details: I have a single server installation, with SQL Server 2005, and Sharepoint all in the same machine. I, also, have the server behind a NAT with all the required ports open for using the SQLServer, TFS, and Sharepoint. The server name is different than the URL that points to the server, also. Here is the output from the latest try to build: 2006-10-16 08:35:18Z | Module: ...Show All

  • Visual C# Cannot show generic collection that has been created with reflection emit in the propertygrid

    Hi I have the following problem, I have created a object that has a property that is a collection of other objects that also are created with Reflection::Emit. Type* ListType = Type::GetType( "System.Collections.ObjectModel.Collection`1" ); Type* InternalType = "Some type created with reflection emit" ...... Type* TypeArray[] = {InternalType}; Type* GenericListType = ListType->MakeGenericType(TypeArray); ... I later manage to create an instance of the GenericListType with Activator::CreateInstance(). But when I bring the new collection up in the in the property grid I only se the text of the overriden toString method in the field and the property is grey instead of black. It is also impo ...Show All

©2008 Software Development Network