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

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

AkoSam

Member List

Chardon
DirtBag123
Bud Pritchard
dfiorucci
dereck27
danclarke_2000
Bob Sculley
meena
Harshvardhan Kharche
Alexon
ferrarirosso
Michael_Giagnocavo
RKaplan
SmartDocParis
mgraul
PFerns
CPrecourt
thechristopher
Barry Crawford
Googhum
Only Title

AkoSam's Q&A profile

  • Windows Forms Windows Forms autotab

    In Windows Forms is there an autotab capability    It existed in MFC where when typing into an Edit control (textBox), once the max number of characters for the control was exceeded, the focus went to the next control and the characters were entered there.  I often see the feature while typing Microsoft serial numbers during software installations. ...Show All

  • .NET Development VS 2005 Release Candidate Installation

    I am attempting to install the release candidate of VS 2005 on a 64-bit machine.  The OS is Windows Server 2003 EE / SP1 and it's running an Itanium 2 processor.  During the installation prerequisite check, I got this error message: Computer does not meet minimum requirements, ect...           Required prerequisites:           IA64 blocker           This product is not supported on this processor The beta 2 version installed fine on this machine.  I did a clean uninstall of the beta.  Does this mean that VS 2005 is n ...Show All

  • Visual Studio Tools for Office Shared Add-In VS2005

    Hi! I have problems to get Shared Add-in done with VS2005 ("final" version) with Word 2003. I manage to make same test with old VS2003 shared add-in project type and it's working fine with Word 2000. Is there some issues why .Net 2.0 Shared Add-in won't work with Office 2003 Also what I actually trying to solve is that I need add-in or way to add new command bar to Word where users can use my .Net windows form program. On VS2003 it worked just as I though with Shared Add-in project. If I need to make this kind of 'add-in' for .Net 2.0 and Word 2003 should I install VSTO for this purpose or should shared COM Add-in method work I ...Show All

  • Visual C++ Strange number precision issue

    I don't know if this is the correct forum for this question but since I have no idea what would be the correct forum, I'll ask it here. Trying the following expression in code (managed or unmanaged), as well as in a quick watch window in VC++ 2005 gives the following results: (float)1/200 = 0.0049999999 (double)1/200 = 0.0050000000000000001 I have jumped from VC++ 6.0 straight to 2005, and I have never seen anything like that before. Talking about managed/unmanaged, I performed the same test (in the code, since the quick watch does not understand it) a CLI cast: float tmp = static_cast<float>(1)/200; Well, needless ...Show All

  • Visual Studio Tools for Office Please tell me where "using Microsoft.Office.Interop.Excel" is

       I have received the sample about Excel object but I don't find this library. I'm using version 1.0. Someone knows this please tell me. Thanks a lot ! You can download the Office 2003 Primary Interop Assemblies here: http://www.microsoft.com/downloads/details.aspx FamilyID=3C9A983A-AC14-4125-8BA0-D36D67E0F4AD&displaylang=en For Office XP: http://www.microsoft.com/downloads/details.aspx familyid=C41BD61E-3060-4F71-A6B4-01FEBA508E52&displaylang=en ...Show All

  • Visual Basic Getting infor from listbox1 into listbox2

    I need some help please. I'm trying to get some information from a listbox in a userComponent and insert it into a second listbox. Background: Public arrays with male and female names in the first column and either M or F in the second column, depending on the name in the first column. Automatically loaded into listbox at page load. Two radio buttons labeled Male and Female. The one checked will be determined by which name is selected in the listbox.  As a basic form this works OK. All of this is in a windows form.  I am trying to list all female names in the second listbox when a male name is selected in the ...Show All

  • .NET Development SSL on TCP Socket, how in .NET 1.1?

    Is there a way, using intrinsic .NET framework functionality, to open a TCP connection over an SSL channel   I'd rather not get into buying libraries, etc.  Java has the javax.net.ssl.* objects, and I'm not finding an equivalent in .NET. I looked all over the Internet, but nowhere a pointer/solution can be found. Please note this is a socket connection, not an HTTPS connection. Also, it's about .NET version 1.1. Any hints/tips/remarks/howto's (if even possible) would be greatly appreciated... Okay, that shines some light. The reason I was asking, is that I have to develop an EPP client, which ...Show All

  • Visual C++ Visual Studio.NET C++ 2005 Express, functions defined in cpp file cause "is not class or namespace" error

    Hello all,   I am not sure if this is the correct group for this question, but I couldn't find a more appropriate one.   I have Visual Studio.NET C++ 2005 Beta 2 installed and I was trying my hand at creating a simple Windows application. I have a main form that I used the desinger to create with splitContainer. The top container I want to swap out forms depending upon the user selection.   I create a class that  inherts from System::Windows::Forms:Form. I used the designer again to create the controls, but which are declared in the header file. The namespace is SDUDataLogger and the class is declared as the following ...Show All

  • Visual C# combobox is having big string

    i want to display the each items in comboBox on tooltip when we are trying to select Hi, Try with this.... ToolTip cboToolTip = new ToolTip(); private void comboBox1_SelectedIndexChanged( object sender, System.EventArgs e) { string txtTip = ""; int iDx = ( int )comboBox1.SelectedIndex; if (iDx >=0 && iDx < comboBox1.Items.Count) { txtTip = comboBox1.Items[iDx].ToString(); } cboToolTip.SetToolTip(comboBox1,txtTip); } thnkx, Pesani ...Show All

  • Visual Studio VSIP SDK : Some of the Context Menu items are missing

    I have created a tool through VSIP with the help of VSIP examples e.g. BscPkg, BscPrj, FigPkgs in .NET 2003 Now I am migrating my project to .NET 2005 using VSIP for 2005. I am successful in migrating it but some of the Context Menu items are missing.When I create a project through my tool, it is getting created successfully and all the basic functionalities are working. At Solution level the context Menu does not contain Build, Rebuild, Batch Build. After adding another project it does not contain Project Dependencies and Project Build order. However, If I add a projectcreated through BscPrj or a VC++ project then all the Menu Items are ...Show All

  • Visual C# How To Send a Mail Using CDO 1.21 with C#

    Hi I try to write a console application in c# whichs sends a mail using CDO 1.21  (I can't use a smtp server). I found a good description for j++ ( http://support.microsoft.com/kb/216723/en-us ), but don't know how to write the cdo parts in c#. I could logon to my profile, but I wasn't able to create or send a message. I would be very happy for a code example which shows how to send a mail using CDO in C# (just a simple console application would be great). Thanks for any help. Ralph The non-simple part of MAPI is also exposed as C functions and structures, so you should be able to wrap i ...Show All

  • Visual Studio Team System Can we ignore files from source control ?

    Hello All ! I'm now having a solution with several DLLs and a web site for which I generate the xml documentation file. By default, when I build all the xml fils are built in the bin folder and are added to the source control. Personnaly, I think that these files should not be in the source control and so I was manually doing an "Undo Pending Changes" on each of these files. Two questions : Is there a way to say to the source control to ignore all the ".xml" file in the bin fodler If these files are stored in the source control, for a reason I cannot explain there is then an error : MSB3021 when I try to build on ...Show All

  • Visual C# Problem with environment?

    I have problem on VS2005 IDE, I have format my windows because have some problem on it. I also place the my document in seperated drive. After I install windows and move original my document into the old one (already folder called "Visual Studio 2005"), after that I install again the VS2005. After finish I run the VS2005 but it didn't ask me which environment that I want to choose (for me its OK). Then I create new project and add a "Code Diagram" on it. When I put a class shape on diagram the class diagram details window show up (alway show I think). Then I move to properties window to put class summary, then the class d ...Show All

  • Visual Basic User Rights

    I am working on a program in VB.NET to read security settings from remote computers.  I have written this in VB and C#.NET, that is why I am looking for help in both forums.  Does anyone know of a good way to read the "User Rights Assignments" from a remote computer on the server.  I have read a lot of security settings on the remote computer through the registry.  But am having trouble reading the "User Rights Assignments" and "Audit Policies" from the registry because registryKey.GetValue() cannot read REG_NONE types.  So does anyone know how to read REG_NONE type registries, or know of a better way to read these s ...Show All

  • Visual Studio Express Editions update Access query in VB2005

    Hello, I have a database (Access 2003) with several tables. The tables all have a customer ID that is used to build relationships between the tables. I've build a query with all tables. When I add a new record (in the query) all Customer ID are automatically set to the same value. In VB2005 I have made a form and added all the columns in the query. When I run the appl. I can see the data. But saving a new record to the query (tables) d is not possible. What am I doing wrong When I use the columns from the tables in VB2005 in stead of the query I am able to edit an save records. But the Customer ID's in the related tables ...Show All

©2008 Software Development Network