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

Software Development Network >> the-rpd's Q&A profile

the-rpd

Member List

Mark A. Richman
qzrlsd
Tone Southerland
Kris Selden
Alessandro Camargo
NotMyself
JohnDB
Iron_Mala
shagshag
Javahar
Jeff Johnson
Gnanaprakash
tonn
PaulSQL
fattycat
Potato K
dynamicmasterc
learning1314
kwirky
Siteadm
Only Title

the-rpd's Q&A profile

  • SQL Server Executing Package Question

    Hi, Simplification of setup: - SQL Server Box with Enterprise Edition of SQL Server 2005 - Workstation with the client tools (Managment Studio, Business Intelligence Studio, etc) SQL Server 2005 installed running Windows XP 1. Am I right in saying that I need to install the SSIS service in order to run this package on my workstation from the command line, the Execute Package Utility tool, or through Management Studio 2. I can however execute the package on my workstation in the Business Intelligence Studio without the SSIS service installed, correct 3. Assuming I need to install the SSIS service on my workstation, if I execute the package via the command line or the Execute Package Utility utility, will it run on my local machine or on the ...Show All

  • Visual Studio Team System Problem in Visual Studio 2005

    Hi all, This problem comes up when I'm running code analysis on some target source code. The problem is the code analysis keeps running and when I try to stop it, it gives a warning that "Visual Studio is busy as an internal operation is still running. If this problem persists, report this to microsoft." I don't know how to overcome this problem. Can anyone help me and kindly tell me why this is happening Thanks, ThunderRock Quick question to help us narrow this down. When you are running code analysis are you running native code analysis or managed From your problem I suspect that this is native code analysis. In this case, your problem here is very likely a hang caused by a corruption a ...Show All

  • Smart Device Development About SDIO Card Driver

    Hai, I am studying about the SDIO Card driver. From my understanding the client driver is loaded after inseting the SD Card by the Bus driver. When the Host controller Driver is loaded Actually i want to diagnosis the SD Card port before inserting the SD Card .Is there any means to find this.I am using the PXA270 processor It's not the direct handle that you need but the handle that is given t the client driver upon initialization. It's a unique identifier to let the bus driver know which client driver it's talking to. You shouldn't have access to this handle unless you built the client driver which you didn't. So unless the people who built the client driver did some funky design you can not make that call. ...Show All

  • Visual Basic Transfer Array from VB.net to C++ and Back

    I am having a bit of a frustrating problem. I am trying to pass an array of unsigned short to a c++ .dll which the dll will populate and return. I have tried to convert it to a managed dll, but I am still having issues. The debugger in the vb.net side( 2k5) is returning 'getMeasurement' has a return type that is not supported or parameter types that are no supported for the below highlighted statement Any help/advice is greatly appreciated! Here is the code I am using: vb 2005 code Public Shared usSampleBuffer() as UInt16 Public Shared iResult as Integer Public Property bReadingStatus() as Integer Get Return iResult End Get Set (ByVal iHold as Integer) ReDim usSampleBuffer(256000) Dim lRoutine as New RoutineDLL.clsRou ...Show All

  • Windows Live Developer Forums 2 accounts accessing one space?

    Hi, my wife and I have different msn accounts but would like to have a joint msn space. Is this possible I have set it up under mine at the moment and the best we have been able to do is to set the personal message on messenger to the url. I'd like to get it so that contacts from both of our messenger lists can see our joint space. any ideas cheers ...Show All

  • SQL Server SQL Server 2005 64 bit vs. SQL Server 2005 32 bit

    Hi, We were planning to upgrade our SQL Server 2000 database to SQL Server 2005 to leverage the performance improvements in 2005. For the upgrade we were thinking of SQL Server 2005 32 bit and SQL Server 2005 64 bit and hence did the performance testing on the both the versions. To our surprise 32 bit version performed much better than 64 bit. For 64 bit we also increased the RAM from 16GB to 64GB. Could anyone pls explain why this is happening We had an understanding that 64 bit will definitely perform better than 32 bit. Does query plan differ for 32 bit and 64 bit SQL server 2005 Thanks in advance Ritesh how are you comparing performance Yes you can get query plan dif ...Show All

  • Smart Device Development Error Code c00e000b recieved when starting msmq on Pocket PC Phone Addition

    Hello All... Im getting error code c00e000b on a pocket pc device when using visadm to start msmq after installing it. when I use the verify short cut I get a successfull reply but when I use the status short cut I get the c00e000b error code. I have seen many posting on the internet for this error but no solutions. I downloaded the msmq cab from the MS web site to make sure I have the latest version, but Im not sure it is the right version for my processor my device has a Intel(R) PXA270 processor and Im using the msmq.arm.CAB Yes, you have to sign it with trusted certificate (or have SDK test certificate installed on device). CAB sure will install, but untrusted driver simply won't start. Consider in ...Show All

  • Windows Live Developer Forums How do you print a bird's eye view in Local Live?!

    How do you print in windows local live ! I've tried numerous times, but have come up empty! Why can't I simply do file:print Why does windows only allow me to print an aerial or a road map It's stupid! I'm going to Google Earth.   AAAAAAAAAAAAAAAAAAAAAAAAHHHHHHHH wrote: How do you print in windows local live ! I've tried numerous times, but have come up empty! Why can't I simply do file:print Why does windows only allow me to print an aerial or a road map It's stupid! I'm going to Google Earth. These questions should probably go to the Virtual Earth developers forums.  http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=537&SiteID=1 see you there. ...Show All

  • Visual Basic extracting html content from active web browser

    Hello, can anyone guide me in the right direction in extracting the url, title, and html content of the active web browser thanks in advance, AP ap231 wrote: Hello, can anyone guide me in the right direction in extracting the url, title, and html content of the active web browser thanks in advance, AP are you able to define what you mean by an active web browser do you mean the instance of IE that maybe open already The code given above will only work with .NET 2.0 and higher, which has the webbrowser control, not earlier versions. You could do the same thing but using HttpWebRequest/Response to recieve the stream of data however I believe this is not what you are wan ...Show All

  • Visual Studio msbee not working

    I'm trying to use msbuild with msbee to build a .NET assembly based on FX1.1. The following won't work for me (entered on one line): msbuild.exe myproj.csproj /p:TargetFX1_1=true /p:CustomAfterMicrosoftCommonTargets=MSBuildExtras.FX1_1.CSharp.targets I get: C:\mypath\myproj.csproj(1,1): error MSB4 075: The project file must be opened in the Visual Studio IDE and converted to the latest version before it can be built by MSBuild. MSBuild and the csproj are found in the path (I've also tried full path with double quotes for these and also the .targets file with the same result). What gives Any suggestions The problem is that this project is still a Visual Studio 2003 project, and not a MS ...Show All

  • Windows Forms Treeview adding nodes problem in Framework 2

    I have a user component called 'SiteJobs' which housed in my main application windows form. It basically consists of Treeview as main display object, and accept a string object which corresponding to job campaign. It has public method called 'AddJob' , as code below public void AddJob ( string campaign ) { if ( campaign == "" ) return ; TreeNode newNode = new TreeNode ( campaign ); newNode . Name = campaign ; tvJobs.Nodes.Add(newNode); lblCurrentJob . Text = "Job: " + campaign ; int index = tvJobs . Nodes . IndexOfKey ( campaign ); if ( index !=- 1 ) tvJobs . SelectedNode = tvJobs . Nodes [ index ]; if ( OnNewJobIsEntered != null ) On ...Show All

  • SQL Server on update catch 22

    How do you make an update cascade opperation if you want to set the PK to an excisting one I have a table where to post are the same only the PK differs, now I want to delete one but transfer it's dependecies. i.e redirect its references to the other post. How can I do that using on update cascade/delete. I see a catch 22 coming up! /Jonneponne Hi I would redirect all dependencies to a single post you want to keep and then delete a duplicate post. ON UPDATE CASCADE works only if you are trying to update the KEY references by Foreign Key , not the other way round. NB. ...Show All

  • Windows Forms Passing parameters to subs and functions

    I am brain cramping here. I have a sub or function the has to parameters, one must be passed to the sub/function the other is optional but I for got how to set the optional to a default value example private sub getuser(name as string, dept as integer) Name is required dept is optional I want a default of 0 if not passed Try this: Sub getuser( ByVal  name As String , Optional ByVal dept As Integer = 0) End Sub ...Show All

  • SQL Server How to access data in a SQL Command in the OLE DB Destination editor

    Instead of blindly inserting all my data from a previous task into a table using "Table" as the Data Access Mode in the OLEDB Destination editor. I would like to join this output with a reference table and insert only qualifying rows. Question is "how do I access the data from previous task so that I can do a meaningful equijoin" I know I have to use the "SQL Command" data access mode, but what next Thanks. chiraj chiraj wrote: Jamie, I finally got it to work. The join column has to be identical in both inputs. I had string(10) and string(20). When I made it equal, the mergeJoin started working. Thx, chiraj Did you get rid of ...Show All

  • .NET Development XSL Transformation not generating expected result after upgrade to .Net 2.0

    I am currently upgrading a .Net 1.1 project to .Net 2.0 and one of my XSLT is not generating the expected results. I even used the new XSLCompiledTransform object , didnot help much .. Below is the XSL File , it takes in some parameters , does anyone know of any part of the XSL that is obsolete or so. Looks like <xsl:if> is not working .. Any suggestions or comments are greatly appreciated. < xml version = " 1.0 " encoding = " UTF-8 " > < xsl:stylesheet version = " 1.0 " xmlns:xsl = " http://www.w3.org/1999/XSL/Transform " xmlns:asp = " remove " > < xsl:output method = " html " /> < xsl:template match = " / " & ...Show All

©2008 Software Development Network