rosin's Q&A profile
Visual Basic BIG error
OK, I'm gettin this error 44 and I don't know what to do. Error 44 The "ResolveComReference" task failed unexpectedly. System.SystemException: The type library importer encountered an error during type verification. Try importing without class members. ---> System.MissingMethodException: Method not found: 'Void VB._PictureBox.set__Default(System.Object)'. at System.Reflection.Module.InternalL ...Show All
Visual Studio Team System Sharepoint Permissions error When Creating New Team Project
I'm having trouble adding users as TFS Administrators. From what I understood in the documentation, a TFS Administrator needed to be added to the TFS Security Group as a TFS Admin, an Admin for Sharepoint at the top site level and a content manager for sql server reporting services. I have done that however, I still receive the following error: Error Insufficient permissions on the Windows SharePoint Services at ekta to create ...Show All
Visual Studio Express Editions CreateUserWizard - how to get missing field error message to show?
Hi all, I am configuring the CreateUserWizard and although there is default text in place (such as for UserNameRequiredErrorMessage), if the user hits "create" and leaves that field empty, all the wizard does is put a red star to the right of that field. It never shows the default text ("User name is required"). I've been all over this thing and don't see a way to change this behavior. Am I missing something obvious Tha ...Show All
Visual Studio Express Editions Rubbish mail
hi guys! I'am a beginner in C# I creat a e-mail sender ,but,the pop3 server think the mail is rubbish :( what happen thanks! This could depend on a lot of things... One main one might be the subject or email address youare using for the email as your sever might be picking it up as spam... Another problem could be on the methods that you are using for the sending of the mail... You could be forming bad h ...Show All
Visual Studio Team System Propagating System.Description field to Warehouse?
Is there any way (e.g modifying the process template) so that the System.Description field is copied to the Warehouse for reporting purposes regards Mark Mark, In order for a field to be picked up by the adapters and be copied to the warehouse, you need to set the reportable attribute of the field in the process template to be reportable="dimension". Once you do that you will need to ru ...Show All
Windows Forms Delete rows from DataGrid not working?
My DataGrid is bound to a DataSet and showing only those records whose Client_Liability_ID IS NULL and I am using RowFilter to do so. Following is the code: 'Set Select Command for WithdrawalDA. WithdrawalDA.SelectCommand = New SqlCommand With WithdrawalDA.Sele ...Show All
Visual Basic Pulling User name and info From Active Directory using LDAP in VB.net 2005
Hello, I am sorry I do not have functional code to post but I hope you can understand my request enought to give me a hand. NEEDS: 1> take a request... ie. First name, Last name, or login ID and Search AD Path can be hard coded so entire forest is not searched. 2> List all entries found 3>once the correct user is selected I need to pull First, last, middle name and , Email , Phone number , @ and GUID for that user. ...Show All
Windows Forms bug? AutoSizeColumnsMode & header
I have AutoSizeColumnsMode = AllCells on my DataGridView. One of the column headers is "Announcement Number". The column contains nothing but 1-digit-long integers. When I run the program, the header gets split up onto two lines with "Announcement" on top, and "Number" below it. This is ok. However, the column width looks like it was "autosized" for "Announcement Number" and not "An ...Show All
SQL Server Stack With SQL Server
Hi, I need to implement a stack using Sql Server. The basic table is simple:- id (int), val (char(10)). Basically I want a recursive EvaluateStack stored procedure. This should select the topmost value from the stack, and then either return it or (in the case of an operator) recursively call itself in order to get a left hand and a righthand operator. So: (pseudo-code) SELECT val FROM STACK WHERE id=@Count CASE WHEN val="+" lhs=EXEC E ...Show All
Visual C++ Edit control create failed
After my application run some time,It failed to show dialog or formview that contain Edit contorl ,when I try to dynamicly create edit control ,It fails too. at this time the imagelist contain icon is also failed load. when edit control create fail ,I found that CWnd::DefWindowProc process WM_NCCreate message ,return 0 and GetLastErrro return 0x00000008 ERROR_NOT_ENOUGH_MEMORY,So createwindow return NULL. But I feel odd is that I still c ...Show All
Visual Basic Can VisualBasic send an SMS message?
Can VisualBasic v8 (.NET 2005) send an SMS text message to a mobile phone# Mine's running on Windows server 2003. This would be ever so cool !!! How can the @domain part be automatically determined knowing just the mobile# How do cellular providers determine the target provider when you send an SMS message to just a mobile phone# Thanks. ...Show All
Windows Forms Form partial class
Hello, I have a form named MainForm. I see that the class is defined as a partial class, and the designer class is also a partial class designation. Can I define a couple more MainForm partial classes and put some of the control event handlers in that class, to kind of break up the form a bit Thanks. Hello, i've tried an additional partial class for a form, and it works fine. But the designer will not show ...Show All
Visual C++ problem having vc7.1 and vc 8.0 express on same machine
hi, i have installed vc 8.0 express + platform sdk on my machine where i had already a working vc 7.1 C++ standard installation. btw: i work only with C++. vc 8.0 worked fine after installation, but vc 7.1 studio has now a problem with linking. i get always a fatal error in following form: ... fatal error LNK1173: unable to find entrypoint 'DllGetObjHandler' in E:\Programme\Microsoft Visual Studio .NET 2003\Vc7\bin\c2.dll i have deinsta ...Show All
Windows Forms how to make textbox trigger on 'enter' key?
how do i make a textbox to cause an event when the 'enter' key is pressed do i have to just catch it in the 'KeyUp' evnet or is there a better way thanks! KeyDown/KeyUp and KeyPress will all fire on the TextBox if&nbs ...Show All
Windows Forms Selecting a DataGrid Row By Primary Key Value
Every time a row in the DataGrid's underlying DataTable gets changed, I want to set the corresponding background color of the DataGrid row according the the RowState. I figured I would just hook the my underlying DataTable's RowChanged event, but I'm new ...Show All
