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

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

udayan

Member List

Sam.F.
Prabhakarbn
amiga
Camillo777
beermix
Paarul
coolcars
Randall Stimson
korayko
georgeob
Cyberjunkie
kanna215
Test1234525
PhatBox
jiapei100
Jose A. M.
Kennon2005
JustStudent
Leo Mathew
thisiswhere
Only Title

udayan's Q&A profile

  • Visual Studio 2008 (Pre-release) Synchronizing two (or more) ScrollViewers

    Anybody got a good way of synchronizing two ScrollViewers My Scenario is that I am creating a custom control where the scrollbars are on the main body of the control, but there are vertical and horizontal headers in their own seperate scrollviewers that need to be kept in sync. My solution so far has been to use an Attached property to set a SynchronizerGroup attribute on a ScrollViewer. When this property gets set, I hook up to the ScrollChanged event on the ScrollViewer. Then when the event is fired on one scroll viewer, I call ScrollToHorizontalOffset or ScrollToVerticalOffset as appropriate on the other ScrollViewers with the same SyncrhonizerGroup value. This seems to lead to problems though (although it could be just my impleme ...Show All

  • Visual Studio Team System Error: TF30177: Team Project Creation Failed

    Hi Experts, I have Team foundation Server and team explorer installed on my server. I was trying to create team project from vs 2005 .net, and i have the TF30177 error (Project creation wizard encountered a problem while uploading document to the Windows sharepoint service server on ATDEV070.) This error seems like, permission issue. But I don't know how to grant and to whom to grant permission. Your help is appreciated. NOTE: ATDEV070 = My server name While creating a team project I logged in as corp\chintan (administrator of the server). But while installing TFS, when asked for TFS admin, I have inserted corp\TFSAdmin. Does this conflict Who can create team project Hi James, Thx for getting back. ...Show All

  • Windows Forms User Account Resolutions in Vista

    How can you set different resolutions in different User Accounts Since installing Vista, we have two user accounts and one person wants to run thier resolution at 1024 x 768 and the other wants 1280 x 1024. But when one changes thier resolution Vista changes it for the other User account as well. Also, why does Vista delete desktop shortcut icons on all accounts as well when someone deletes a shortcut on their own account Thank you Hi, Scorpiuscat This forum is not for general troubleshooting questions about the Windows operating system.  This forum is only for Windows Forms programming questions. I recommend you to use the Microsoft Newsgroups for better response ...Show All

  • Visual Studio Team System Existing projects do not show up after upgrading from Beta3 refresh to RTM

    Hi there, I did upgrade of my VSTS server from Beta3 refresh to RTM. After upgrade I don't see my existing projects in list to add from 'Add Existing Projects' from Team Explorer. Upgrade went fine.Please help, Thanks, Anu, Apologies - when I said "restore" I meant "upgrade", i.e. running the TFSUpgradeRTM tool against your Beta 3 databases to get them ready for RTM. I hope you haven't gone past a point of no-return as a result of my typo, I don't seem to be getting notifications from the forum at the moment so wasn't aware you had replied. Martin. ...Show All

  • Microsoft ISV Community Center Forums Observation AND Request

    I have been a member of the forum for a month now and have enjoyed trying to help people with their queries. As with most coding there is always more than one way to solve a problem. I also realise that people may not be clicking the "answer" option anticipating a "better" answer may come, this is fine but please reply to a post to let all concerned know whether the suggestion has worked or not. if it has NOT worked then I will know not to suggest that again! If I have upset anyone with my comment then I apologise in advance. ChasAA Hey ChasAA, Brenda from the ISV team used to take care of this. It never used to be much of a problem but the ISV team no longer support VBA an ...Show All

  • Smart Device Development New version V3 of C# Scripter

    You can download the new version at: http://www.geocities.com/hrowson/wm5_software/index.htm This new version mainly adds the following improvements: - Support of "for" loops (example: "for(int i=0;i<10;i=i+1){}") - Corrected bug with "==" operator - Improved error reporting (location and suppressed recursive messages) - Handling of Decrement ("—") and Increment ("++") operators (both post and pre, ie "i++" and "++i") - Added support for new assignment operators ("+=", "-=", "*=", "/=", "&=", "|=", "^=") - "else" is now possible - "if", "else", "for" and "while" now admit either a block ("{ … }") either an expression ("…;") - Added support for "null" in Relational operators and Assignement - Improved C# Inspector to list mo ...Show All

  • Software Development for Windows Vista not using release()

    Hi, In some of the directshow documents, the authors use release() method after they are finished with some interfaces. For example: // get next filter EnumFilters -> Next (1, & Renderer , & fetched ); Renderer -> EnumPins (& EnumPins ); EnumPins -> Reset (); numoutputpins = 0; while ( EnumPins -> Next (1, & InPin , & fetched ) == S_OK ) { InPin -> QueryPinInfo (& pinfo ); pinfo . pFilter -> Release (); InPin -> Release (); if ( pinfo . dir == PINDIR_OUTPUT ) { numoutputpins ++; // we can jump out if we found an ...Show All

  • Visual C# creating a combo box inside a data grid view

    I have created a data grid view in C# and I want to define a column in this data grid view to be a combo box. I have code which compiles but doesn't work. What I see when I test (in the column in the data grid view) is a drop down arrow on the right side of the field, but nothing happens if you select it. This is the code I used: DataGridViewComboBoxColumn dgvColPlayEveryDescription = new DataGridViewComboBoxColumn (); dgvColPlayEveryDescription.DataPropertyName = "PLAY_EVERY_RID" ; dgvColPlayEveryDescription.Name = "PLAY_EVERY_RID" ; dgvColPlayEveryDescription.HeaderText = "Play Every" ; dgvColPlayEveryDescription.DisplayMember = "DESCRIPTION" ; dgvColPlayEveryDescript ...Show All

  • .NET Development .Net Security and Caspol.exe

    I've recently learned that the caspol.exe utility does not require administrative privileges to run. One textbook advises altering the Windows file security to prevent unauthorized users or viruses from altering the security policy. What are the minimum machine accounts that should have access to this file Common Language Runtime Discuss issues regarding the very core of .NET: Security , performance, hosting, base classes, interop, reliability, debugging, GC, and profiling are example topics. ...Show All

  • Windows Forms Get theme progress color

    Any way to get the current theme progressBar increment color TIA I am not exactly sure with what you mean with increment color but you could create a Visual Style Renderer passing the Progress Bar Visual Style element to its constructor, something like this: System.Windows.Forms.VisualStyles.VisualStyleRenderer renderer = new System.Windows.Forms.VisualStyles.VisualStyleRenderer(System.Windows.Forms.VisualStyles.VisualStyleElement.ProgressBar.Chunk.Normal); Then use this renderer to get colours by invoking GetColor(). Another solution could be to use a pinvoke call: [DllImport("uxtheme.dll", CharSet=CharSet.Auto)] public static extern int GetThemeColor(HandleRef hTheme, int iPartId, int iState ...Show All

  • Visual Studio What is the properties for rebuild a solution/project

    Hi; What is the correct syntax to tell it to rebuild (not build, rebuild) a solution. To build I have: <MSBuild Properties="Configuration=Release" Projects="WindwardReports.sln" Targets="Build"/> but I don't think that does a rebuild. Same question for building a single project in the solution. thanks - dave ps - if stuff like this is answered in a url somewhere, please give me the url. ..you haven't tried the obvious <MSBuild Properties="Configuration=Release" Projects="WindwardReports.sln" Targets=" Rebuild "/> ...Show All

  • Visual Basic Add Reference COM references missing??

    Using VS 2005 (latest, greatest) Need to add SQLDMO as an interop and I read this needs to be done through the COM add reference tab. I click ADD REFERENCE either through right-clicking the project, or from the toolbar menu. Unfortunately, the COM tab has no listings - and I do not know the name of the object needed for SQLDMO so I cannot browse and select. How do I get the COM listings to show and/or could you tell me which component exposes the SQLDMO object Thanks a million E I found what was going on in my case. Under the HKEY_CLASSES_ROOT\TypeLib directory of my registry, there were a few registry keys that all belonged to nvsketch70. They had space characters around what ...Show All

  • .NET Development SQL Express 2005 and Access Project / don’t work in design vy, tbl and qry.

    It don’t seem that my Access version (Office XP) support SQL Express 2005. I can’t work in design vy in tables and questions Do I need some updates Kind Regard Anders. Hi Check out this post I found, it may help. Besides this interview explains a lot about what your are asking for. Best Regards ...Show All

  • SQL Server grouping or formatting issue

    hey there I have a date time field Fields!CreatedDate.Value which I am grouping on and Counting on an ID Field result of grouping is this 7/13/2006 12:00:00 AM 1 7/21/2006 12:00:00 AM 11 8/7/2006 12:00:00 AM 3 8/8/2006 12:00:00 AM 2 I know if I put (Month(Fields!CreatedDate.Value) I get this result 7 1 7 11 8 3 8 2 What I really want is July 12 August 5 how do I do this please thanks jewel, Try Placing the expression Monthname(Datepart( "m" , Fields!CreatedDate.Value)) into your group expression (edit group), this will cause the group to only consider the month when summating the values ...Show All

  • SQL Server Installation of Report Service Print ActiveX RSClientPrint.dll Question

    All, I'm creating a silent installation for RSClientPrint.dll because some of my SSRS users do not have rights to install the ActiveX when printing a report for the first time. When I extracted the cab file I notice that it had another dll there are well. GDIPLUS.DLL. It appears that there was a security issue with this dll that Microsoft made a security patch to fix it. My question, Do I have security risk of my SSRS if I do not install this version of dll as well Is there documentation of why this GDIPLUS.DLL was included in the RSClientPrint.Cab file If anyone knows I would love to hear from you. Thanks, Ham ...Show All

©2008 Software Development Network