Software Development Network Logo
  • Visual Studio
  • Visual C#
  • .NET Development
  • Microsoft ISV
  • Windows Live
  • Architecture
  • SQL Server
  • Visual Basic
  • Smart Device
  • VS Express Editions
  • Windows Vista
  • Game Technologies
  • Visual J#
  • Visual FoxPro
  • VS Team System

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

mike6669

Member List

Bil Simser
Mukul
David Trowbridge
cawilde
Yorch
NIDHIN
Rodger Reed
Tom Lake
Modoko
OU812
Jose Fco Bonnin
Michel Grootjans
nrv
Music
Nikolaj
morgan_
Spatulaman
Vi Truong
nole12
Lee Crabtree
Only Title

mike6669's Q&A profile

  • Software Development for Windows Vista Shell_NotifyIcon

    I was able to add Icon to the sytem tray. But if the i am running with administrator permissions or privileges i am not getting mouse click events (I'm assuming you're referring to notification icons and not the taskbar buttons.) Could you post some code I am seeing no problems with notification icons receiving mouse notifications. Remember that if you register as a V4 notification icon, the notification format is different. ...Show All

  • SQL Server SQL Server

    I would like to know how to upload files to my SQL Server With a hosted website the usual way I do it is to use FTP. Would this work for you Allan "Visual Basic Nov.@discussions.microsoft.com" wrote in message news:f9e6cc0c-b987-460b-a59e-e00f54cdd902@discussions.microsoft.com: > I would like to know how to upload files to my SQL Server ...Show All

  • Visual Studio Team System Problems when change the default port of "8080". how to config ?

    Hi. in my ex-post : http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=254699&SiteID=1&mode=1 I learn how to config with TFSReg. but now, when I really need to open my TFS to internet. I have some new issues. I now need to open the TFS Server with a non standard port (non 8080). I would like it to be "9000" for example. so I go to the IIS and change the web to use 9000 port instand of 8080. later I use the Team Explorer to open the team server. the reporting and WSS functions going fine, but not the Work Item and Source control. in the TFSReg post and sample. I only find a way to confi ...Show All

  • SQL Server error number 1612

    I'm doing a reinstall of SQL 2005 Standard Edition but I get this cryptic error message in the installation log file when it tries to install Integration Services or Notification Services. How do I resolve this I've spent countless hours un-installing and re-installing the product. I looked at the log file and the message says 'The installation source for this product is not available. Verify that the source exists and that you can access it.' It seems to be a problem with the Windows Installer. How do I fix this ...Show All

  • Windows Forms How create nested namespace?

    Hi people! I want create nested namespace: I want have namespace hirierchicals. Sample: using EnsambladoMain; using EnsambladoMain.Ventas; using EnsambladoMain.Compras; I can make it, with one project of Library Class You can have nested namespaces in a single project.  namespace EnsambladoMain {    public class MyClass1    { ....    }     namespace Ventas // a&n ...Show All

  • Windows Forms Groupbox help

    Hello, I have a windows form which has a groupbox control that contains several objects. I would like to create several instances of this object at runtime.  In the "Windows Form Designer generated code" we will stuff like... Friend WithEvents gbRangeTemplate As System.Windows.Forms.GroupBox Me.gbRangeTemplate = New System.Windows.Forms.GroupBox         Me.gbRangeTemplate.Controls. ...Show All

  • Software Development for Windows Vista how

    Please explain the steps of windows sdk installation and usage. I know that I have to burn it to a dvd, but that is as far ans I can get. -Ben Go to http://www.microsoft.com/downloads/details.aspx FamilyId=13F8E273-F5EA-4B7B-B022-97755838DB94&displaylang=en Either click to download the setup.exe and have it run installation, or download the ISO If you download the ISO, follow the Instructions, listed in the Instructions section, for mounting the ISO virtually Launch the ISO using the Virtual CD-ROM manager, and run install like normal. You may choose to burn the ISO to a DVD, but th ...Show All

  • .NET Development SqlConnection / SQLTransaction issue (.NET 2.0 BETA 2)

    Has the way SqlConnection and SqlTransaction works changed for BETA 2   I can't find anything but the following code no longer works and throws a "Connection Closed" exception when conn.BeginTransaction executes, even thou conn.Open() seems to work. Cheers Simon using (SqlConnection conn = new SqlConnection(dbConString)) {    conn.Open();     using (SqlTransaction trans = conn.BeginTransaction())    {        try       {          .         &nbs ...Show All

  • Windows Forms This error comes in win 2000 but not in Xp!!

    See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.NullReferenceException: Object reference not set to an instance of an object.    at System.Windows.Forms.Control.WaitForWaitHandle(WaitHandle waitHandle)    at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)    at System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)    at System.Windows.Forms.Control.Invoke(Delegate method)    at Microsoft.VisualBasic. ...Show All

  • Visual Studio Debug ASP page with .NET COM obj using VS2005??

    I have classical ASP pages using .NET object through COM interop. I used to be able to debug these .NET ojects by navigating to the page in IE, opening the solution of the objecst in VS2003, attaching to the process, and setting break points. I have now installed VS2005 and would like to accomplish the same thing, but the "dllhost" process of IIS does not show as running .NET/managed code anymore and I am not able to attach to it. I did find another couple of threads about problems with debugging classical ASP pages, but it wasn't clear if/how they applied to my situation. Is there any chance of getting this to work, or do ...Show All

  • .NET Development ELearning - OT?

    I cannot find an eLearning forum so I am hoping someone can point me to where I should post this type of item if it is not appropriate here. I downloaded a MS eLearning course (4336) and watched the "how to use" intro which shows the ability to click on "Community" - in the lower left - to get to community support. That does not exist when I am running the eLearning off-line player. I got to a point in the course where I tried to Launch a lab and I get a popup that says "The lab is not available" How do I make it available. Hi, You can instead contact the product support of Microsoft elearning. I can't seem to find the appropriate ...Show All

  • Visual Studio Tools for Office "PInvokeStackImbalance was detected" with C#.NET 2005 Excel Addin

    Hi, I have just created a C# Shared-Addin for Excel 2003 only with Visual Studio 2005 using the New Project Wizard from the VS File Menu. I have VSTO 2005 Runtime installed. As soon as the skeleton project is created and before I have added any code to the project at all, if I build and execute it within the IDE, Excel starts-up and I immediately get the following error: PInvokeStackImbalance was detected Message: A call to PInvoke function 'WRDomainSetup!WRDomainSetup.EverettPolicy::GetRequestedRuntimeInfo' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signatur ...Show All

  • SQL Server How to Implement Subscriptions/My Subscriptions Like Report Manager?

    How to Implement Subscriptions/My Subscriptions Like Report Manager Hello All, We are using SQL Server 2005 Reporting Services.   We are developing an ASP.NET 2.0 (C#) application to be used as an alternative for Report Manager.  We're now to the point of developing functionality to allow users to view, edit, and delete subscriptions.  Similar to Report Manager, we want to provide both the ability to see all the subscriptions created by a user (My Subscriptions), as well as all subscription per report (Subscriptions). In our custom application, how can we implement a listing of all subscriptions per report   And, h ...Show All

  • Visual Studio Tools for Office Best control to manage a table of data in a spreadsheet

    Hi I have a table of important data that resides on a spreadsheet. I want the user to access the data through an interface that uses dropdowns/comboboxes etc. Is the best way to do this in VSTO 2005, the DataGridView How would I bind my table of data to the chosen control. Thanks M Since you're using Excel, you might consider using the ListObject control - it's a great way to display data in a spreadsheet. One drawback would be screen real estate - if you are displaying lots of rows and/or lots of columns, it will fill up your spreadsheet pretty quickly, and a DataGridView would be a better choice. Binding a contro ...Show All

  • Visual Studio Express Editions VC++ 2005 Express: Cannot find the path specified

    Hi, I just downloaded VC++ 2005 Express yesterday, and I can't seem to get even the simplest "Hello World" console-application working. All the time I get the error in subject. Can anybody please guide me through a simple "Hello World" console-project, I would be very grateful. I am burning to start reading my C++ book If there are any simple console-application tutorials somewhere on Microsofts site, could you please give me a link to them. I have narrowed my problem down now, I have found out it works if I don't select "Empty Project" and make my own file. So, I guess I can do with the templa ...Show All

©2008 Software Development Network