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

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

Banhnam

Member List

Tom B
Ngwane
Ariadne22
ravindra_pn
TheViewMaster
hhewson
kineticAnimation
gala123
Giancarlo T.
NuclearChicken
carlop
zx5000
SOAC
Jon Stroh
Kea
Evgeny Popov
NozFx
Roxanne163
kingmissel
mugile
Only Title

Banhnam's Q&A profile

  • Windows Forms Changing the UI at runtime

    I want to be able to change the GUI depending on what the user has selected. (There is four buttons each providing specific functionality about what can be done to the screen) At the moment i am setting the positions and hides all manually, changing the anchors all manually. Is there a way to do this with the designer Maybe something like putting all the GUI on a form like thing then i can load that into my main form ...Show All

  • Windows Forms Updating a databinding

    Hello. I have a ComboBox binding a DataTable, when i changes the values in the DataTable ... i don't see the changes in the ComboBox. Why Too, i have several ComboBox binding with a BindingSource, and it binding to a DataTable, and when i changes(add or modify) values in the DataTable ... i don't see the changes in the visual components. Why :( Regards. Hi! I dont' save the data in a database, only in the datasource. I haven't the code here, on Monday i will paste it here. I remember that it's something like: BindingSource BS = new BindingSource(); DataTable DT = new DataTable(); DataSet DS = new DataSet(); DataAdapter DA = new DataAdapter( "select name_field name, id_field id from mytable",MiSQLConnection ...Show All

  • Visual C# Byte Array size.

    I'm sending a video frame from a server to a client. Now I know what size Byte array I should declare on the server side in which I'll store the picture and send it, however, I dont know what size array I should declare on the client side. Is there any way of finding out exactly how much data is coming in before i declare the array in which data will be stored It proving impossible to display that picture. One more thing, should i worry about the picture/frame header Still not working. What if i insert an end of file string in the last few bytes of the picture array on the server side and upon receiving the data, check for that particular string and THEN display the image Will it work By the way, how shoul ...Show All

  • Visual Studio Visual Studio 2005 crashes when trying to attach a process (Excel)

    My visual studio crashes when I attach to a process (i.e. Excel) so I cannot debug. Would anyone have any advice on what I can do/I am doing wrong please I have installed all the latest hotfixes for Visual studio 2005. Thanks Can you attach to any processes Which debuggers do you have enabled when you attach - managed/native/SQL How far does VS get when attaching (is it loading symbols or is it an instant crash) John ...Show All

  • Windows Forms how to know that a user control is in design mode

    I have a user control which normally displays a large amount of data from an application. This is similar to an excel chart. When I drop this control onto a form, I want to put some dummy data in, so that properties can be previewed. I can't see how (within the control code) to determine that the control is in design mode. How can this be determined Trev Use the DesignMode property on the control (it's actually defined on Component, which Control inherits from). Sometimes that isn't always accurate, so it's sometimes a good idea to use it together with a check against System.ComponentModel.LicenseManager.UsageMode == System.ComponentModel.LicenseUsageMode.Designtime. ...Show All

  • Visual Studio Team System Some images are not displaying in playback

    Hi Our AUT was developed in .NET 2.0 ,and used java script , some gif images in the application, While doing web testing , some images are not recognized by the tool ( .gif images and some java script pages are not loading while doing playback ) and in Request it is dispalying as failed (for example " http://sridhar/sriQA20060703/plus.gif " and http://sridhar/sriQA20060703/ plus.gif as failed request in a url ) please help me , how we can we(VSTS) can recognise all objects in application. thanks sridhar Hi Yes i am getting the gif when i placed the url in browser, Web browser in VSTS was not displaying the gif images ( Actualy i want to calculate the time taken by application for loading on I ...Show All

  • Visual Studio Express Editions how can I just load form1 without show him from other form(form2)?

    Hi, I have an application that take 6 second to load and then to appear on the screen (in the 6 second you can see the form but he look like stuck and after 6 second it is working properly). I want to do a progress bar while the application is loading. So I thought maybe to make another form(form2) with a progress bar and to load the first form (form1) while the progress bar fill in ( in form2). but I didn't find how can I just load form1 without show him I be glad to hear other ideas if you have Best Regards, Yaniv doesn't work... I have form1 the main program ( that take a while untill it show) and form2 with the progress bar. Private Sub Form1_Loa ...Show All

  • Software Development for Windows Vista longhorn beta 1 product key

    Can someone please possibly supply me with a product key for longhorn and vista. Many thanks, http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=87721&SiteID=1 Longhorn is the codename for Vista. Please, these forums are not for technical support or requests for product keys, there have been many many topics about such matters in recent weeks, which have resulted in locking/deleting the topic as it is off topic for this forum. ...Show All

  • SQL Server How to pass values to multi value parameter

    Hi, I am trying to pass a url which can run my multi value parameter report. I have done similar thing for single value parameter and it worked but I don't know how should I pass more than 1 value to my parameter. Please help!!! -Rohit Have a look at this ariticle this should solve you problems http://www.codeproject.com/sqlrs/SQLRSViewer.asp ...Show All

  • Windows Forms contextMenu associated window shown in taskbar

    I have a NotifyIcon in my app also a ContextMenuStrip when I click with the rigth button on the NotifyIcon everything works perfect. I also want to show the context menu usign the left button so I wrote this simple code private void notifyIconDailyMe_Click(object sender, EventArgs e) { contextMenuStripMain.Show(10000, 10000); } and it shows the contextmenu.. the problem is that a windows appears in the TaskBar that windows has no icon so it tell me this window represents the context menu.This behavior is not elegant at all. I want to show my Contextmenu and that's it. How can I hide this window from the taskbar thanks I know that is the easy way but I want to go beyond. As I wrote "I also want ...Show All

  • Visual Basic Refreshing the News Channel in the VS2005 Start Page

    I have the option for the start page news channel still set to it's default ( http://go.microsoft.com/fwlink/ linkid=45331&clcid=409 ). I noticed that the dates of the articles were way out of date, so I changed the option (Tools | Options | Environment | Startup) for "Download content every" to a different number. Once I clicked OK, the Start page refreshed with the updated article list. I have noticed that this is the same situation on three different machines with VS2005 installed. That is, to get the latest articles, I need to manually adjust the "Download content every:" setting and then click OK. Shouldn't the articles list automatically refresh every time that VS2005 is restarted It seems silly that I ...Show All

  • Visual Studio Team System Installation of TFS SP1 fails with several errors in log file

    This is the environment: English (LCID 1033) Windows Server 2003 Standard Edition Language settings: French (France) which is LCID 1036 The installation SP1 starts fine but during the installation after accepting the EULA the setup wizard suddenly disappears without showing any error except for an entry in the application event log: Event Type: Error Event Source: MsiInstaller Event Category: None Event ID: 1023 Date:  7/02/2007 Time:  14:13:27 User:  <removed> Computer: <removed> Description: Product: Microsoft Visual Studio 2005 Team Foundation Server - ENU - Update 'Microsoft Visual Studio 2005 Team Foundation Server (databases) - ENU Service Pac ...Show All

  • .NET Development Using database relationships in VB.net

    Hi there, I'm trying to create a multi-table relational database with a VB front end, but am trying to avoid using the bound text boxes that VB auto generates when you connect to the data source (a ms access database). Can anyone give me a starting point on how to use relationships with datasets I'm a bit of a noobie when it comes to data storage =[ any help appreciated =] thanks! When you create a dataset in .NET you are able to use Relations collection. So you can add relations you want using Add methods (there are number of). For instance: ds.Relations.Add( "orderToOrderDetails" , orderTable_Id, orderDetailsTable_OrderId) Then when you work with a row and you have to get a list of related rows you can do: ...Show All

  • Visual Studio Tools for Office Outlook Contact Integration.

      I am working on a application that will need to view contacts from Outlook. The user would like to be able to create and delete contact from the custom application so that they don't have to switch back from app to app. I am not familiar with the Outlook API and I don't know if VSTO is required to do this.   Thanks for your help Hi, Since you're working on an application that only needs to view contacts from Outlook you can simply use Outlook automation to get the contacts. For example on how to automate Outlook, I suggest you take a look at OutlookCode.com site . With VSTO you can create an Outlook addin. ...Show All

  • Smart Device Development how to program the pocket pc to become a walkie talkie??

    to be a walkie talkie that communicate amoung the internal network does rtc api support wm5 any other way to program more easilier Thank you so much http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=664329&SiteID=1 ...Show All

©2008 Software Development Network