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

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

mihooper1

Member List

Majid.vagheeian
robinjam
Vadimus
tj-uk
Shady9399
Denis Pitcher
frankjespo
msnashok
Binny
soanfu
Keith Newton
OniShiro
Helio Gama Faria Filho
Reid Westburg
top117
DrunkPanda
wiscon
i.eat.idiots.06
NMM
worldhello
Only Title

mihooper1's Q&A profile

  • Visual Studio Tools for Office RibbonX - gallery like the styles one?

    Hi, maybe I'm blind a little bit, but how can I make the gallery like Styles in Word 2007 - that is, having the items on the Ribbon rather in drop-down menu Thanks, Jan Hi Jan It's ok to ask in both places, as long as you let everyone know you've done so, then report back with the answer, as you've so kindly done ...Show All

  • Visual Basic Listing SQL Server Database in a list box VB 2005

    Hi everyone, I am wondering if anyone can give me a hand with this... I know that in VB 6.0 and even VB .NET 2003 one was able to display SQL Servers and Databases using DMO... but I don't think this now applies to VB 2005.. I am capable of displaying available SQL Servers using SQLDATASOURCEENUMERATOR.. however when I cannot find a data type or namespace that will enable me to display an SQL Server's Databases in a list box... anyone can give me a hand .. In advance thank you all. if the above is correct then there are a couple of ways of doing this. either: execute a SQL command, and use a SqlDataReader to read back the names of the databases use the Microsoft.SqlServer namespaces to ob ...Show All

  • Visual Studio Express Editions form deactivates when using messagebox why? & how to work around this?

    Hello, I am new to VB Express and programming. I am making a single form application and I am using the form deactivate event to signal when a user switches to another application. The trouble I am having is that when control is passed to a messagebox from within my application, the form deactivate event is triggered. Is there another event that I can use that won't trigger when a messagebox is activated but will trigger if my application loses focus or is there a way to to use the "if then" to bypass the code in the "private sub form deactivate" if control is only passing to a message box e.g. if messagebox(has focus) then dont do anything thank for any help. ...Show All

  • .NET Development Exception: DataTable internal index is corrupted: '5'. on ...

    Hi, I have a problem with bindingsource component in framework 2.0. I have a combobox bound to a bindingsource which is also bound to a dataset with 2 related tables and a datagridview bound to the same bindingsource. What I want to do is : When the selectedindex property of my combobox changes, the corresponding cell value must be changed in the datagridview. But although the value in bindingsource changes, datagridview does not display the new value. That value is displayed after I move the mouse over that cell and make it invalidate its region manually. Another error I caught is the one that you can see as the subject of my post. I do not know why i have that message when I try to change the property of ((DataRowView)mybindi ...Show All

  • Visual Studio Package Load Failure

    I am developing a custom source control provider(like VSS).Its VS Integration package. I have added some menus and other stuff in that.I have tested the application in my machine in experimental hive.Its working fine.Now I need to install it in a seperate machine.I created a setup package for that.I have generated the registry entries using RegPkg exe in the SDK.I have imported those entries in the setup file.I have a Package Load Key which i have used using [MsVsShell. ProvideLoadKey ( "Professional" , "1.0" , "Package Name" , "Company name" , 300)] I have added the PLK in Resources.resx with the ID as 300.When i installed the setup package, I get to select the package in the Tools-->Op ...Show All

  • Visual Studio Express Editions TreeView: unselect item when clicking outside of tree

    Hi folks, this one eludes me... I have a treeview, with several nodes. If I click OUTSIDE the tree, I want the current selected node to be deselected, like Treeview.SelectedNode = Nothing. But I cannot find the event to trigger this... if I click in the white space, the currently selected node remains selected..... Any suggestions Thymen Hi ReneeC; I came up with this: Private Sub TreeView_MouseDown( ByVal sender As Object , ByVal e As System.Windows.Forms.MouseEventArgs) _ Handles TreeView.MouseDown TreeView.SelectedNode = TreeView.GetNodeAt(TreeView.PointToClient(Control.MousePosition)) End Sub Guess your way is more efficient... Thymen ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. HD quality with composite?

    i don't know where to ask these question, so i will ask here: i have a 20" widescreen from dell with s-video and composite connectors. i also have the hd cable for the xbox 360 but it isn't possible to connect to the screen with composite and a resolution higher then 460p. do anybody knows how to connect the xbox with composite connector and to use hd dell says that the monitor supports high definition content...   or maybe there is an adapter for RGB components to DVI 1360x768 qualifies as High Definition. Essentially, any standardized resolution above 480p is considered High Definition. (480p is usually referred to as Enhanced Definition, 480i is Standard Definition) 720p and up is gene ...Show All

  • Visual Basic VB 2003 & .Net 1.1 - Data Write/Read Issue

    Hi, Working upon an embedded application and have conclusively found the following issue. I have an application that was written before in VB6 that has been upgraded successfully to VB.Net 2003. All issues resolved except the following. Previously, we used the Win32 API to make data writes to a logical disk upon the PC. With the current code, we have upgraded to use the FileStream .Net approach to make all data writes and reads. For interest sake, this is an embedded application that keeps some data in a specific logical drive. The issue is as follows, when I power off the PC and power on, the data is being trashed upon the logical drive where it is being written. I am almost certain that the VB.Net approach we have imple ...Show All

  • SQL Server How to cosolidate databases of SQL Express from multiple installations?

    1. install a SQL Express instance such as myexpress; 2. create some databases with tables such as db1 and db2; 3. Reinstall SQL Express with the same instance name "myexpress". I assume we need reinstall SQL Express myexpress again becuase of bad operations. 4. Open the myexpress by management tool but I can not see db1 and db2 databases but the datafiles and logfiles are in the data directory. The question is what I need to do so I can consolidate exited databases so they can be seen in "myexpress" instance by management tool hi, WhyHere wrote: 1. install a SQL Express instance such as myexpress; 2. create some databases with tables such as db1 and db ...Show All

  • SQL Server [DBNETLIB][ConnectionClient(SEDC.ClientHandshake().]SSL Server error

    For some reason, I'm no longer able to connect to any database on SQL Server. If I click on the + sign before a Data Connection in Visual Studio Server Explorer, a Logon dialog opens. Whatever I enter in the dialog results in the following error message: Connection failed. Sql State: '0 80001' Sql Server Error: 18 [DBNETLIB][ConnectionClient(SEDC.ClientHandshake().] SSL Server error Help please. What version of SQL Server are you using Have you tried connecting through some other method, such as using sqlcmd/osql or Management Studio/Query Analyzer What errors appear in the server errorlog Thanks Laurentiu ...Show All

  • .NET Development problem with networkstream connection

    So i have a problem, and can't find eny solution for it. Let's say i want to write client-server program, where client can send data over network using networkstream. I found basicaly example: http://www.c-sharpcorner.com/Network/SocketProgDTRP.asp it work's very fine on my computer (when i run both, client and server) on my machine, but client can't connect if i try to do this on the network.... i run server app on other computer (server) ant tcplistener is waiting for any connections on port 10, after this i launch client app on my computer (with changed "localhost" to server host name ) ant client after about ten seconds returns error: "System.Net.Sockets.SocketException: A connection attempt failed because the connect ...Show All

  • Visual C++ Smartbridge Alerts

    I too am receiving the "entry point not found" message. I have very little technical knowledge and would appreciate assistance in any fashion. thanks. Helen McLaughlin Are you using Internet Explorer 7 Beta 2 This is an issue that is workaroundable--see the above link. Thanks, Brian ...Show All

  • Windows Forms Howto bind a comboBox to a comboBox ?

    I am submitting to th DB: SELECT DISTINCT ScenarioDateTime, UA FROM PageItem I need one combo to display "ScenarioDateTime", I need the other one to be bounded to him displaying "UA" thanks lio99999 wrote: I am submitting to th DB: SELECT DISTINCT ScenarioDateTime, UA FROM PageItem I need one combo to display "ScenarioDateTime", I need the other one to be bounded to him displaying "UA" thanks this should work. In this example, connecting to SQL. Import the System.Data.SqlClient namespace to access the Sql classes otherwise if OleDb, import the System.Data.OleDb namespace and change the Sql classes to Ol ...Show All

  • SQL Server SQLExpress Services not showing in configuration manager

    Hello strange problem needs help... When I open SQL server configuration manager / expand  SQL server 2005 network configuration , I have a Protocols for SQLEXPRESS but under SQL server 2005 services branch, I cannot find a reference to my SQLEXPRESS database service. This causes a problem because, I cannot enable or disable SQLExpress. I've tried to remove the SQLExpress instance by going to Add/Remove Programs but it doesn't work.  After I restart the computer, the entry SQLEXPRESS: database service is still there. I cannot reinstall SQLEXPRESS either because it saids instance name already exist.   When I try 'net start mssql$sqlexpress' it saids "the service name is invalid" When I try 'sqlcmd -S &l ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Custom model format?

    ok I'm very new to XNA and C# but have programming/game development knowlegde (mainly using DarkBASIC pro and BlitZBasic) but I now want to use real (I use that work losely) game development tools. my question is this, is it better to create my own custom model format, one that contains data on vertex positions, texture, normals and light properties and create some kind of model loader which converts it to the data XNA needs to display the model if so what is the best way to write a custom model loader, i'm not worried about storing animation at this time though, I've read through the documentation and came across processors, importers etc but have no idea where to start, does anyone have any suggestions and/or source code that a ...Show All

©2008 Software Development Network