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

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

DanO84

Member List

khaladu
the fariborz
rchokler
Oscarcha
Mike Howes
stombiztalker
jmsigler2
Vasile
Michael Barrett
Jesper25539
Igor Grozman
BobH2
tampa_dba
Electuur
1hhChip
Benedikt
Flame Sword8
gshaf
xshua
rachakunta
Only Title

DanO84's Q&A profile

  • Windows Forms Drawing on top of WebBrowser Control

    I need to draw some lines and polygons on top of a webbrowser control that is displaying a page with some graphics of its own. I have seen several examples trying to do this but none of them seem to work. The best I see is the idea of drawing a transparent control on top of the WebBrowser and then drawing on it. I tried that but, after much work in creating the transparent control, the WebBrowser paints over it whenever the image of the page in it gets updated. Help on this would be appreciated. It appears that the WebBrowser control does not use standard .NET painting, or any messaging for that matter, but uses Win32 APIs for its functionality. This makes doing anything custom with it very difficult. My best suggestion ...Show All

  • Software Development for Windows Vista error in standard user analyzer

    1.) i am getting an error in SUA tool while launching an application "object created in a restricted namespace" what does it mean and what can be done to remove this error regards, divya Hello divya mittal, For more information on object namespaces please see the following MSDN article: https://msdn.microsoft.com/library/default.asp url=/library/en-us/dllproc/base/object_namespaces.asp . Is your application creating/using COM objects It looks like you are creating an object within the context of another object that has restricted access. Thanks! Matthew Braun ...Show All

  • SQL Server Is there a way to add a Database Property?

    I got to thinking how nice it would be if there was a way to add a new Database Property that was just a simple text field with a 'friendly' description of the database. Is there any way to add this Hi Sandy, Yes, you certainly can.  Have a look for "Extended properties" in BOL.  Otherwise, you can add extended properties via SSMS under database properties.  Extended properties can also be bound to individual columns or tables. So, to add a property to YourDatabase you would: USE YourDatabase GO EXEC sp_addextendedproperty @name = 'DBDescription', @value = 'DescriptionHere' Cheers, Rob ...Show All

  • Visual Studio Team System File Explorer in VS2005 incredibly slow

    When I try to navigate down the directory structure using the file/open drop down in VS2005, it takes about 30 seconds to navigate down each level of the directory structure. If the level I want is 6 levels down it wastes 3 minutes getting there. I'll assume you mean the Source Code Explorer as opposed to the "File Explorer". Is this performance issue only happening on one Team Explorer client Do you have the rights to try to reproduce this issue on the TFS server itself This would eliminate network and/or client side issues. ...Show All

  • SQL Server Missing Integration Service Template - fixed now

    I have installed SQL Server 180 day evaluation as well as SQL Server Express but I cannot add a new SSIS project because the template is not there (- in the non-express instance - only Reporting Services). When I try and redo the SSIS part of setup(Add/Remove programs) the report tells me that it is already installed correctly. I have searched for others having this problem to no avail... What do I need to do to fix it This may be a silly question but just wanted to make sure. Did you check the bottom option in the installation wizard for Workstation components and documentation Also, when you look at the services, do you see the SSIS service installed -- Brian Knight ...Show All

  • Visual C# Stored prcedyre help nr. 3

    I am making an winapp in C# and have SQL Express database that I want to get posts from. User can type in the search criteria so I made an Stored procedure. look here: ALTER PROCEDURE dbo.finnKunde @fornavn varchar AS SELECT KundeID, Fornavn, Etternavn, Adresse, Postnummer, Poststed, Telefon, Epost FROM Kunde WHERE (Fornavn LIKE '%' + @fornavn + '%' ) OR (Etternavn LIKE '%' + @fornavn + '%' ) OR (Epost LIKE '%' + @fornavn + '%' ) 1.) first problem is that when I run this sql in Sql buider it works fine, it returns correct values, but when I run this stores procedure it returns all posts from my table...any suggestions. Yes. But ...Show All

  • Visual Studio Team System Visio Hotfix/bugs

    Are their any hotfixes patches for Visio 2005 for EA (AKA 11.6613.8107 SP2). I had some hotfixes for Visio 03 for EA that fixed the bug where if you have a unique index everytime you Database:Model:Refresh, the Unique Indexes get duplicated in the model (U1, U2, U3 .....). I think this one was: kb 321145. I am not sure though if this was the kb or if it works for 05. Also in 05 it doesn't flip the bold attribute for null columns anymore (bug). I thought this was: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=128195&SiteID=1 KB 921209; but it didn't fix it.  Oops it does fix it, after you Database:Model:Refresh. Anyway, the model is creating duplicate unique indexes. Can I get the KB/hotfix articles for these ...Show All

  • Smart Device Development InvalidProgramException after converting from VS 2003 to VS 2005

    Hi, I convert the application which was developed by using netcf V 1.0 to netcf V 2.0. I am facing the exception InvalidProgramException in InitializeComponent() while i assign image to picturebox. For example in get exception in the place Me .PictureBox1.Image = CType (resources.GetObject( "PictureBox1.Image" ), System.Drawing.Image). So if anybody faced this problem kindly help me how to solve. Thanks. How did you convert the application Did you create a new project and add the original source files Or did you load the VS2003 project in VS2005 Or some other method I suspect that either the image is not embedded in the new executable or the path to the re ...Show All

  • SQL Server SQL Server Mobile subscription problem

    Hi, i have created publication on server.and when i try to create sql server mobile subscription on my machine, i get following error: TITLE: Microsoft SQL Server Management Studio ------------------------------ A request to send data to the computer running IIS has failed. For more information, see HRESULT. HRESULT 0x80072EE2 (28037) ------------------------------ BUTTONS: OK ------------------------------ my machine and server are on different. i am able to get "SQL Server Mobile Server Agent 3.0" message when i run  / sqlcesa30.dll" href="http:// / sqlcesa30.dll">http://<server_name>/<virtual_dir>sqlcesa30.dll through Internet explorer what should i do now.please help me   ...Show All

  • .NET Development querying datasets

    hi everbody, How to select specfic columns from a datatable in Dataset I want to select specific columns not all in datatable ,please help. Waiting for reply. Thanks Vrushali Hi, I am not clear what you want to do exactly saying "select column"... Do you mean to access specific column from DataTable If so then, DataTable has DataColumnCollection exposed as "Columns" property and you can access perticular column by index or giving column name, So e.g., you can get specific column by: dataTable1.Columns[0]   this will give you first column from table as DataColumn class. dataTable1.Columns["CustomerID"] for example, this will give you CustomerID column from data table. ...Show All

  • Smart Device Development control panel icon

    Hello, all I wrote a control panel applets to config my application in pocket pc. The applets works fine, but I have to restart the OS to show my applet icon in the Settings/System tab. I am wondering is there a way to let the applet icon show in the Settings/System tab without restarting the OS Thanks a lot. Hi , This forum is primarily monitored by Visual Studio for devices group. Please check this link for more appropriate forums for this type of queries. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=286724&SiteID=1 Thanks Srikanth Bogadapati ...Show All

  • Visual Basic A question about the CheckedListBox.CheckedItemCollection

    Hi, I would appreciate it if somebody could give me some insight to my question. What is the best (safest) way of saving a CheckedListBox.CheckedItemCollection outside of the created (and used) CheckListBox, such that, if the user clicks numerous Checkboxes and then clicks a "Cancel" button... the CheckedListBox.CheckedItemCollection will be repopulated with the checks that existed before the user made changes Also, please let me know if I have the wrong idea about how to go about finding a solution to this problem. Thank you! Hi, Thanks for your solution. Are there any classes that I can use instead of the Systems.Collection.Generic.List class supported in .NET Framework 1.1 I am developing on ...Show All

  • .NET Development sheets.add

    Microsoft.Office.Interop.Excel .Sheets.add method object Add( [In, Optional] object Before, [In, Optional] object After, [In, Optional] object Count, [In, Optional] object Type ); If Before and After are both omitted, the new sheet is inserted before the active sheet. I want to add new sheet to the end of the sheets, so that it won't change its position in additional adding.I used: // oWB is workbook i = oWB.Sheets.Count; oWB.Sheets.Add(i+1,i , 1, Excel.XlSheetType.xlWorksheet); // oWB is initialized and working cause //oWB.Sheets.Add(missing,missing,missing,Excel.XlSheetType.xlWorksheet); works fine but //adds new sheet at the beggining and want at the end Could someone show me an example or show how should I use this method ...Show All

  • Windows Forms VB2005 Check for changes in dataset

    Hello, When I close my form I want to check for changes in the dataset. If there are changes I want a msgbox to appear wich asks for the changed data to be saved. Could you please mark this question as answered by the HsChanges reply. Cheers Jeff P.S. If you have problems with the Dataset not showing as updated, place an invisible label on your form and set focus to it when the form is being closed. ...Show All

  • Visual Studio Express Editions Com port received data HELP

    Hi...I am a noob...first and foremost. I am doing a school project in which I am using motors that run on RS232. My com2.writeline code works fine, however I am stuck on reading back on the port. Here is what I want to do: When the motor runs, it sets a bit saying it is in motion (RBo). I want to poll that bit until the motor turns off. I can do this by looking at the specific bit as a 1 or a 0. Or, I can look at the status Byte and go from there. I am completely new to doing this, and I would really appreciate any com port samples/examples that implement this, or a good code critique...again I am a noob. :) Here is my code so far: com2.WriteLine(Chr(130) + "WAKE " ) com2.WriteLine( "A=" + Acceleration2.Te ...Show All

©2008 Software Development Network