Ccm1st's Q&A profile
Visual Studio Express Editions C# Express Edition EBook
Please can any one guide to download C# Express Edition EBook That thread is about C# book recommended: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=849534&SiteID=1 And you can search the book you want in the internet. Hope it helps ...Show All
Windows Live Developer Forums [CSS BUG] Trouble with a map loaded in a hidden div
Hello, I am very fan of your VirtualEarth service but unfortunaly, i am confronted with a bug than is cause by the way you use CSS (I think) I know that all of your teams are celebrating the Vista worldwide availability… but I expect that the VE team will take a look on this bug. I attach to this mail two examples showing and reproducing this bug (vmap_good.rar et vmap_bad.rar) All the problem is the way that the map is loaded/matched in a div with CSS property “diplay:none;” Hope you will resolve it. Thanks Th. /* GOOD SOURCE CODE */ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.or ...Show All
.NET Development check to see if column has null or empty records
Hi guys. I have a list view object that populates itself with data from a sql database enclosed in a for each loop: foreach (DataRow row in dtExportLog.Rows) { ListViewItem item = lvExportLog.Items.Add(row["LOG_ID"].ToString()); item.SubItems.Add(row["LOG_DATE"].ToString()); item.SubItems.Add(Convert.ToDateTime(row["LOG_START_DATE"]).ToString("dd/MM/yyyy")); item.SubItems.Add(Convert.ToDateTime(row["LOG_END_DATE"]).ToString("dd/MM/yyyy")); } now I have added to 2 new columns to the list view called 'has exam data' and 'has class room data' and I have a sql table with 2 columns what I want to do is for each record in the sql column that is null or empty(blank) I ...Show All
Audio and Video Development How can I insert a player that plays DVD media (e.g. WinDVD) within a VB module?
Can someone please point out how to insert a media player like WinDVD inside a Visual Basic application Either using raw coding or ActiveX plug-in is fine. Thanks in advance. You have reached the wrong forum for this question. Let me attempt to answer what I can: For WinDVD specifically you'll need to contact Intervideo to see if they have an ActiveX control for WinDVD and get the name of their control. Windows Media Player can play DVDs as long as you have a DVD decoder installed. The programming interface is very limited. If you are interested in hosting the Windows Media Player, see For VB.net: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnwmt/html/playingdigitalme ...Show All
Windows Forms DataGridView Summary row ?
Hi I know that somehow DataGridview in Winforms doesn't have the readymade ability to display a "sum" row at the end of a bound datagridview. But I am quite sure that this is a common requirement for mathematical or statistical solutions, so does anyone has any idea on how to do this. thanks. Thanks Valentine, Your solution is ok if I have a small datagridviw with few columns. In this cae, we have a datagridview with 15 columns (so obviously we have a horizontal scroll bar to view all these columns). So need the sum or average at the end of each column. Using textboxes and labels is out of question due to horizontal scrolling. Thanks. ...Show All
SQL Server Microsoft Visual Studio is busy
I get this message in a balloon that pops up frequently when I am trying to work in the SSIS designer. For example, I get it when working in a DataFlow task, trying to open editors for the OleDb Source and Destination. Is anyone else getting this What could be the cause, it seems to get sluggish. Thanks. Hi folks: I have the same exact problem. I see the message Visual studio is busy. For me this started happening after I installed Visual Studio 2005. I have 1 GB memory and i have both SQL 2000 (default instance) and SQL 2005 (named instance) running on the box. I never had this issue when i was running VS.NET 2003. I started seeing this after I uninstalled VS.NET 2003 and installed VS.NET 2005. Doe ...Show All
Visual C++ Error executing link.exe... VC6
Hi, could it be that the VC6 linker has a slight problem with my huge Object file The cpp.-file contains about 470,000 lines of code (automatically generated), it compiles fine, but linking is aborted with following message: c:\gsoap-win32-2.7\samples\test_message\soapc.cpp(65536) : warning C4049: compiler limit : terminating line number emission soapServer.cpp stdsoap2.cpp Linking... .\Debug\soapC.obj : error : Internal error during ReadSymbolTable ExceptionCode = C0000005 ExceptionFlags = 00000000 ExceptionAddress = 00462864 NumberParameters = 00000002 ExceptionInformation[ 0] = 00000000 ExceptionInformation[ 1] = 04983 ...Show All
Visual Basic Does COMs dead in VS2005?
When i update my project from VS2003,All of the forms that contains COM does't work... Or ned to register You would still need to register COM components for them to work. You can do this using Regsvr32.exe ...Show All
Windows Forms How to get pixel color from the screen?
Hi,, I'm new to C# and I'd like to create a "Eyedropper" tool e.g. I want to be able to pick a color from anywhere on the screen, based on cursor's position. I found couple examples using "gdi32.dll" for VB (for example: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=74273&SiteID=1 ) but I wasn't able to transform the code to C#. Can anyone help me with this please thanks a lot wyktor maybe this would be of some help http://www.bobpowell.net/eyedropper.htm Thread moved to the appropriate forum ...Show All
SQL Server Package Configuration
Here is the scenario we are trying to use; (it a bit long winded please bare with me) There are 2 Packages Parent and Child. Both have 2 Connection Managers (“Configuration” & “Data Connection”). The “Data Connection” has an invalid connection set to start with this is so that we can deploy this to multiple places and use a SQL table to hold the configuration. At runtime “Configuration” is set to a valid SQL2005 database connection via the command line or in BI but “Data Connection” is left invalid. The Package Configuration point to an SQL server using “Configuration” this has the connection string for the “Data Connection” Connection Manager (a valid connection string). The package errors wit ...Show All
SQL Server Performance, sql 2005, and Rtvscan.exe
Our sql 2005 SP1 server (x64) is running fine (subjective) but I noted that the Performance counter Process: Page faults\sec, RtvScan is consistently around 240. All the other processes, including sql server, have page fault values near 0. I had excluded Symantec from scanning our "Data" directory but I still regard that number as too high. Any ideas how to trim the page fault value would be appreciated. TIA, barkingdog ...Show All
SQL Server Unable delete remote files using FTP Task
I can create remote folder and delete it I also can create remote files but i can not delete remote files error warning is like subject any ides thanks Hi everyone, I recently had to investigate this problem and already filed a bug for this. The problem is SSIS FTP Task uses backslashes as directory separator characters when issuing a DELEte command against the FTP server. Most Unix based FTP servers only understand forward slashes as directory separator characters, so the FTP server normally returns a 550 FTP error to the client because it cannot find a file named xxx\yyy\zzz.txt. This behavior is independent of the character you use as directory separator in the SSIS FTP Task property that you ...Show All
Windows Forms Error handling
Hello, It's posible to use ErrorProvider.DataSource to automatically show binding error messages to the user, that's nice, automatic validation. But i'd like to allow the user tab out to other controls. I know I can handle the BindingComplete event and use the Cancel property of the eventArgs, but i don't like it, because it's not easy enough, no compatible with the designer that doesn't keep a reference to the Binding object. Using cancel = false in Validating event doesn't work either. How can i harmonize designer amazing binding capabilities with allowing the user to continue with other controls I don't want to write the binding code! ...Show All
Smart Device Development How to reject incoming call
Hi, I'm using SystemState.PhoneIncomingCall in a VB application that works fine (I intercept an incoming call and show the phone number in a messagebox). Friend WithEvents IncomingCall As New SystemState(SystemProperty.PhoneIncomingCall) Dim PhoneNumber As String Private Sub phoneIncoming_Changed( ByVal Sender As Object , ByVal Args As Microsoft.WindowsMobile.Status.ChangeEventArgs) Handles IncomingCall.Changed PhoneNumber = SystemState.GetValue(SystemProperty.PhoneIncomingCallerNumber) If PhoneNumber <> "" Then Me.BringToFront() MessageBox.Show( "Chiamante: " & PhoneNumber, "IncomingCall" ) End If End Sub Now, how ca ...Show All
SQL Server Newbie Advice Installing SSRS
Hi, I've decided to install SSRS (2005) on my windows XP machine. I'm not very familiar with IIS (i'm currently using version 5.1) and I think between IIS and SSRS, i've managed to break something. I've been looking at various articles to try and get some clarity on my predicament. However, i'm not getting any joy with them.s I have located the logfiles (which I can provide). Unfortunately, I have no idea how to intepret the information contained therein. Can anyone help Many thanks in advance Clint I've just tried it with /reports and got this. ------------------------------------------------------------------------------------------------------------------------------------------ ...Show All
