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

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

wiyosaya

Member List

ASharif
David Ghikas
derhackler
Dami#
glynnd
Michael ADDS
Gsss
borisov
Ajay Sudan MSFT
paulb-au
Luis Esteban Valencia Munoz
GarethJ
RichaV
Ramesh Jha
cliffeh
Jacob Christiansen
Quicksilver
Xinwei Hong -- MSFT
Kenshin1591
learn32.dll
Only Title

wiyosaya's Q&A profile

  • Visual Studio Express Editions Custom directory for installation

    Hi, I was creating a software and published it. When I start the setup it is looking for the pre-requisits and installs the software to a directory without any question. How can I specify the defult installation directory for the installer and how can I ask during install for directory change Thanks for your help in advance. Regards Endre I don't think this is possible on VBE. For more information, you may take a look at this discussion: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=239137&SiteID=1 ...Show All

  • Visual Studio Team System Every thing is "Added Later" in the report Unplanned Work

    When I look at the report Unplanned Work I see a graph only containing "Added Later" figures. How come every thing is Unplanned Work How does TFS keep track of what is planned and what isn't This report doesn't make any sense for me as it is right now. I'm using TFS Beta 3 Refresh with The MSF for Agile Software Development (build 98) and Visual Studio 2005 RTM. Thanks , Kristofer Hi Kristofer, I apologize for the delay in replying to your question.  Many of us were out on holiday. "Planned" means that this work item was created on or before the "Plan Completion Date" (th ...Show All

  • Windows Forms Multilevel Hierarchial Datagrids

    I am trying to get some help on creating a Multilevel Hierarchial Datagrid.  What I mean is that the Hierarchial level is unknown.  There could be many related records or none.  Also there could be multiple categories.  Hopefully the data below will give some idea. THE "*" ARE PLACE HOLDERS TO DISPLAY DATA PROPERLY IN THIS POST. Here is  ...Show All

  • Visual Basic database, data propagation

    I am bigginer in the Visual Basic. I use Microsoft Visual Basic 2005 Express Edition and Microsoft SQL Server 2005. I created a database and put it in the form. I ran the application, changed a value in the form, saved it with the save button on the top and left the application. I realised that the database was not change. The source is: Public Class Form1 Private Sub Table1BindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Me.Validate() Me.Table1BindingSource.EndEdit() Me.Table1TableAdapter.Update(Me.Database1DataSet.Table1) End Sub Private Sub Form1_Load(ByVal sender As Sys ...Show All

  • Smart Device Development Get Free space on Storage Card

    How can I get the free space on storage card in PC by ActiveSync The Remote API provided by ActiveSync doesn't seems have a API can get that, but the main storage and memory information can be retrieved by Remote API. And how can I get the path of the storage card The CeGetSpecialFolderPath doesn't support the storage card path. Thanks!!! Hi, You can write a module to find the free space in the storage card. For this use the FindFirstFlashCard and FindNextFLashCard API and find for the "Storage Card" and add all the files sizes under it to get the used space and use the GetDiskFreeSpaceEx to find the free disk ...Show All

  • .NET Development SSL/TLS exception when using HttpWebRequest with client certificate

    Hi, I wrote following code to call a aspx page in code (from another aspx page): HttpWebRequest httprq = ( HttpWebRequest ) HttpWebRequest .Create(uri); string certificateName = "SoapProxy2" ; X509Store store = new X509Store ( StoreName .My, StoreLocation .CurrentUser); store.Open( OpenFlags .ReadOnly); X509Certificate2Collection certificates = store.Certificates.Find( X509FindType .FindBySubjectName, certificateName, true ); X509Certificate certificate = certificates[0]; httprq.ClientCertificates.Add(certificate); httprq.Method = "POST" ; httprq.ContentType = "text/xml; charset= ...Show All

  • .NET Development SSLStream.AuthenticateAsClient not working without server certificate name

    Hi, I am trying to develope a TLS based server-client application. The client side sslstream has to be authenticated with AuthenticateAsClient with the server certificate name as input. My problem is that, from the client side, I don't know the name of the server certificate. I only know the hostname of the machine which is the server. In this scenario, how do I get the server certificate name to connect. Regards, Kuldeep. How about using ServicePointManager.RemoteCertificateValidationCallback to get a reference to an object that represents the remote certificate.  Then call the GetName() method on th ...Show All

  • Visual C++ Code that compiles in VS 6 doens't work in VS 2005

    I'm a little frusterated that the VS 8.0 C++ compiler seems to make so many things that worked with the 6.0 compiler cease to work. Many thanks in advanace from a C++ and VS novice! Anyways, I'm just trying to render html wtihin my app, and I'm using the rather cool (http://www.codeproject.com/com/cwebpage.asp) to host MSHTML... but simply trying to get the dll.c file to compile, I run into two errors... f:\visual studio 2005\projects\cwebpage(2)\dll\dll.c(83) : error C2011: 'IHTMLWindow3Vtbl' : 'struct' type redefinition e:\program files\microsoft visual studio 8\vc\platformsdk\include\mshtmlc.h(78746) : see declaration of 'IHTMLWindow ...Show All

  • .NET Development SqlConnection.Close(), why can't it be called from a Finalizer?

    I've just written a class to handle connections to a SQL database. I'm suprised to discover that I can't close the connection from within the Finalizer of the class (I get an InvalidOperation exception). Why is this Is it just because the SqlConnection object handles the closing of the connection from within its Finalizer or something like that Why do you want to call it from a finalizer Your connection to the DB should be as short as possible, and since you do not know when the finalizer is called, you are not able to keep your connection as short as possible. This is what MSDN says about cal ...Show All

  • Visual Studio Express Editions Progress bar

    Ok. how do you gte a progress bar to work beacuse i'm clueless. Well, which bit are you stuck with The most common reason that people ask this is because they are trying to show progress on an atomic operation ( that is, they call a method and expect a progress bar to move while that method runs, that won't happen ), or because they don't see anything on the progress bar, because their processor is taken up by the operation ( call Application.DoEvents() within your method to fix this ). If this doesn't answer your question, please provide some more detail and the code you've already written, and I'll be happy to help further. ...Show All

  • Windows Forms Databound ComboBox + Adding "Select" Item

    I have a combo box which is databound to a dataset coming from my database. When the control loads I want to the selected item to say "Select Item" so that the user is forced to pick something other than the first value returned from the database. On the web i usually data bind and then just insert an item into position 0 but t ...Show All

  • Windows Forms Command Line Args

    Hello, I have a windows App (written in C++, using .NET forms)  that i would like to use as a screensaver, everything is fine with it except that i cannot figure out how to get the command line arguments into my program. (a windows screensaver gets a '/s' to tell it that it is in screensaver mode) If you could help me i would be ext ...Show All

  • Smart Device Development winforms inheritance

    hi, I have read about possibility of inheriting winforms with the compactframework 2.0, but I have tried it and I have not found the way of doing it. Is it possible Thanks Antonio de Rojas What have you tried 1. Create a new SDP 2. To the default form1 add a button 3. Add a new form (form2) 4. Delete the mainmenu from form2 5. Go to the code and change Form2 so it does not inherit from Form and instead inherits from Form1 6. Rebuild the solution 7. Open form2 in the designer and observe how it shows button1 The above was successful for me (in C#) but I have not done any further experiments. If you hav ...Show All

  • Visual C# socket exception

    ok made a very very good class server it can handle to 3879 clients but when it reach 3880 it throwes an exception like that says that it cant perform operation on a system socket because the socket`s quenque is full hi, you can ask this question in .net networking forum http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=40&SiteID=1 ...Show All

  • Visual C++ link.exe switch for import lib

    I am currently using #pragma comment(lib, "C:\\lib\\target.lib") to link to an import lib. Is there a link.exe switch I can use instead I want to remove the #pragma from the .cpp source. Thanks, Skip skip@skip-coombe.com Yes. The in the project settings use the field "Additional Dependencies" in the "Input" section under the linker options. But I like this #pragma. I never use absolute pathes, but this trick allows my source to say what libraries it needs. I use this very often when special WinAPI libs are used (version.lib etc.). ...Show All

©2008 Software Development Network