HOBO59458's Q&A profile
Visual Basic BeginEdit Method ???
Dear Team How to use BeginEdit with datagrid or datarow to insirt a value in any one of them (any cell or column) Hi, Here's a sample on MSDN online for DataGrid.BeginEdit() method: http://msdn2.microsoft.com/library/440t4bcs(en-us,vs.80).aspx cheers, Paul June A. Domag ...Show All
Visual Basic defining a stored proc for use with dataset using tableadapter wizard
things look good till I reach the Bind Commands to Existing Stored procedures page of the wizard and I select my target spproc (rpt_IPR_...) then I hit the finish button and see the message : invalid object name '#TmpResults' now the dataset seems to setup correctly but was wondering why we are getting this message and should I be concerned. The same proc in Access had no issues. Here is the proc: ALTER PROCEDUR ...Show All
Visual C++ Writing MMC Snapin in Visual C++ 2005
Hello, I'm trying to write a MMC Snap-in extension using Visual C++ 2005 Beta 1. But different from Visual C++ 6.0, I couldn't find ATL object of MMC Snapin. It's not supported any more Where is the MMC Snap-in wizard then Any suggestions how shall I do that Thanks! But anyway are there any ATL wizards for vc 2005 so that I'm able to use them to write a snapin in C++ not in any language so I can feel unlimited. ...Show All
.NET Development IPC Port 'Access is denied'
I've written a windows service that hosts an IPC Channel object on the web server. The calling process is hosted on the SAME machine in IIS (it happens to be a Http channel). It invokes the first IPC channel method and I get this error message: Unhandled Exception: System.Runtime.Remoting.RemotingException: Failed to connect to an IPC Port: Access is denied. If I stop the service hosting the channel, I get a new erro ...Show All
Visual Studio 2008 (Pre-release) Can you show me a simplest demo of 3D animation with WPF Dec CTP?
dear all, I find all the demos are earlier version of WPF based. But most of them can't run in DecCTP environment. So can you show me a piece of new code I have tried some code by myself, but it seems not work. Do I miss anything ....... <ModelVisual3D> <ModelVisual3D.Content> <Model3DGroup> &nb ...Show All
SQL Server Row delimiter {LF} is ignored?
Hi! Im trying to import some data from a Flat File Source, where a row delimiter is {LF} and column separator is SPACE. Data looks like this: GI$0c2 T08b 1 1 20060508 000655 6 8 8 c0a81f1f 1 1 1 00A 3 24206816 3 24206816 1 1 3 59910000 001 1 3 14730050 0 25 F10 XX 317148-131136 loop TG_MRB 0 M027 1 3 0 20060508 000655 0 3 59910000 SIP This is the first record that generates around 41 columns and sorts data as it should, but if the second record ...Show All
.NET Development .NET Framework 2.0 question
I appologize in advance if some of my questions to the forum is a little out of place. I am not a programmer or developer, just a gamer, system builder, and network administrator of a home network. After installing .NET Framework 2.0, Direct X9.0c's Diagnostic shows that one of the two system.dll files is missing. The one that is listed belongs to 1.1, so logic dictates that it is the one for 2.0 that is missing. However it is in ...Show All
Software Development for Windows Vista Problem passing parameters from workflow to custom activity using dynamicly compiled xoml workflow
We have created a Win Form app that programmatically builds a workflow. It contains one sequential workflow object, and has activities implemented in a separate DLL. The generated workflow definition is then serialized out to a xaml file. We then compile the xaml definition to an assembly, and executes the workflow using dharmas compiler sample. The workflow library is a class library wrapper for the runti ...Show All
.NET Development Windows Service Not Starting on W2K
My service seems to work fine on XPPro, but not on W2K Server. I have a Windows Service I created that just sets a timer and writes to EventLog every 10 seconds. It installed fine and it actually starts. But it says it doesn't. The progress bar shows the progress fine until it hits about halfway. It then stops there for about 4 or 5 seconds then goes a little farther. I then get a message: Could not start the MyService Se ...Show All
.NET Development DataGrid and Popup Window/Box
Again, this is ASP.Net. I want to place a button on a form, that when clicked, will execute SQL code to populate a popup window with a datagrid comprised of DISTINCT values from a table. The purpose of the datagrid popup is for a user to select a USERID from the datagrid and place the selected value onto the previous form. I am having a bear of a time finding something to show how this works in ASP.Net, yet I have see ...Show All
Visual Studio Superscript and Subscript text in Crystal
I am using Crystal Reports for VS.NET 2003. Is there any way to implement superscript and subscript text in Crystal For example, I would like to superscript the numeric portion ("235") of the following string: "U235 is my favorite isotope" The only way I have found to do this is to put the "235" in a separate text field that uses a smaller font size, and overlay it into the gap that I intentionally left in the larger text field.  ...Show All
.NET Development VS2005: Table.GetErrors does not give all errors
Hi, Iam developing an app using VS2005 and backend as Oracle. Here is my code dataTableX.BeginLoadData() 'In a loop populate xDataRow, xDataRow has 6 colums and iam filling out of bounds 'data in 2 columns dataTableX.Rows.Add(xDataRow) Try dataTableX. EndLoadData () Catch ex as exception Dim dRowsInError() As DataRow dRowsInEr ...Show All
Visual C++ libodbc++ library
Where can i get the library libodbc++ for windows platform.. Thanks in advance. To what kind of software libodbc belongs It is not a Microsoft software, so look for the publisher/creator of this software. Maybe he has a homepage. ...Show All
Visual C++ why this doesn't work?
void show( short * p, int r, int c) { int i; int j; printf("\n"); for (i=0; i<r; i++) { for (j=0; j<c; j++) { printf(" %d",p[r] ); } printf("\n"); } } this programme is to show the array content Even p[r] seams strange to me, shouldn't it be p Because p is a pointer to short, so p[r] gets a short and you can not use the indexer again on this value. If p is a pointer to the field ...Show All
SQL Server 'Incorrect Syntax near' Error in Create Type in 2005
This is getting really frustrating. I've searched and tried about everything I can think of. I have an assembly added to my database by using Sql Management Console. The assembly is called TestUDT. I have defined 4 structs within that assembly, Person, Transaction, Payment, and Seller. The assembly was added to SqlServer 2005 with dbo as the owner, the permission set is SAFE, and the assembly is signed. The structs are within the Test ...Show All
