JoseBen101's Q&A profile
Visual Basic How do I add to the registry?
I don't really know how else to say it, I have some registry files and i'm trying to make a program that adds what's in the files to the registry. If you simply want to run the reg file to update the registry System.Diagnostics.Process.Start( "d:\test.reg" ) Will work were d:\test.reg is you registry file. It will bring up the confirmation dialog just as though you had used regedit to import the registry file. ...Show All
SQL Server Drill Down Report : Visibilty Hidden Items getting confused
I have put together a series of reports using the 2005 report server technology and utilized the drill through options available by hiding items and having the parenet group as a toggle item. My problem is that after the user has viewed and clicked ona few of the drill down options the report seems to get confused and starts displaying all different levels. The only solution for the user is to refresh the report. Of course I though that my design was to blame but this does seem to happen with very simple report too. Is this proble unique to by set up Does any body else have confused visibilty problems Is this because the web server or ...Show All
SQL Server Calendar slow to load
Is anyone else experiencing performance problems with reports that use the calendar control for date parameters Whenever we load a report that uses a calendar it takes several seconds to fully load the form (you can see something like this in the status bar:"...ReportViewerWebControl.axd OpType=Calendar..."). This is not a serious problem, but if the user tries to use the control before it fully loads then the page throws javascript errors. I am wondering if this is a issue with the report itself or the server configuration, or if it is just something we have to live with. The calen ...Show All
Windows Forms CausesValidation problem
I teach Vb and am coming to grips with the changes from VB6 to Vb.Net. Has anyone had a control where CausesValidation was set to False yet it still caused validation I have an Exit button that does exactly that! ...Show All
Visual C# how to hide menu item with child menus
Hi, In menu contraller we can hide child menus by seting there text property to empty. if that child menu has his child menus even if we set all text properties to empty it shows a empty arrorw on the menu. if any one know please tell me how to over come this. i mean i want to hide menu items with child items , in programaticaly. Thanks and regards Jenifer Hello Jennifer. I'm not sure what classes/objects you're using however most MenuItem's and ToolStripMenuItems should have a .Visible property. You can set this property to false to hide and set it to true to show it. So instead of setting the c ...Show All
Visual Studio Using SetSelectionContainer
I am trying to access VS Property grid from my add-in. Other than writing this line and getting access to the window, there is no information on how to change the properties : I have to following line in my add-in Window cbw = ( Window )_applicationObject.DTE.Windows.Item(EnvDTE. Constants .vsWindowKindProperties); Then how do I get the property list and ability to change them.. ( like I want to set one of the properties to open up and show a file path ) Thanks in Advance Raja Reposting as there no response What does return m_objDTE.SelectedItems.SelectionContainer.Item(1).FullName ...Show All
.NET Development form is lost
Hi. I am trying to do simple graphics here using 2 forms: 1 main form which executes form 2 (graphics) in a seperate thread. form 2 on load basically has a for loop and in it will increase the opaticy of the form by 0.01 to give a fade in effect however once this is shown, the form is then lost! if i do not put this in a seperate thread created in the application it's fine, the form is there. but since this type of graphic "freezes" the previous form, i prefer to use threading to avoid not freezing the main form. any ideas I am guessing its because once the operation is complete in the thread method, that's it quit the thread. but there must ...Show All
Windows Forms DataGridView Survey
Hello WinForms users, My team, which owns Windows Forms, would like to gather some information about the new DataGridView control that shipped in the .NET Framework 2.0. At the high level, we would like to figure out: - which features of the grid you are using - which features you wish were available - what works well, what does not - what’s the typical size of your grid Any feedback you may have would be welcome. If time permits, you can also mark the features you use in the table below (this is not an exhaustive list, just a small subset): Dat ...Show All
Software Development for Windows Vista Filter Development
Hi, I want to develop a filter that seems InfTee (filters samples at SDK). Well, we know that "Infinite Pin Tee Filter" delivers the same sample frame of input pin to all of the output pins. So, my application needs that this filter delivers the frames for one especific output pin that it set. It would work like a "switch", the application set the output pin that this filter should deliver a sample(frame). I’m wondering if that modification is simple. Anyone could help me, please This should be quite easy, I would thin ...Show All
Smart Device Development How can I place TOOLBAR on top?
I try to place TOOLBAR on top or right with .netcf, but I can not do that . thank your help! Sorry. The correct url is: http://msdn.microsoft.com/library/ url=/library/en-us/dnnetcomp/html/ImageButton.asp frame=true ...Show All
.NET Development How to Send and Receive Data via TCPClient?
Hi everybody, Do anyone knows how to transfer (ADO.Net) DataTable through GPS/GPRS I understand it uses bytes to send and receive data to and from. How could I get DataTable data by sending sql statements through GPS/GPRS Is anyone knows how Is it possible to convert DataTable to bytes[] and retrive by converting it back How to transfer data in form of DataTable using TCPClient Thanks. den2005 public class DataTable : MarshalByValueComponent, IListSource, ISupportInitialize, ISerializable DataTaqble supports ISerializable SO use that interface to convert to bytes and then conver ...Show All
Smart Device Development Where can I find/request/buy the Windows CE .NET 5.0 Product Key ?
Subscriber downloads have Windows CE .NET 5.0 under the Developer Tools->Windows CE tools. I downloaded all 6 CDsand when I try to install it it asks for a Product Key. I looked into the download page (sometimes they have product keys in there) and also at my Product keys sections but there is no such key. Where can I find this key Hello, After some investigation it looks like we had a period of time where the 5.0 disks were available to MSDN subscribers. This was a mistake on our part. Because Windows CE is an OEM tool we do not make it avaiable to the public in a full package product fo ...Show All
Visual C# VS2005 UI
Hey howzit I would like to have a slide and pin type UI for my application, similar to VS2005 e.g. the solution explorer and properties windows can slide in and out and be pinned down and also they are part of a collection of vertical tabs on the right on the main window...how can I achieve this level of UI functionality Regards, David There are a lot of 3th party controls available. The greatest i know it SandDock . But there are a lot of articles and samples available also: A VS.Net-like ToolBox DockManager Control Whidbey Project Options Panel Docking control with tear-away frame tool windows Magic Library Docking Manager ...Show All
Windows Forms Adding an icon to the form taskbar when using a form with no border?
Hello, I am making a form in Vb.net using a skin so I do not have a border on my form, but I would like an icon to show up in the taskbar when the form is opened. Is this possible I haven't been able to find anything that says you could. Can someone please help, point me in the right direction, or confirm that this can't be done Thanks, Marc Paul, I tried it on an XP system and the icon is visible in the taskbar. It must be a Windows 2000 issue or an issue with my computer itself. Thanks for the help. Marc ...Show All
Windows Forms How To Call Mdi Function From Dialog Form ?
Hi All , I Want to call to fnUserExist function From the frmLogin dialog form code. This is the code that I have in the mdi form Form frmChildLogin = new frmLogin(); frmChildLogin.ShowDialog(); public bool fnIsUserExist(String sUser , String sPassword) { return true ; } Please Help Thanks. It's Correct, You are OK. Thanks Again David . ...Show All
