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

Software Development Network >> Calvin Che's Q&A profile

Calvin Che

Member List

DBurke
vserd
wskyo
Benny Samuelsson
tfrench
eSPiYa
VFP Developer
Syed Zohaib Ali
MarcD
Rajakhan
jluce
Dolphins
Anjan Das MSFT
Blanker
Farooq Hawalteh
David Jarmoluk
Fairy
Santal_Maluko
Clumsi
Dusty21269
Only Title

Calvin Che's Q&A profile

  • Windows Forms Invisible DataGridView - scroll problems

    Hi, since the DataGridView does not support BeginUpdata / EndUpdate I tried to enhance performance by making the following dataGridView1.Visible = false ; LoadTheData2TheBindingSource(); dataGridView1.Visible = true ;   I add about 4000 Rows in the function. After this the DGV Scrollbar looks as if there are only a few records more than visible. When I use a BindingNavigator i can iterate all the records, but they apear on one place in the last but one row of the grid. When (after navigating down) the DGV gets the focus an exception is raised: ************** Exception Text ************** System.ArgumentOutOfRangeException: ...Show All

  • Visual Studio Team System 2003 to 2005 Convert Error

    Whenever I try to convert one of our 2003 projects to a 2005 project I get the following error:    An unexpected error has occurred.    Error Message: We were expecting a log file to be produced at '' but it does not exist. Anyone else run accross this or know a work arround   I have been trying to get arround this for almost a day and have had NO luck. Thanks for your help, Nate You'll likely find the answer by posting this question in the Visual Studio General forum or the appropriate programming language forum. Visual Studio General http://forums.microsoft.com/msdn/Sho ...Show All

  • Windows Forms OnPaintBackground method

    I have a form with a panel. I want to control the back ground painting of the panel, but I don't want to create a custom control to do this. So how do I override the OnPaintBackground of the panel Thanks for your help!... Derive a class from Panel and then override the virtual method. public class MyPanel : Panel { public override void OnPaintBackground(...) { ... } } Phil Wright http://www.componentfactory.com Free user interface controls for VS2005 ...Show All

  • Visual C++ Error C 1001

    I've converted a project from visual c++ 2001 to visual c++ 2005 .net but when i tryed to compile the code I've reivied the Fatal error C:1001. I ensure you thats not about optimazation ( i've desibaled them /dO ) its was about My managed types so i tried /clr compiler option it gave me the comment to use /clr:oldSyntax but when i use this option it gives me the same C:1001 fatal error so if any1 knows wat am talkin about and has any idea to solve this problem ,help me plz . C1001 is an internal compiler error which is a compiler bug. In lots of cases there are workarounds involving slightly modifying the code around the line repo ...Show All

  • Windows Forms HELP ....Problem in TreeView...

    Hie...please help me... When i insert any node or add any node in treeview ...then all expanded nodes(by user) are closed. and it flicks ...i want tree expanded as it was b4 insertion... in my project i insert ,add or delete nodes every 5 seconds.. so plz give some solution..i tried many things but not working... ...Show All

  • Visual Basic Cannot find file

    Dim options As String = ( "/quiet /norestart /overwriteoem /nobackup" ) Dim updates As String = ( "F:\Updates\" ) Dim di As New IO.DirectoryInfo( "F:\updates" ) Dim diar1 As IO.FileInfo() = di.GetFiles Dim diar2 As IO.DirectoryInfo() = di.GetDirectories() Dim dra As IO.FileInfo 'list the names of all files in the specified directory For Each dra In diar1 Dim myProcess As Process = System.Diagnostics.Process.Start(updates.ToString & dra.ToString & " " & options.ToString) myProcess.WaitForExit() Keep getting error..cannot find file I think its cause im trying to pass parameters ...Show All

  • Windows Forms Windows Service - File System Watcher

    Hi I wrote and installed a windows service program on a station that monitors a share point on another network computer using a File System Watcher.  It looks for new files dropped into that location and then processes those files.  It works fine as long as the share point computer is available. If the share point goes down and then comes up again lat ...Show All

  • Visual C# Dynamically changing an image!

    Hi, Can anyone help me solve this problem. I need to dynamically show different images on a web page without refreshing the page. Plz tell me how this can be implemented. It would be great if you could provide mw with the code too. By the way i'm using C# as code behind. Thanks & Regards, Ken Then you need Javascript to do it. You can also take a look at AJAX , there are some good free libraries. ...Show All

  • Visual Studio Any Practical Limits on Model Size?

    If models are each stored in their own XML file, what is the practical limit on the number of objects in a model   We are considering moving an existing application generator into DSL.   The models contain thousands of objects. Hi DRB, To be honest, its probably not terribly practical to code this up using the current CTP as you'd have to completely replace the serialization scheme by hand and also get into managing multiple docdata objects. This is an area we're actively investigating for a future CTP. Sorry if I gave the impression that this was a "now" thing as opposed to a "future" thing. ...Show All

  • Visual Basic TextBox Property

    Hi I am very new to VB.NET programming and I hope that somebody will be able to help on what should be an easy question!! I am using Beta 2 and basically i have data-bound a text box to a decimal field in an sql database. Essentially what i am trying to do is force the user to only enter in an 99.99 format.  I know that i can validate to check the input is valid but of course it would be good if they could actually only enter in that format.  I will have the same problem when it comes to entering monetary values later. I have looked through all the properties on a textbox but can not find anything.  Can anyone point me in ...Show All

  • Visual Studio Team System Churn report

    I heard that it is posible to do a churn report in Team Systems from build to build. I started looking on the web and saw some nice charts that demonstate that. I didn't find that report in list of reports. Is there a predefined one If not how can I make one Thank you, Shimon ...Show All

  • SQL Server Fore Color Expressions

    Hi all, I can't seem to find an example anywhere on the net or BOL on this one. I assume you can set the color of a calculated members dynamically in the Fore Color Expression property but I can't find any code samples for that. Can someone provide me a simply one for changing the color to red if a condition is met I really appreciate it! Brian Hi Brian, Here's a recent query for the AS 2000 Foodmart Sales cube - you should see some cells highlighted in red when this is run in the MDX Sample App: http://groups.google.com/group/microsoft.public.sqlserver.olap/msg/3a1eccc9d291c961 >> With Member [Measures].[testme ...Show All

  • SQL Server Urgent! Trigger problem!

    I have the follow trigger attached to table [VoucherDetail] and I want to update table RecAccount when there is change in [VoucherDetail]: Create Trigger [dbo].[tr_Account] ON [dbo].[VoucherDetail] AFTER INSERT, UPDATE, DELETE AS BEGIN  Declare  @BalanceDiff decimal(18,8),     @AccountID int,     @RecDate DateTime,     @MonthStart DateTime,     @MonthEnd DateTime -----------Handle INSERT----------------  IF EXISTS(Select AccountID from inserted)  BEGIN   Set @AccountID=(SELECT AccountID From inserted)   Set ...Show All

  • Visual Studio Team System Team project and Source Control issues

    We are having an issue with Source Control. I deleted a team project and then recreated it (no error messages from this process). However somehow the source code for the project was not deleted. So in the Source Control browser the project does not show. So I try another method and attempt access to the Source Control for this project from the Team Explorer and I get an error asking "Would you like to create the source control folder, $EMF ". Pressing yes results in and Error dialog with "The item $/EMF already exists"). I am a team administrator and have full rights to the system. What I need to be able to do is l ...Show All

  • Visual Studio Team System Backup you data with Team Foundation Server Beta 3

    Since the documentation looks to be outdated: What are the steps to take to backup all the data within TFS3. It should be a backup of all tables (including SharePoint Services and Reporting Serves data) from SQL Server and a backup of Windows SharePoint Services. Is that it Are the attachements now stored within the database Thanks, Neno That's the version control file cache, as Bill mentioned.  The version control caching proxy is both part of the server (TFS) and a standalone app that can be installed on a server at a remote location.  Since it is inherently part of every TFS app tier, all installations end up with this dir ...Show All

©2008 Software Development Network