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

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

RSUser08

Member List

UmerTahir
Shaun Moore
Timo79
R Spies
Sean D Wright
George3
KimberlyL
luca90
CobaltD
Michelle A.
Young K
Fran Garcia
tchen777
hrubesh
Benke
dnyandeo
tritontr21
MichaelSam2006
Speedie
dbuchanan
Only Title

RSUser08's Q&A profile

  • Visual Studio Team System Load test with Unit Test

    Facing the error when trying to run the load test. Error Description :Error LoadTest1 TestProject1 (Computer Name) Could not access the load test results repository: The number of rows inserted or updated by an operation on the results repository (1) did not match the expected number (-1) . Tried setting up the store repository using SQLCMD /S localhost\sqlexpress /i loadtestresultsrepository.sql as I am using the Sql Express. Provided the correct connection string using the "Administer test Controller" yet not able to run the Load test. Help on this highly appreciated. Thanks, Mazzie Thanks. Unfortunately, I really can’t see anything in the load test that would cause the erro ...Show All

  • Visual C# Communicating with my USB MIDI Keyboard..

    I'm trying to write a C# program to communicate with my MIDI controller keyboard which uses a USB connection and shows up as a USB Audio Device. I'm wondering how exactly I can communicate with my keyboard, since I'm going to write a program that will play the appropriate note, and run in the background, so I don't need any other programs running just to listen to what I'm playing. I've been unable to find any information on how to access my USB device, and though there are some C# USB communication libraries, I havent exactly figured out how to work them, considering usblib-win32 has no documentation of it's own, and usblib's own documentation os so minimalistic to the point of making little to no sence to someone who doesn't have ...Show All

  • Visual Basic Using & in VB 2005 controls

    In VB 6.0 when you place the “&” in front of a letter its underline the letter and the control that has it can be called with the keys “ATL+underlined letter”. In VB 2005 you can do that two but the underline letter doesn’t show up unless you press the ALT key. How can I make that the underline letter show up always In the design shows up but in the runtime it doesn’t unless I press the alt key. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. GraphicDevice Exception in Beta 2

    Hello there. I switched now from the Beta to Beta 2 and just tried to run the Windows Game Template and i get a GraphicDeviceException. (See details at the end of the post). I had a similiar problem with my graphics card in the beta one, but got around it with disabling allowmultisample. but, since the graphic device API changed i tried to set pixel & shaders to version default to 1.1. ..but didn't make any change. i have a ATI Radeon 9200 graphics card, which, what i know should nativly support dx 9 and shaders 2.0. i used the cap viewer and got shaders version 3.0 in the output. maybe i'm doing something completly wrong. i hope that finally i can develop on my notebook with this graphics card, i'm not look ...Show All

  • Visual Studio 2008 (Pre-release) BindingList<T>, works via remoting but not via WCF

    I have a custom list EntityCollection<T> which inherits from BindingList<T> When I try and get one of these custom collections through WCF I get an error similar to that below; >> Type 'System.DelegateSerializationHolder+DelegateEntry' >> with data contract name is not expected. Add any types not >> known statically to the list of known types - for example, by using >> the KnownTypeAttribute attribute or by adding them to the >> list of known types passed to >> DataContractSerializer. Im not using a generated proxy, I am using the same assembly both on the client and the server (this is a closed system) this seems to work fine via .NET remoting - how can ...Show All

  • SharePoint Products and Technologies Possible Bug in Collegue Tracker Web Part?

    I have been testing MOSS 2007 and WSS 3.0. I found a possible bug in the Collegue Tracker Web Part. When changing the Site them to Obsidian in a MySite Site - the links in the webpart are not visible, yet they are there because the cursor changes as you scroll over them and clicking sends you to whatever you have scrolled over. The URL that is selected does appear in the status bar. I have not found this problem with any of the other themes. Has anyone else noticed this And if it is a bug - who do I tell I can duplicate the issue that you have reported although I am not really certain I would call it a bug, more of a UI issue. The link is still there it is just white text on a white background so it does not show up. The link does s ...Show All

  • Windows Forms Different SQL port

    Am i forced to use SQL port 1433 for applications between VB.net and SQL server i would like to use a different port, is this possible and where can i set it Also does anyone have a FAQ on encrypting the data betweent he application and the SQL server Many thanks Ryan thank you both for your prompt responses and i have set the SQL server to be the new port, im using visual stuido 2005, where do i set the configuration to the new port for my application im unsure what you mean by "client network utility" many thanks Ryan ...Show All

  • Visual Studio Problems about Import Namespaces in Text Templates.

    Hi, When I use <#@ import namespace="System.Collections.Generic" #> in Text Template File (*.tt), it works fine. But when I use <#@ import namespace="System.Data" #> , why an error popup Error 1 Compiling transformation: The type or namespace name 'Data' does not exist in the namespace 'System' (are you missing an assembly reference ) c:\Documents and Settings\Administrator\Local Settings\Temp\ap3-rmkb.0.cs 3 18 After I add <#@ assembly name = "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Data.dll" #> It works. However, isn't System.Data exists in GAC like System.Collections.Generic Do I have to explicitly reference assemply "System.Data.dll" Th ...Show All

  • Visual Basic How do you use Serialization and deserialization to save a class which contains other classes ?

    I have a class <Serializable()> _ Public Class bunchOfData Implements ISerializable Public abool As Boolean = False Public  asingle As Single = 0 Public alist As List( Of PointF) = New List( Of PointF) <SecurityPermissionAttribute(SecurityAction.Demand, _ SerializationFormatter:= True )> _ Overridable Sub GetObjectData( _ ByVal info As SerializationInfo, ByVal context As StreamingContext) _ Implements ISerializable.GetObjectData info.AddValue( "abool" , abool) info.AddValue( " asingle " , asingle ) info.AddValue( " alist" , alist ) End Sub Protected Sub New ( _ ByVal info As SerializationInfo, ByVal context As ...Show All

  • Architecture Data Access Architecture

    I am reviewing my current project and find that the data access is not so desirable. The main problem maybe root from the architecture of my data access. I would like to get more input. In my existing application, I have create one data access object for each table. Most of them are implemented by Type DataSet while some are custom objects (The reason is lack of inheritance of Type DataSet). For example, I have created a Typed DataSet Order to access my order header and order detail. I have also created a product class and a SalesProduct class (inherit from Product). The above objects are all treated as my DAL and contains CRUD mainly. (Certainly, I found some business logic messed into them already.) The problem came when I reviewing the ...Show All

  • Visual Studio Team System Deploy Error: User or role does not exist in this database.

    When trying to deploy my DB project to my local DB I get this error: User or role 'clgdba' does not exist in this database. The role is in our pre and post deploy scripts to be created but this error kept coming up and it couldn't create the role. So we exluded all roles from the project and selected to rebuild the projects and re-deployed. The same error occured but the pre and post deployment scripts did not change, all the roles were still within those scripts. I am wondering if there are any security issues with roles or users that they are not able to be created in the local DB or if there are any work arounds to get a clean deploy. I have another question too. I having trouble getting the database schema from our QA environ ...Show All

  • Visual C++ Native C++ Or C++.Net2005!!!???

    Common Guys, I Did Many Test, And Always The Rersult Tell Me That Native C++ More Faster Than C++.Net.How Is This Plz Tell Me, Does This Is True Man, But Don't Forget That Their Is A Free Version Of MSVS2005, Where I Just Finish Downloading The C# Express, And XNA. And I Start Learning And Developing. Wish My Good Luck ...Show All

  • SQL Server Add sum column to query

    What's the best way to include an amount sum in a query if I also need the individual amounts For example, I need the following columns: order number order amount total amount I tried using "with cube ", but the total number of columns in the query exceeds the allowable limit of 10. stephane - Montpellier wrote: sorry, i made a mistake... SELECT a.ordernum, a.orderamt, b.totalamt FROM orders a inner join (select sum(orderamt) from orders) b on a.ordernum= b.ordernum I thought inner join could be more efficient than using where statement... Your statement won't work there either. You didn't include ordernum in your subquery. Never-the-less, inner join and the join method I used are identical. ...Show All

  • Visual C++ packet filtering API not working

    hi all i want to make the packet filtering using packet filtering api,one api is not working it alwasy fails i dont know why may be bcos if ip adress. the code is given below. INTERFACE_HANDLE ihandle;  if(::PfCreateInterface(0,PF_ACTION_DROP,PF_ACTION_FORWARD,false,true,&ihandle)==NO_ERROR)  {   AfxMessageBox("Step 1 Done");   if(::PfAddGlobalFilterToInterface(ihandle,GF_FRAGMENTS)==NO_ERROR)   {    AfxMessageBox("Step 20 done");    if(::PfAddGlobalFilterToInterface(ihandle,GF_STRONGHOST)==NO_ERROR)    {     AfxMessageBox("Step 21 done");     if(::PfAddGlobalFilterToInterface(ihandle,GF_FRAGCACHE)==NO_ERROR) &nbs ...Show All

  • Silverlight (formerly WPF/E) Squeezing objects

    I was wondering whether it is supported to "squeeze/distort" objects into various affine and skeewed forms Basically what I wan't to do is squeeze an image (or any other object for that matter) into the following shape: ___________ / \ / \ / \ / \ / \ I would also need a variant the would require adding some skewing like this: ___________ / | / | / | / | / | or ______________ / / / / / / / / / / ...or anywhere in between these. (and no, I'm not talking about clipping :-) Any ideas on how to accomplish this are very welcomed! Actually the pers ...Show All

©2008 Software Development Network