Chibuzo's Q&A profile
Windows Forms IM NEW!!
Finally a forum to talk about VB.net, thank goodness. Im new with VB.net (14) and learning, is it ok if post questions here if i ever need to Everyone can call me Steven by the way, nice meeting you all. (First project was&nbs ...Show All
Visual Studio 2008 (Pre-release) An error occurred while transmitting data.
Hey Everyone, getting following error while transmitting object from one end to the other, did tried witht he maxMessageSize but doesnt help. An error occurred while transmitting data. Server stack trace: at System.ServiceModel.Channels.StreamConnection.Read(Byte[] buffer, Int32 offset, Int32 size, TimeSpan timeout) at System.ServiceModel.Channels.SessionConnectionReader.Receive(TimeSpan timeout) at System.ServiceModel.Channels.Synchr ...Show All
.NET Development Regular Expression syntax for C#
Hello Everyone, Currently, I am working on a project that required heavy pogramming with regular expression. I am looking for documentation about regular expression from Microsoft. Please upload the document if you don't mind. Regards JDang Hello Jdang, The build-in support for regular expression in .NET framework 2.0 are the classes in namespace System.Text.RegularExpressi ...Show All
Windows Forms DataGridView Scroll
Hi. When I scroll my DataGridView it is scrolled by steps of 3 (or any other number) of rows depending on what is set in Windows Mouse Properties. Is there a way to make it scroll row by row t.e. one notch = one scrolled row. Thanks! There isn't any built in property to change this. You would have to override the OnMouseWheel method and provide your own implementation (and not call base.OnMouseWheel) -mark DataGridV ...Show All
SQL Server Connecting two cubes
I am using SSAS 2005 and I have a situation where I have two different cubes that I need to link up so that I can get related data from one cube to the other. Here's the scenario: I have a customer cube that gives me metrics about how many new customers, inactive customers, etc based on date ranges and other criteria. What I need to be able to do is once I have a subset of customers I want to be able to look at related measures th ...Show All
Visual Studio Team System From RC to formal release Trial Edition
We are pretty much committed to using TFS so we'd like to move to the formal release version of TFS ASAP. Since it's going to take a couple of months for our software vendor to get the media ready for purchase, I have downloaded the 180-day Trial Edition from MSDN (we don't want the Workgroup Edition). Since we have been using the RC build for real projects, can I upgrade from RC to the release Trial Edition There's this upgrade tool for downlo ...Show All
.NET Development how do I handle the DBNull fields
1/ I have a checkBox that I want to fill with a value from a Bit field in SQL server. But when the field has a Null value, it gives me an error. How do I convert the DBNull value to a boolean and how do I handle the DBNull values of my table columns. 2/ One more question: I ve seen a technical document about handling Null values from the database in the MSDN articles, but I didn t keep the URL. Does any body know it pls. Thanks. ...Show All
Microsoft ISV Community Center Forums VB Script Crashes Access When Exporting to Excel
I am trying to solve a minor problem for a small school running Access 2000 on a network. The program runs well with several forms and reports. The problem is that one of the reports is exported to Excel. This works fine except when the database is moved off the network, the export process either produces an error message or crashes Access. The database filename is AA92603.MDB. When it is copied to the C: drive on a computer off th ...Show All
SQL Server CREATE ASSEMBLY failed because method 'UpdateVersion'
I'm working on a CLR Stored Procedure and have code that builds using Namespace: Microsoft.SqlServer.Dts.Runtime Assembly: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll) When i try to create the assembly i get this: CREATE ASSEMBLY failed because method 'UpdateVersion' on type 'Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSPackageVersionUpdate90' in safe assembly 'Microsoft.SqlServer.DTSRuntimeWrap' has invalid att ...Show All
Windows Forms using panels
Hello all; I've three panels. Each panel is downword the upper panel. I want to show these panels in such a way, when you open My computer or My Document in windows XP you can see on left side different panels which can be open or collaspable panels like 'System tasks', 'Other places' etc. I don't know what is the name of this control. So please tell me about any url from where I can download this control. Thanks. Adnan ...Show All
Visual C# Socket question.
When I close a socket in the server side, I found the client will receive some empty data automatically, even though I haven't sent anything in my code. I also found that some empty data will also be sent to the server automatically if I close a client side socket. These two cases could be reasonable since there may be some acknowledgement to be sent arround. Upon closing a server side socket by calling its Close(), it's wired to see that R ...Show All
.NET Development .NET bug? - The Undo operation encountered a context that is different from what was applied in the corresponding Set operat
Hello, I have tried to find a solution for this problem but so far have not found anything that applies to my exception. This is the message in my exception: Message="The Undo operation encountered a context that is different from what was applied in the corresponding Set operation. The possible cause is that a context was Set on the thread and not reverted(undone)." It occurs right after I perform any calls on a Socket that use ...Show All
Visual C# Append records to existing StreamWriter file
I've been writing text files in several apps with no problems until I tried to write/append to a file. Now, from what I could 'glean' from the numerous books/websites out there, to append records to an existing file one needs to set the StreamWriter to true like this: m_objOutput = new StreamWriter( strFileName, true ); The output file gets created; however, when I run my app, nothing is written to the file. I haven't been able to find ...Show All
.NET Development SqlDataAdapter.Update - Updating DataSet but not the physical database.
DataSet complaintDS; SqlDataAdapter complaintDA; SqlCommandBuilder cb; complaintDA.Update(complaintDS, "[Complaint Log]"); Updates the DataSet in the DAtaGridView but does not update the database. What am I doing wrong Could it be that you have a situation like this where you are updating the database but not the version you are currently loading http://forums.microsoft.com/MSDN/ShowPost.aspx Post ...Show All
SQL Server ALTER TABLE MODIFY
hi! i encountered problems when running this code in SQL Query ALTER TABLE [dbo].[amsSchedule] MODIFY(CutOff1 datetime NULL, [FileName] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL) my aim is to modify the two fields to change its data type. BUt when im trying to run this command in the query analyzer, itsays "incorrect syntax error '(' " What do i have to do please help me...thanks ...Show All
