Yogi Verite's Q&A profile
Windows Forms Where should I report a bug of .Net Framework?
I found a bug of .Net Framework 1.1. Where should I report it How about here: http://www.gotdotnet.com/community/messageboard/Home.aspx ...Show All
Visual Studio document map Group expresion on XLS tabs
When You export a report to XLS the reportviewer nicely puts each group in a tab (Sheet) by itself. How can I control the name of the tab maybe have the group expression instead of Sheet1 Sheet2 etc.. ...Show All
Visual C++ /FS compiler switch apparently not working
Hi all, When trying to output the __FILE__ predefined macro, I always get the file name fully qualified regardless if I have /FS set or not as a compiler option. Is this switch not working, or is there some other compiler switch that is forcing fully qualified path names There is no /FS compiler switch. There is a /FC compiler option, that causes the compiler to display the full path of source code files p ...Show All
Visual Studio Team System Error TF84037 with Excel Team Foundation AddIn
I get the following error when I try to open Excel documents stored on the TFS. TF84037: There was a problem initializing the Microsoft Excel Team Foundation Addin. Re-installing the Team Foundation Client may be required. I've attempted a full uninstall and re-install but that have no effect. Please provide more information on the TFS version you are using and the steps leading to this error. Does thi ...Show All
.NET Development Receiving Data
back when i used VB, i had the Winsock control which took care of making connections and stuff. but now im using C# and i need a little help with the socket Class. in VB, Winsock has an event called DataArrival which executed when packets came. but in C#, the Socket class doesnt have that. the closest thing i could see towards getting the data is Socket.Reveive(). now my question is, does Socket.Receive() execute when data arrives or do i have t ...Show All
Windows Forms Redraw perf problems with custom controls
When making large controls that can draw quite a lot of data at once (when scrolling up and down) is it best to move over to DirectX because come of my clients are getting out of memory errors when they do large searches (see the link for a screen shot of the control). I can’t see t being a problem with my code as i have gone through the entire thing tweaking it, as far as I can tell its when the users scroll up and down a lot. This causes t ...Show All
Windows Forms ***FIX*** Error installing Winforms 2.0 application with ClickOnce deployment
Hi. I have an Winforms 2.0 application that I want to deploy using ClickOnce deployment. I have tried it and the deployment seems to work. I get the webpage where I can install the application from, but when I try installing the application I get an Windows error dialog and a '.NET Runtime 2.0 Error Reporting' entry in my Windows eventlog. Detailed error message: EventType clr20r3, P1 app.exe, P2 1.0.2211.28810, P3 43d0fb04, P4 mscorlib, P5 ...Show All
Software Development for Windows Vista Dyanamic State Work flow
Hello: Order processing state machine workflow sample given on www.windowsworkflow.net has fixed states that a PO can go through. My question is, if based on kind of PO/Products/Customer involved, we need to dynamically decide the states for a PO, can it be done If so, what should be the steps Thanks Jatin Jatin - I can think of two ways off the top of my head - but there may be other (and potentially bet ...Show All
.NET Development problem with dataset in combobox
I am creating a dataset from two tables. the combobox datasource is set to this dataset. but when I try to set the displaymember and valuemember properties, the drop down window is not displaying any column names. only "none" is available. If I use only one table, the columns of the table gets displyed properly. why I am not able to view the columns in two tables together Hi, Ok, tried it and it displayed none. ...Show All
Visual Studio How to add an assembly reference to a web project?
I am trying to automatically add an assembly reference to “myassembly.dll” to user’s project from my Visual Studio addin. The addin setup program adds the necessary registry key in order to display “myassembly.dll” in Visual Studio’s “Add Reference” dialog box. After that in VS 2003 I could used the References property of VSProject interface to add this assembly to the user’s project as shown below. VSProject.References.Add(“myassembl ...Show All
Windows Forms Slideshow Using PictureBox - Images From Specified Directory or Website
Hi, I'm creating a C# Windows application using several .NET components for ClickOnce distribution. I'd like to include an automatic slideshow area using PictureBox. In looking through the samples and forum requests I notice several examples of PictureBox using ListView to select an image. I added a listview and populated a column with the full file path\name (except for the first row under the column label being b ...Show All
Windows Forms DateTime in Datagrid
Hi there, i fill a datatable with a stored procedure and one of the fileds is a datetime datatype. But when the datatable is linked with the datagrid only the date (01-02-2005) is displayed. I want the time also in the datagrid. It is&nbs ...Show All
Windows Forms UserControl with Panel as constituent control
Hi, I have created a UserControl with a Panel as a constituent control. I require the ability to, in the IDE, drag drop controls into the Panel within the UserControl. How do I go about coding that functionality Many thanks You need to add a designer for the control. Add a [Designer(...)] attribute to your custom control. Implement your designer by deriving from ParentControlDesigner and ov ...Show All
Smart Device Development How to change submenu on smartphone toobar?
i created a menu and assigned it's submenus to the toolbar buttons in the rc2 file. the code is: ..... I_IMAGENONE, IDM_MAIN, TBSTATE_ENABLED, TBSTYLE_DROPDOWN | TBSTYLE_AUTOSIZE, IDS_MMR, 0, 1, ... i think the last number 1 is the index of a submenu in the menu i created in resource. because if i change it to 0, the first submenu would popup when i click this toobar button. how can i change the ...Show All
Smart Device Development Color of the submenu items in wm5.0
I am running an application on Window Mobile 5.0. Anyone notice that the submenu item's font color is a gray instead of the black. Can you even change the text color of submenut items is there a way to set this in the rc file Albeit a hack, you could change the registry immediately before the menu is shown, and restore when the menu goes away. ...Show All
