Robbie Clutton's Q&A profile
Visual Studio Team System Process Template Upload Error On SharePointPortal Task
We have been modifying and uploading our own process template for three or four months. Today I wanted to make a change, but when I uploaded the template I received the following error when the SharePointPortal task in WssRasks.xml was processed: Exception Type: System.Web.Services.Protocols.SoapException Exception Message: Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown. SoapException Details: <detail><errorstring xmlns=" http://schemas.microsoft.com/sharepoint/soap/">The Web site that is referenced here is not in the configuration database.</errorstring></detail> Wh ...Show All
Windows Forms How to Delete Records from Sorted DataGrid, , Programmatically
I have a Delete button on a form and a datagrid (forms). When I sort the datagrid and run my Delete Routine, I end up deleting with reference from the row number. So if A (which it's absolute positions in 2) is sorted and is now in row 10, when I delete it, it removes which ever was in row 10. How would I get the absolute row position of a row in a sorted datagrid Hello, you can get the actual row's index from something like this (where myDS.myTABLE is your datatable bound to the datagrid and Me refers to your windows form) Dim index As Integer = 0 index = Me.BindingContext.Item(myDS.myTABLE).Curre ...Show All
Smart Device Development Answering Machine
I am new to windows mobile 5.0 programming and I am working on a answering machine for my window mobile 5.0 enable device.. what are the things I need in order to make this happen. I have the windows mobile 5.0 developer resource kit already and I am having problems with the documentation, especially with the examples. When I try to find the said examples i cannot find it. Usually in the Windows CE documentation.. e.g. Windows CE includes Tapihelp, a helper library for using the TAPI functions. This library is included in the %WINCEROOT%\public\common\oak\drivers\netsamp\tapihelp directory and can be used either from Platform Builder or f ...Show All
SQL Server Creating an asynchrous output
Are there any good examples creating an asychronous output. I need to be able to output the values from the input as well as adding 7 new columns to each row. http://msdn2.microsoft.com/en-us/library/ms136133.aspx The answers are available, you just need to search for them. I found the link above by typing "asynchronous component code ssis" into Google. -Jamie ...Show All
Software Development for Windows Vista build failure
Hi, I run into the following problem building my project using WWF Beta 2: After the first successful build, it isn't possible to build the solution again. Build ends with an error, not described in detail. are there any ideas about soving this problem Best regards, Andreas this is the output of the build process: ------ Build started: Project: Diagnostics, Configuration: Debug Any CPU ------ Diagnostics -> D:\_work\S3\src\S3.root\S3\Tools\Diagnostics\bin\Debug\Upper.S3.Diagnostics.dll ------ Build started: Project: NHibernate.Generics, Configuration: Debug Any CPU ------ NHibernate.Generics -> D:\_wor ...Show All
Visual Basic How can I know the cpu and Graphic card information from VB.NET 2005
hallo every one Iam making a programm in vb.net 2005 and I want to make a label.text = ( cpu information ) and another label shows my graphic card informatiion how can I do this and thanks alot query.Get() method is giving an error "Generic Failure" when i try to execute the same in a remote machine with Win XP and SP2. but it is getting executed without any problem on remote Win 2k3 machine. can somebody help me to resolve this -vinu ...Show All
.NET Development Refrerenced memory at 0x0000000c could not be "read"?
Hello all you nice people out there in 'Sanity' land, First - a message from my sponsor: 'For the record, I'm no computer wiz. And, I also do not know all-a-da proper terminologies either. This is stated before someone ups and decides to send any defamatory e-mail my way. Thank you.' You may now return to your regularly non-scheduled e-mails. Ah, hello again. Now, sledge-in-hand, let's have it. I had installed the VisualBasic Express, oh, about 2wks ago. A very short time thereafter I got an error message. It read, reads, as follows: aspnet_state.exe. Application Error. The instructi ...Show All
Windows Forms Printing a Form.
Hi, I have an application that displays a list of data. A user can select an item from the list to open a form to display the details of the item. I want to provide a Print option so that they can get a hard copy of the data. I was thinking of doing this via a Crystal Report or a new Windows Forms Report, rather that using the PrintDocument classes in the framework. The reason being that it seems a lot easier to be able to design what the print out should look like rather than drawing it using the Graphics class. Does anyone else use a Report to do their printing behind the scenes or do most people use the PrintDocument class Can anyone thi ...Show All
Visual C# Passing arrays from unmanaged DLL code to c#
Hi, I pass my dll the filename (string) to an image and it returns a list of points which are detected faces on that image. What I have done is pass a parameter from c# which is a pointer to an empty array. The dll code then allocates the array for the list of points and returns the size of the array. I then copy the array for use in c#. This does work - but is it the right way to do this (seems like a bit of a hack) If I wanted to pass a list of structs (instead of ints) back from the dll how would I do this see code below Thanks Ashwin ashwinv wrote: This does work - but is it the right way to do this (s ...Show All
Visual Studio Will VS 2005 coexist with VS 2003?
I am about to rebuild my computer so that I have a fresh machine for Visual Studio 2005 (I had the RC installed until now). Once I install everything (including VS 2003) will Visual Studio 2005 install fine and will both Visual Studios work as expected The problem is solved already. After installing .Net framework 2.0, there is one more tab named "ASP.NET" in the IIS Web Site Properties dialog. Change the ASP.NET setting to 2.0.XXXX. It will be OK. It works on both IIS 5.X and 6.0. ...Show All
SQL Server RDA pull - from a temporary table
Hi I am doing a RDA Pull with tracking off, getting the data via a stored procedure. Ideally I want the proc to return the data from a temporary table, so I can do some fancy formatting of the data before we pull it down to the PDA. It's not updateable, so with tracking off, I would have thought this would be possible - but sadly it doesn't work. No error messages, but the table doesn't get created. I'm using SQL 2005 June CTP if that helps. Any ideas thanks Bruce Here are the details we want: 1) Where is this Store Proc executed and how Note: SQL Mobile does not support stored procs in its Database. ...Show All
Windows Forms Imports System.Web.Mail error
I am trying to add a reference to System.Web.Mail in VB.NET application and getting an error saying Namespace or type 'Mail' for the Imports 'System.Web.Mail' cannot be found. How can I fix it or it is only accessible in ASP.NET application Thanks Silly mistake ;-) didn’t add the actually reference via Project...Add Reference menu ...Show All
.NET Development Collection Add Method won't add a new object
Hello Everyone, I can't figure out why the following code won't work // I get about 3 unit objects back, so really the count is 3, so I should create // three new unit and add them to my newUnits collection object. However, that doesn't happen // I only get one object added. So what's the deal UnitCollection currentUnits = customer.Units.GetChildren(1); UnitCollection newUnits = new UnitCollection(); foreach (Unit myunit in currentUnits) { Unit newUnit = new Unit(); newUnits.Add(newUnit); } ///Background information [Serializable()] public partial class UnitCollection : EntityCollection<Unit> { } [Serializ ...Show All
SQL Server Database Users and Logins
Hi I can't figure out what the purpose of having seperate users is as I can't actually login to the database using one. Here is my scenario. I have a single login called LoginA and I have a database which I want to carve up using schema's. At the database level I need to create a user, associate a login with this user and can set a default schema and specifiy what schemas this USER can access. The login created can access multiple schemas. So.. I created a database login called loginA. I created a user for the database called UserA set it's login name to LoginA and I then created 3 schemas called SchemaA, SchemaB and Sc ...Show All
Visual Basic Does VB.NET support "nested" expressions (like C++?)
Hi all! I don't recall the exact term in C++, but I could do things like: int c = 5 + (a > 1 a : 0) + b; Can I also do this some way in VB.NET Thanks in advance! The languages do have slightly different features. For example C is case sensitive. I see that to be a real deteriment as came from the company that was very UN-C and I'm still very IN-C. Not that it's relevant but, C syntax is really ugly to me. So largely aside from a few small strengths and weakesses they will accomplish the same. PS - Although C people deny it, I think C string handling is awful. ...Show All
