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

Software Development Network >> Mike B.'s Q&A profile

Mike B.

Member List

Chrisql
polien
kaisatsu
paukp06
Daapower
kbiesbrock
Jon_DEV
Chen Hao
mark duran
tcp179
Neal D. Gupta
TivagVCH
Javier Canones
JayMo
KiwiDev
Llerd
Jon Bishop
Eckard Buchner
scrptman
vinay nahata
Only Title

Mike B.'s Q&A profile

  • Windows Forms Visual Interdev

    I am on windows XP. I installed visual interdev and have a problem opening new project. When I type the computer user name when prompted to select a server, the error msg is 'unble to contact server' What am I supposed to do please help  Please post this on the Microsoft Newsgroups. These forums are for Visual Studio 2005, SQL Server 2005 and .NET Framework 2.0 posts only. ...Show All

  • Visual Studio Express Editions Naming Conventions - Visual Basic 2005

    Hi All, I have been looking all over the internet for the correct naming conventions for Visual Basic Applications. I did get some and with VB2005 having new contolls there are allot that i cannot get. Here is a list of what i do have. Can anyone please help in supplying what i cannot get. Or correct the ones that I got wrong. Button cmd CheckBox chk CheckedListBox ComboBox cbo DateTimePicker dtp Label lbl LinkLabel ListBox lst ListView lvw MaskedTextBox MonthCalandar NotifyIcon NumericUpDown upd PictureBox pic ProgressBar prg RadioButton opt RichTextBox rtf TextBox tx ...Show All

  • SQL Server Error in SQL 2005 cluster installation

    I am trying to install SQL 2005 in a 2-node Windows 2003 cluster. I have tried both upgrade and fresh installation, but got same error. The error stops the installation while checking system configuration after installing prerequisites. The log file entry is as follows:  ******************************************* Setup Consistency Check Report for Machine: --SERVERNAME-- ******************************************* Article: WMI Service Requirement, Result: CheckPassed Article: MSXML Requirement, Result: CheckPassed Article: Operating System Minimum Level Requirement, Result: CheckPassed Article: Operating System Service P ...Show All

  • Visual Studio 2.0 deployment?

    It looks like gacutil.exe does not come with the redistributables. Sounds like Microsoft is encouraging me to build a deployment package I’m not familiar with deployment packages so where do I start Not sure what your question is. gacutil.exe comes with the Framework or Windows SDK. If you want to build a deployment package, you can use the setup project in visual studio 2005 ...Show All

  • Visual C++ How can I active VC without connect the internet at home ?

    could do I active in this case Thanks Uka Visual Studio 2005 Express Edition Beta 2 requires an Internet connection from the machine where you are using the product in order to activate. A high speed connection is not required; dial-up is sufficient. ...Show All

  • Visual C# Add "Help" button

    How can I add "Help" button to my forms Like the picture: http://img.majidonline.com/thumb/39010/Untitled-3.gif Where is the picture Where and how you want to have Help implemented ...Show All

  • Visual Studio Team System TF31004: Can't connect to TFS over a VPN?

    Everything is installed and working on the server. I even installed Team Explorer on the server and am able to connect successfully. I am having difficulty connecting to it over a VPN, though. Example of issue I'm seeing: My TFS WE server is named myTFS , in the mydomain domain on our corporate servers (it is not publicly visible). My workstation is myworkstation and located in the mydomain-dev domain at my office. I connect up to the mydomain domain via a VPN, where our internal Sharepoint is located, our Exchange server, etc. For example, after logging into my own workstation, I connect the VPN (Cisco ...Show All

  • Visual Studio Express Editions Toolbox: (1)How to bring in all the controls? (2) How to make it as thumbtack button

    Hi all, I just started my first VB Express Windows application. (1) My toolbox is empty. I clicked on the "View" menu =>Toolbox and I got the following: Toolbox |-| General There are no usable controls in this group. Drag an item onto this text to add it to the toolbox. Where are the controls How can I drag them onto the ToolBox (2) After the ToolBox is filled with the controls, I like to know how to make the ToolBox as Thumbta button on the left side or the bottom of the screen when I do not use it. Please help and advise. Thanks in advance, Scott Chang It is a bug. I hate it!! Known bug: https: ...Show All

  • Windows Forms Dynamically switching queries and databases

    I am using VS2005 and am able to bind a complex query to a DataGridView at design time. What I ultimately want to do is: (1) Select a named query from a drop-down box then reconfigure the DataGridView for the appropriate number of columns and repopulate with the new query. (2) Select a database from a drop-down box and refresh the DataGridView with data from the new database. (Assume I have created the appropriate DataSources.) I see where the query is stored in the _commandCollection of a TableAdapter (and in the xsd file) but I do not find public access to those. As far as the DB connection, I see references in Settings.Designer.c ...Show All

  • Windows Forms Click Event

    Can someone tell me what the code for opening a link is.   Like Process.Start(" www.microsoft.com ")  for Visual Basic .net.   Also could someone tell me where to put the code. I don't understand - if you mean a URL link, that is the code. Put the code where-ever you want to open a URL. I suspect you're asking something else, but it's not clear to me. Do you mean a link button It's like any button, you can add the code for a click event in the designer, it will put the right code where it needs to be. ...Show All

  • Visual Basic Finding length of structured data

    I am trying to convert a VB.6 program to VB .Net 2005. The program reads up fixed length records from a file and does stuff with them. The code to read the file and load up a combobox looks something like this (sorry about the double-spacing ... don't know how to avoid it): fPayees = FreeFile FileOpen(fPayees, gMasterPayeeDatabaseFile, OpenMode.Random, , , Len(PayeeData)) i = Len(HistoryItem) i = LOF(fPayees) j = Len(PayeeData) intTotPayeeRecs = LOF(fPayees) / Len(PayeeData) For j = 1 To intTotPayeeRecs ' Display all payees in payee database FileGet(fPayees, PayeeData, j) cboPayee.Items.Add( ...Show All

  • Smart Device Development Dialog Problem

    you know some howto for Visual Studio c++ for smartphone In particular like assigning to the variable Editbox a value generated from the click of a button A good MSDN sub tree to start with http://msdn.microsoft.com/library/default.asp url=/library/en-us/win_ce/html/pwc_ProgrammingtheSmartphone.asp I also found this interesting article on most of the MSDN articles on smart phone programing http://weblogs.asp.net/nleghari/articles/smartphone.aspx Srikanth Bogadapati (Microsoft) ...Show All

  • Windows Forms ListBox is really slow on adding about 64000 items

    so, this is a problem - adding about 64000 into ListBox takes about 2-3 seconds.. my code: David M. Kean - MSFT wrote: You might want to consider a different design that doesn't require a user to select from 64000 items. It's not usable. this list is some kind of dictionary index - filled with words.. with input box for quick searching - it is a common design as i think.. there are many programms with such design (different kinds of dictionaries) - and they are not so slow on startup :) may be they use some hacks to populate words' list .. ...Show All

  • Visual Studio 2008 (Pre-release) Request

    I need to find a working WPF Nov CTP 3D sample for a talk I am giving; and all of the ones I have found are from the PDC drop of WinFX and have conversion issues which I do not have the time to figure out right now.  If anyone can help thanks, blair Did you try these http://therhogue.com/WinFX/ Valentin ...Show All

  • .NET Development security for files in web folder

    Hi Everybody Am working in asp.net , i have some file in the web folder it should not download by giving the direct path , how can restrict , the web users from directly accessing my files for example the folder having files like this folder documents 1. doc1 2. doc2 it should not accessed or downloaded by giving direct path how can restrict or prevent thank you thank you ...Show All

©2008 Software Development Network