Software Development Network Logo
  • SQL Server
  • Visual Basic
  • Visual C++
  • Smart Device
  • Visual J#
  • .NET Development
  • Architecture
  • Windows Forms
  • Microsoft ISV
  • VS Team System
  • Visual Studio
  • Windows Vista
  • Windows Live
  • Visual FoxPro
  • Visual C#

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

shah_hs

Member List

bdingivan
kjmclark
5letters
Ralf Hedler
TimSE
Maxime Cloutier
Michael Tsai
De los Palotes Juan
cdemez
Black Bits Neeraj
Louis Chan
Ken Paulson - MVP
alvi_du
brunic
Bill-R
raider74
Mahesh Dudgikar - MSFT
BrianNoyes
PsilentDev
clovernet
Only Title

shah_hs's Q&A profile

  • Visual Studio Pending Checkins is slower in 2005 vs 2003...

    In a solution with 5 projects and ~750 files, the Pending Checkins in VS.NET-2005 seems to be about twice as slow as VS.NET-2003. I enabled the logging in the SCC Provider and found that VS.NET-2005 is performing SccQueryInfo almost 80 times, asking for the status of 10 files at a time. VS.NET-2003 ask for all files in the project at one time. Is there a way to revert to the 2003 functionality or increase the number of files requested per ...Show All

  • Smart Device Development Microsoft.WindowsMobile.PocketOutlook in PPC 2003 se

    I am using Microsoft.WindowsMobile.PocketOutlook for accessing contacts in my application. I know that before WM 5.0 there were no managed API for PocketOutlook. But my program builds for PPC 2003 in compact framework 2.0 but when i start my app it says cannot find entry no. #78 in pimstore.dll. Is the problem only with pimstore.dll If my prog builds for PPC 2003 then it should run on it. Also can I invoke APIs like GetUniqueDeviceId on PP ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Id3dxline problem

    hi folks can anyone tell me what the problem with this code ID3DXLine *pLine =NULL; D3DXCreateLine(&Device,&pLine); D3DXVECTOR3 v[] = { (0.0f,0.0f,0.0f), {5.0f,0.0f,0.0f) }; Device->BeginScene(); pLine->Begin(); pLine->DrawTransform(v,2,&pWorldTransform,D3DCOLOR_COLORVALUE(1.0f,1.0f,1.0f))); pLine->End() Device->EndScene() iam not get ...Show All

  • Visual Studio Team System Classes that consist entirely of static methods should end in “Util”

    Hi, How to identify class that consists only of static methods I tried the following, public override ProblemCollection Check(Member member) { TypeNode type = member as TypeNode; if(type is Class) { Method method = member as Method; MemberList memberlist = type.Members; MethodList methodlist = RuleUtilities.GetMethods(type.Name.Name,memberlist); int staticCount=0; if (method == null) ...Show All

  • Visual Studio Express Editions Changes in Desing.vb don’t appear..

    Hi all, My problem is this: I have a project with two Forms. If I add for example a button or Combobox in the Designview of Form2, save all the project and then run it with F5, the Controls don’t appear in Form2. Same, if I like to delete a button, label or anything. If I build the project to "Programm.exe" and run it, the changes I made before in Designview are shown correctly. Any help please Regards h ...Show All

  • SQL Server Reporting Services Fail to generate long reports

    HI, I have been using reporting services to generate reports and for some strange reason one of the reports is not generating for certain dates. This is failing if I run the report on the local network or on an internet connection. The report works fine for my criteria from 1 April 2006 to 23 April 2006, but fails to generate a report for 29 March 2006 to 23 April 2006. However if I run the report on the server where the reporting services ar ...Show All

  • Visual Studio how to delete cancel build task item

    Hi,   Does anyone succeed in deleting all the "Task List" items after cancelling a build I cancel a build in the "OnBuildBegin" handler. The code I'm using to delete the task list items : Window taskListWindow = ApplicationObject.Windows.Item( Constants.vsWindowKindTaskList ); TaskList taskList = (TaskList)taskListWindow.Object; try { foreach(TaskItem item in taskList.TaskItems) { item.Delete(); } This code is called in the "OnBuildDone" ...Show All

  • Visual Basic Cross-Thread Exception but not using threads!

    My application uses a serial port to receive data from a mag stripe card reader and look it up in a database. I am using VB.net 2005 (Express) and Windows Forms. I can type the data directly into a textbox control, and I handle the control's KeyPress event to get the data. This works fine without throwing any exceptions. When I get the data from the serial port, I handle the SerialPort object's DataReceived event like this: Private ...Show All

  • SQL Server Issues for "embedded" SSIS solutions

    My warehouse app employs a distributed architecture. Extractions from disparate (wildly so) systems, and transformations and loads into a standardized schema are performed at various locations close to the source systems (both physically and "logically" speaking). There are security and other reasons for this. However this causes some related design and implementation challenges for the ETL processing. For one, the ETL processes mus ...Show All

  • SQL Server Kill an user process with script

    Hi all, I am writing a script to kill any process connect to the user database before daily restore job in DR machine.  For testing, the script is getting the spid from sysprocesses and sysdatabases and store the specific spid which accessing the user DB into cursor and sp_who spid.  HOwever, if I change the sp_who to kill, it shows error.  Anything wrong in such script   Thanks in advance SELECT * FROM SYS.DM_EX ...Show All

  • Windows Forms Combo Box Values

    I am trying to assign values to a combo box. However, when I add the values, I get the correct number of items in the combo box, but I don't get the actual value. I just see a blank. If I select the item, I then see it. ...Show All

  • Audio and Video Development Multi Bitrates Encoder 9 media player 10 issues.

    Note: Please dont tell me that this is the wrong forum without telling me where is the right forum!! I am broadcasting at 4 bitrates constant streaming video. 128k, 64k, 32k, and 16k. The Problem is this: My audience's PC's are usually auto negotiating to the 128k speed. This is not good for most of the users. Many need to be on the 64k level or below. The auto negotiation feature is usually troublesome when it thinks it can step up to 128k. ...Show All

  • Visual Basic manifest errors on application install.

    ok i made a program and i was ready to start testing it on other computers. when i try to install it after i publish it i get this error failure: PLATFORM VERSION INFO  Windows    : 5.0.2195.262144 (Win32NT)  Common Language Runtime  : 2.0.50215.44  System.Deployment.dll   : 2.0.50215.44 (beta2.050215-4400)  mscorwks.dll    : 2.0.50215.44 (beta2.050215-4400)  dfdll.dll  & ...Show All

  • Visual Basic Missing Right and Left String Functions

    I have lost my Right and Left string functions. Mid is still present, but Right and Left now refer to the distance in pixels from the edge of a control. How can I get my string functions back again they should be in the Microsoft.VisualBasic assembly. is that referenced ...Show All

  • .NET Development Accesss Properties of Object at Runtime

    I have to access Properties of an Object at rumtime, that means I do not really know the type of the Object. I do not konw which class it declared with. But I have to access all the properties of it, including its value and the type of properties.  I would like to access it similar with Access Hashtable. Does it possible in Dot Net / C# Cheers The .NET feature you want to use is called Reflection.  Basically, this allow ...Show All

©2008 Software Development Network

powered by phorum