woodpecker0127's Q&A profile
Windows Forms designer can't load form. Where is 'more information'?
after going from beta2 to rc1, the designer all of a sudden cannot load my forms anymore. instead, i get the infamous window with the red top that says some errors may go away building the project, while other need code changes. needles to say: the file compiles fine, the form could be opened with the beta2 and vs2003 designers and obviously doing a rebuild doesn't help at all. now what the additional error message says; Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. ok - great. now how do i retrieve the loader exception property. how can i fix this where can i find more info ...Show All
SQL Server SQL Server CTP 16 - Failure to set maintenance plan
We are miserably failing to setup maintenance plans in SQL Server CTP 16 (Sep. 2005). Has anyone tried and suceeded We were able to use it in CTP 15 (first CTP that it worked for us). I'm pasting the error we receive on screen - TITLE: Maintenance Plan Wizard Progress ------------------------------ Create maintenance plan failed. ------------------------------ ADDITIONAL INFORMATION: Create failed for JobStep 'Subplan'. (Microsoft.SqlServer.MaintenancePlanTasks) For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft+SQL+Server&ProdVer=9.00.1314.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.Fai ...Show All
Visual Studio Express Editions Creating Setup Program C# Express
Can someone please explain me how I can make a setup program for the programs I made in C# Express I know in Visual Studio, you can choose a template, but I can't find it in C# Express... Thanks in advance... Mykre is exaclty right. There is no setup project template in the Express products, but there is ClickOnce, which is the feature that is available at Build->Publish. This wizard will guide you through the steps required to create a setup for your application. Thanks, Luke Hoban Visual C# IDE Program Manager ...Show All
Visual Studio Team System Problems after reinstalling SharePoint
I have to reinstall the WSS after a problem with a Language Pack Service Pack. After that, Foundation couldn't create new team projects anymore. I've already tried the Foundation's setup repair option, but even so, I'm getting this error (see below) during attempts to create new Projects. How do I correct that without reinstalling everything and losing my current projects Thks, Max Andrade 11/9/2005 4:30:38 PM | Module: Engine | Thread: 8 | Running Task "SharePointPortal" from Group "Portal" ---begin Exception entry--- Time: 11/9/2005 4:30:39 PM Module: Engine Event Description: TF30162: Task "SharePointPortal" from Group "Portal" failed ...Show All
Visual C# Restart Threads?
Hello All, I am trying to work on a client/server software. I have written a thread to manage the socket listening. But the problem is that after the current user disconnects i terminate the thread with :- thrdListener.Join(); or thrdListener.Abort(); But the problem is that i cant restart the same thread again since my thread throws a ThreadStateException Is there any work around for this How can i restart the same thread Can anyone of you guide me for C# Remoting.. Any tutorials/links/books Because i am thinking Remoting will solve all my hassel ...Show All
Visual Studio Team System Team System & Roles
I am very new to Team Systems. All the documents I have seen at microsoft website seem to indicate that a role will dictate what will be available to a user. I work in a very small org, where there are 10 people taking on multiple roles. I am the architect, I am the proj manager, many of us are developers, 2 of us do testing, deployment and support. I would like to take advantage of all the features provided by Team Systems. * Can I avail all the features of Architect, Developer, and Tester on one machine/installation * If so, would I do this by installing multiple modules Thank you, V ...Show All
.NET Development .NET Remoting
hi ppl i have a problem, i have a server client remoting application the thing i s that i have a method on my server and i dont know how to communicate with my form, becaseu i need to create a new instance of my form and i cant display it on the allready open form,, this is my code: [code lang="C#"]namespace CyberCafe { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public void ReceivedText(string msg) { string time = DateTime.Now.ToShortTimeString(); textBox1.Text += time + " : " + msg + "\n"; } private void Form1_Load(object sende ...Show All
Visual Basic Scroll Bars, and transfering info from one form to another
Hi, I am quite new to programming, and I am wondering how you get scroll bars to work, and also, how to transfer data from one form to another (if that is possible) Thanx Yeah and about transerting data from one form to another, there are many ways to do it but I'll show you one easy way to do it :) Dim MyForm as New Form2 Form2.ShowDialog() 'When the form is closed the code will proceed from the next line 'Let's say we have a TextBox called TextBox1 in form2 that we want to read Dim TempString as String TempString = MyForm.TextBox1.Text It's that easy Enjoy A ...Show All
Software Development for Windows Vista RTM
Is there a release date for WWF yet Will there be a cost Will it work on Windows XP Pro/W2K3 Thanks hi Mark, I want to deploy some windows application to w2k ( server or professional). My application also uses windows workflow dlls. U have done similar thing as i think.could u help me here thanks ...Show All
Visual Studio ReportViewer1 LocalReport SubreportProcessing event doesn't fire
from following two posts, http://groups-beta.google.com/group/microsoft.public.sqlserver.reportingsvcs/browse_thread/thread/e5be66e6f49f9d86/f0191d9dd6e3b558 q=subreport+in+reportviewer+local+mode&rnum=1&hl=en#f0191d9dd6e3b558 http://groups-beta.google.com/group/microsoft.public.sqlserver.reportingsvcs/browse_thread/thread/4e94a8f347b4426d/3cc4e95a2fd850a6 q=subreport+in+reportviewer+local+mode&rnum=2&hl=en#3cc4e95a2fd850a6 I learned I have to wire SubreportProcessing event to make SubReport local mode to work. But my problem is the event can't be fired. Me .ReportViewer1.LocalReport.DataSources.Add( New ReportDat ...Show All
.NET Development Oracle Databinding on Formview.
Ok, Love VS2005, but it's not that Oracle friendly at first sight. I can create a FormView bound to a SqlDataSource, and Bind() fields to view the data (I have to manually create the query because of [] around each field, but that's part of the incompatibility...), but anyway, the viewing works fine. This is ODBC->Oracle 9i, Feb CTP. I cannot get the update to work though. My UpdateCommand is: UpdateCommand="UPDATE MYTAB SET ID = @ID WHERE (KEYID = @KEYID)" This follows an example found at the link below, so am using the CommandName="Update" to run the update from within an EditItemTemplate that displays data bound to the SQLDataSource. ...Show All
Visual Studio Express Editions Error message "non-generic method" using ObjectDataSource and GridView
Here is my process: (all with visual web developer 2005 Express, April version.) 1. create new dataset in the app_code folder, called interaction.xsd. (right-click on the app_code directory and select new...) a. Step through the TableAdapter Configuration Wizard. b. Select the data connection (ManagementConnection String (Web.config) c. Create new stored procedures d. sql statement "SELECT Interaction.* FROM Interaction e. new stored procedure names: InteractionSelect_sp, InteractionInsert_sp, InteractionUpdate_sp, InteractionDelete_sp f. Fill method: FillInteraction, Get method: Ge ...Show All
.NET Development error try project only build - 2005 beta , build type x64
receving the dreaded "operation could not be complete - unspecified error" message box . I see that another user has the same problem and is reporting it in the Microsoft Technical Forums Visual C++ Visual C++ General VC2005 Beta2 Crashes I'm going to cross reference my issue to that one as I have done here . Maybe someont at MS can help ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Keep mouse inside window
I'd like to prevent the user from putting their mouse outside the window. Because you target enemies with your mouse in my game, if there's an enemy close to the edge of the screen, there's a good chance the user will overshoot and click outside the window - thus defocusing the window, disrupting gameplay, and angering the user. Yes, I know. Full-screen applications never have this problem. But most of my program is already windowed (only the action sequences need the directX form, not the option menu, map screen, etc), and I'd prefer to keep it windowed. Obviously, if the user alt-tabs out of the window, the restriction on mouse movement ...Show All
Smart Device Development changing the text/caption of tabs of a property sheet in mfc, evc++
hello everyone i have an mfc smart device application. i have created 3 property pages using CPropetyPage class and have added these to a property sheet. now my requirement is that i need to change the text/captions for these tabs dynamically. when i created the three property pages (derived them from CProperty Page class), the class wizard generated three dialogs for me which i'm using as my tab pages. i need to assign the captions/text for the tabs dynamically loading them from stringtable. how do i go about it its urgent.... any assistance and any piece of code will be of great help. thanks in advance kulkarni ...Show All
