fury88's Q&A profile
Windows Forms Intellisense, tooltip description.
I don't know if it has a specific technical name. Let's take an extremely simple example. When I have a button click event handler, it passes the 'sender' as an object. Later in the handler, if I type sender then a '.' intellisense pops up that long list of one method; 'GetType'. When I select GetType, out to the right, a tooltip comes up and tell ...Show All
Windows Forms Draw translucent rectangle over top of child controls
Hi, I'm drawing a translucent rectangle in the paint event handler for my form, but I want it to draw over the top of any and all child controls on the form. Currently, the rectangle is rendered 'underneath' the child controls instead. I tried using a transparent panel, and drawing into that, but I've found that the controls under the panel aren't show ...Show All
SQL Server Add filters dynamically
Hi, I am using a ReportViewer control on the windows form to connect to Report Server, process the report remotely (ServerReport) and render the report in PDF format. The user wants to add some fiter(criteria) each time before the report is rendered. The filter (criteria) is generated separately. The original content of RDL should not be changed. I know, Report Builder is an option available. But, the end-user doesnt want to use Report builder to design the report. I need to know, is there anyway I can retrieve the dataset->commandtext of the report(published on REport Server), edit and set it back dynamically, before renderi ...Show All
Software Development for Windows Vista Problems with mciSendString
Hi. I use mciSendString for playing mp3 file. If I send "seek _ALIAS_ to _position_" and position 2000 or less (total frames count aproximately 25000). mciSendString do nothing 5 or more second then it playing file from start. If position > 2000 mciSendString work correct. How I can correct this problem This problem repeat for all my files. StringBuilder ReturnCode = GetStringBuilder(); string CommandLine = "Open " + label3.Text + " type MPEGVideo Alias gelo_mp3"; mciSendString(CommandLine, ReturnCode, ReturnCode.Length, new IntPtr(0)); CommandLine = "Set gelo_mp3 time format fram ...Show All
.NET Development how to selected row after sorting a DataViewGrid ???
Hi, using a DataViewgrid : when double-clicking on a row do I view the selected row in another window. but when I sort DataViewgrid on another column and dbl-click again do I get different row than the one selected. How can I make sure that the selected row is always shown thnx Chris ...Show All
Windows Forms Resizing and repositioning the control at runtime
I have a window form in that i have a text box i want to resize and change the position of the text box when i click on that control http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=395561&SiteID=1 ...Show All
.NET Development SSL padlock symbol disappears in few pages
Have implemented SSL for your application using a free certificate offered by startcomm. Everything seems to be working except for in a few pages which have an iframe inside an iframe. The SSL padlock disappears in those pages. The application works perfectly fine over Mozilla and Opera. Its just on IE 6 (SP1) that I'm facing these issues. The client is kind of apprehensive about this issue. But one thing I noticed is that even though the padlock disappears, if I click on that empty space, I still get a certificate with all the certificate details. Even if I right click and look at the property of the inner iFrame pages, it gives the URL ...Show All
SQL Server BUG: SSIS imported package errors with 'Guid should contain 32 digits with 4 dashes'
I have imported a package using SSIS into the Maintenance Plan folder from another server. It imports fine, but when i Modify the package then click save I get the following error : 'Guid should contain 32 digits with 4 dashes'. This has been reported on other forums without resolution. Pete I’m receiving the same error of ’Guid should contain 32 digits with 4 dashes' when modifying the package and try to save it. The server that I exported from is SQL standard. The server that imported on is SQL Ent. Both servers are 32bit. Gene ...Show All
Visual Studio Express Editions link error
i keep getting this error: error LNK2019: unresolved external symbol "class std::vector<int,class std::allocator<int> > __cdecl alternateMerge<int>(class std::vector<int,class std::allocator<int> > &,class std::vector<int,class std::allocator<int> > &)" ( $alternateMerge@H@@YA AV $vector@HV $allocator@H@std@@@std@@AAV01@0@Z) referenced in function _main i have the following code in my program which i suspect is the cause, but cant find a way to resolve it. template<class T> vector alternateMerge(vector<T> &u, vector<T> &v) { vector<in ...Show All
SQL Server SELECT QUERY SCENARIO
SELECT InventoryID,InventorySubTypeID,Make,Model,SerialNumber,OriginalCost,NetValue,InventoryStatusID, isnull(null ,0) [Adjustment Amount],isnull(null ,0) [New Net Value] ,null [Change Status To],null [Comments] from Inventory_Profile where InventoryID in ( inventoryIds ) this scenario the inventoryids is a collection of ids like below SELECT InventoryID,InventorySubTypeID,Make,Model,SerialNumber,OriginalCost,NetValue,InventoryStatusID, isnull(null ,0) [Adjustment Amount],isnull(null ,0) [New Net Value] ,null [Change Status To],null [Comments] from Inventory_Profile where InventoryID in ( 1,2,3,4,5 ) this scenario i wan ...Show All
SQL Server Package running other packages
Hi everybody, I have to create a package that executes other packages I've already created... Every one of these packages run with the same Configuration File, but if I try to execute the main one, including the path of the file, I get errors from the other packages because they can't find it... How can I manage to pass this file and its content to the other packages Here a little explanation of te process: Main Package needs configuration file X.dtsConfig, and calls: package1, which needs configuration file X.dtsConfig; package2, ....... I hope everything is clear... The people I work f ...Show All
Windows Forms C# question
What's the equivalent of the below in C#: Private WithEvents MDIControl As MdiClient Thanks Hopefully nobody would write that line of code in .Net... they'd add a reference to ADODB and use: Dim abc As New ADODB.Recordset or Dim abc As ADODB.Recordset = New ADODB.Recordset ...Show All
Windows Forms multiColumn Combobox
I am looking for a way to have more than one column in a combobox. I also need a hidden value property to be the "SelectedValue". If anyone knows how to do this it would be great. Kevin hrm...my information must've been inaccurate. My apologies. I found a new multi-column combo box today that seems to work better then the other 2 that I've seen/played with: http://www.edneeis.com/control.aspx ID=7 Very simple to ...Show All
SQL Server Creating report based on parent-child dimension
Hi I have a problem to create a report based on a parent child-dimension When I go to reporting services, and I create a new report based on a cube, I drag my parent-child dimension to my data-layout. Then the dimension is immediatily ragged down. Anyone an idea to solve this. Does anyone have an example to create a report based on a parent-child dimensions Thx ...Show All
.NET Development Simple OO Design Question...
Sorry if this is posted in the wrong forum, not sure where else to look... I am working on a VB.NET program to catalog my video collection. I have designed a class called VideoTitle. One of the methods I believe this class should implement is an Add Video method. When a video gets added, it will need to look at my DB to get the next ID number that it will be assigned. Here's the question... In best practices, would the code within the class itself do the read from the DB to get the next ID, or would that be done outside the class, in the form's code that instantiates the VideoTItle object My thinking is that I should use a constructor that ...Show All
