Software Development Network Logo
  • Microsoft ISV
  • VS Team System
  • Windows Forms
  • IE Development
  • SQL Server
  • .NET Development
  • Game Technologies
  • Smart Devicet
  • SharePoint Products
  • Windows Vista
  • Audio and Video
  • Visual Basic
  • Visual C#
  • Visual Studio
  • Visual FoxPro

Software Development Network >> Mikedlnk's Q&A profile

Mikedlnk

Member List

Esenthel
dvidal
Heinz Krug
tomohog
Ludwig Xu
Voodoo45
Andre Odendaal
Hans Preuer
KevinBurton
ijrr
Jon_V
Ryan Frazier - MSFT
Patrick Sears
RajaGanapathy
Charlie Audritsh
arkiboys
Nishant Sivakumar
btolman
Robert Green
teeMeyer
Only Title

Mikedlnk's Q&A profile

  • Gadgets mouseover event when using addImageObject

    Is there any way to set a mouseover event for a g:image, if it is added using backgroundId.addImageObject Unfortunately not, <g:background> doesn't support events. <g:image> does support events, but it will only be of use if you don't have a transparent background. ...Show All

  • Visual C++ is it possible to disable linker warnings?

    just wondering, is it possible to disable linker warnings in code, as you can with the warning pragma for compiler warnings Hi Yes u Can Try this: #pragma warning (disable:XXXX) Where XXXX is your warning code. Regards David Leyva ...Show All

  • Visual Studio Express Editions How to do a function if a mouse button is clicked

    i want to make a bar that when i click and move the mouse (while the left mouse button is still depressed) the form moves with it but as soon as the left mouse if let go (unclicked) then the form will stop. so far i have this: Private Sub MoveBar_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MoveBar.MouseMove If Windows.Forms.MouseButtons.Left Then Me.Location = e.Location Else End If but the problem is that "Windows.Forms.MouseButtons.Left" this piece of code askes the program whether a left mouse button exists, not whether its clicked......can anyone help please! Thanks heaps to anyone whome can help me, even in the slightest. Josef Stalin if (e.MouseButton = ...Show All

  • Windows Forms How to Change color of one Column in a Datagrid

    Hi, I'm Using C#.Net windows Form on VS.NET 2000. (DataGrid Control) 1. I am working with a datagrid and i want one of the columns background color to be red. How to achieve it. For eg; if i am having 15 columns, i want the 6th coloumn BGcolor to be in red at the time of form load event. 2. I want to access the datagrid's built in scrollbar. actually the scenario is i am having 15 columns in the datagrid. The horizontal scroll bar should start from the 5 the column rather than from the first. so that the first 5 columns remains static and the balance columns scrolls. it will b high helpful if provided with sample coding. tu. Hi, If you use DataGridView, I would suggest that several scroll properties are very useful: Firs ...Show All

  • SQL Server Cannot Deploy Report - Please Help

    I am trying to set up Reporting Services. I am using SQL Server 2005 on Win XP Pro. I installed service pack 2 for SQL Server 2005. The database looks to be set up in the configuration manager. When I try to deploy the report I get the following message: A connection could not be made to the report server http://localhost/ReportServer When trying to open the ReportServer folder in IIS I get another message: An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help Exception has been thrown by the target of an invocation. Could not load file or assembly 'Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies ...Show All

  • Smart Device Development UPNP Argument

    Hi Alex ! Thanks again for all you help. I manage to go further. The problem of SID (0x80040207) is solved. To help me understand some stuff, I compiled the sample that we can find in the platform SDK (upnp/netds/genericucp). But it seems that there is some trouble with argument of actions. Here what I'm doing : - Launching GenericUCP.exe - Start DIscovery (It found a windows media connect server of mine, that is on a computer on the local network) - I select the following service : "urn:upnp-org:serviceId:ContentDirectory" - I type the action I want to invoke (i.e: GetSearchCapabilities) - I fill in the argument (i.e: SearchCaps) - I click on the "invoke" button, and I have the following mess ...Show All

  • SQL Server Merge join more than 2 tables

    I need to take certain items of data from four different tables and out them into one table. Unfortunately my source data's version of SQL does not support the LEFT JOIN keyword which has left me with a bit of a problem. I saw the merge join in SSIS and used it to get data from two of the tables and stick them in the destination and it all worked fine. That got me thinking, is it possible to create a second merge join transformation within the same data flow task for the remaining two tables and then join the output of both the merge joins to give me the data I need from all four tables in one output I cannot answer your direct question about the merge join, but wanted to make one com ...Show All

  • .NET Development string to money

    plz send me how we type cast string to sqlMoney. ...Show All

  • Visual Studio Team System Need a silent mode for MSTest to run unattended.

    Is there some (undocumented ) way to run mstest silently from the command line Currently if a test raises an unhandled exception, mstest will open up an "Unhandled Exception" dialog box. This essentially prevents me from being able to run unattended through a list of tests via the command line. Can you give us some details on how you ran into this issue What type of test were you running when the error pop up What is the test supposed to do What are the differences between this test and other tests that were passing in the same run I don't think the exception from vstesthost can be handled in the test code, as the unit test itself runs under it. Thanks, Christine ...Show All

  • Visual Studio Tools for Office VSTO2005 Causes Office2003 problem

    After installing VSTO2005 every time I open an Office2003 application it asks for the VSTO CD and runs an install. I finally had to remove VSTO. How can I fix this Did you try to just reinstall VSTO2005 If installed ok the cd is not asked for anymore. -= Maarten =- ...Show All

  • Visual C++ Problem with reading and writing in file

    Hello everyone, This is my problem - I want to read first line form the text file, viewing on the screen and replace second line whith new string. Here my code: #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string st; fstream iofile; iofile.open ("C:\\sample.txt", ios::in|ios::out); getline(iofile, st); cout << st<<endl; cout <<"Enter new string:"; getline (cin, st); iofile<<st<<endl; iofile.close (); return 0; ...Show All

  • Windows Forms turning off the start navigation "click" sound in WebBrowser Control

    I am using the .Net 2.0 WebBrowser control and even when I set the visible property to false I still hear the "click" start navigation sound you hear when you click on links in internet explorer. I would like to find out a way to somehow disable this because I'm using this control in invisible mode to do some behind the scenes navigation, I dont want me users to hear this sound. Many thanks to someone who has an idea, Michael Hi, I'm afraid the click sound cannot be silenced... What are you using WebBrowser for, exactly  Maybe  this thread  about sending Http requests without WebBrowser will give you an idea... Andrej ...Show All

  • SQL Server sequence clustering and association rules

    Hi I read the paper of sequence clustering. It seems that the major application of the algorithm is for the web site. I was just thinking that can I apply this algorithm on the purchase sequences of credit card data If so,please also tell me the difference between sequence clustering and association rules on credit card data application. Although I realize that sequence clustering is a fully probabilistic model and it has the capability of prediction, association rules also give the probabilities of purchasing the other products. Thanks in advance. To Wong Association Rules analyzes items that occur together, say in a single purchase transaction, whereas Sequence Clustering analyzes items or e ...Show All

  • SQL Server ADOMD.net 9.0 (client) and CubeDef.LastProcessed

    What is this property (CubeDef.LastProcessed) supposed to return as it does not return the date the cube was last processed Does AMO provide this info more reliably TIA Dave Hi Dave, It's a bug - CubeDef.LastProcessed returns the last time the server was restarted as far as I know. See http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx FeedbackID=124606 ...for more details. Take a look at the comment posted by furmangg on April 28th on this entry on my blog for some code which does what you want: http://cwebbbi.spaces.live.com/Blog/cns!7B84B0F2C239489A!675.entry It's also available in the Analysis Services Stored Procedure Project here: http://www.codeplex.com/Wiki/View.asp ...Show All

  • SQL Server Propery expressions: Values not updated

    I see some strange behavior when running a package using the SQL Server Agent. The package I run calls a number of child packages, in which I use property expressions to set - among other things - the path to text files I read into a database. The property expressions are in the form: @[User::ThePath] + " \\TheFile.txt ". The variable ThePath is read from an XML configuration file at runtime from the "master" package and passed on to the child packages using a parent package variable configuration. My problem is this: When the package is executed by the SQL Server Agent, the properties for the path of the text files are not updated, and the package fails, as it cannot locate the files. When using DTExecUI to execu ...Show All

©2008 Software Development Network