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

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

fast_

Member List

zohar_amir
Raghu1234
Dan Ciruli
Lahuja
SDK1985
RS_Trans
Ambrose
David Rodriguez
ZaeSr
Mahla
Roberto Icardi
cedubose
Thomas Scheidegger
Tiaan
Michelle Alexander - MS
Pedro Martins
soesterling
Panzergruppe
heff89
Anujpathania
Only Title

fast_'s Q&A profile

  • Windows Forms problem about TreeView.SelectedImageIndex property

    hello, I have problem. The TreeView, I can't make it work! the TreeView.SelectedImageIndex property, why is it there I don't need or want the image that belongs to the selected treenode to be changed. I just want it to keep in it's original state. But whenever a node is selected, it's image changes, and I can't find out a great deal  I can do about that! I tried to draw the treeview myself, but it was irritatingly not simple enough. Can anyone give me any solution ImageList_AddIcon(hImg1 , LoadIcon(hInst , MAKEINTRESOURCE(IDI_CLDFLD))); ImageList_AddIcon(hImg1 , LoadIcon(hInst , MAKEI ...Show All

  • Smart Device Development How can I place TOOLBAR on top?

    I try to place TOOLBAR on top or right with .netcf, but I can not do that . thank your help! You can create your owner-drawn custom control, deriving from Control and drawing the buttons and text the way you like. Check out my article on MSDN on creating owner drawn controls: http://msdn.microsoft.com/library/default.asp ...Show All

  • Visual Basic "button" as a link to email

    hi,  Ok, I want a button to be functioned to send information from a program that I have created to an email address. I am wanting to push "submit" and have the information I have put it, be sent to my email. How can I do that I am working with Beta 2 version of Microsoft Visual Studio 2005 "Express Edition", can anyone help I hope you are success in this matter. I have been using SMTP recently and had some expeperience too. You need to find out the AOL's host name for the first step. Here is a FAQ (unofficial) http://members.aol.com/adamkb/aol/mailfaq/imap/ The AOL IMAP and SMTP server addresses (for USA) are: imap.aol.com ...Show All

  • Visual C++ LNK2019: unresolved external symbol error when i compile my win32 app

    I am kinda new at this c++, and i am try to to make a Open GL application that when run will make a cube and rotate it on the screen. When i compile my project I get the about 21 different "LNK2019: unresolved external symbol errors". maybe some one can help me figure this out. If you need the project files I can send it too you. I am using visual studio C++ .net 2003. I also tried this code in visual 2005 and received the same thing. the error i received are as follows: Error Messages: OpenGLCube.obj : error LNK2019: unresolved external symbol _gluPerspective@32 referenced in function "void __cdecl ReSizeGLScene(int,int)" ( ReSizeG ...Show All

  • Visual Studio 2008 (Pre-release) ANN: Aurora is now compatible with the February CTP

    Aurora 8.3 is now available for download http://www.mobiform.com/eng/aurora.html New in Aurora 8.3: Animation is now available. It currently has functionality for basic shapes, controls, and Clip Art. Paths, 3D and the ability to rotate elements will be available in future versions. Animation will not be serialized out with this version due to a required change to how Aurora serializes the code out with the February WinFX CTP release. To learn how to use animation in Aurora, please refer to ‘Animation’ in the Aurora ‘Tools & Features’ section of the help menu. With Animation fresh out of the box, please le ...Show All

  • Software Development for Windows Vista Beta2: String-Properties in Custom Activities; Custom themes

    Hi, in Beta 1 it was possible to define 'free text'-input string properties with custom activities which enabled the workflow creator to input any text in the corresponding prop of the activity in the workflow designer. Any DependencyProperty with type(string) enabled this. In Beta2 this definition enforces a total different behaviour in the Workflow Designer - it tries to map it to a Workflow member variable ... How to create props for text input How to create custom themes in Beta2 Thanks!! Andreas Andreas, If I understand you correctly, try putting the string in quotes (double qu ...Show All

  • Visual Studio Express Editions Command Line args question

    I have this program (actually 2) a tray app and the main app. There are settings the user can change to change the behavior of the tray. for example when the tray is running and a camera device is inserted, the user can have it auto launch the main app. (that is simple (Process.Start("PROGRAM.EXE") But there is another option (if auto launch main app if camera is inserted) that it will auto copy photos with no user interaction needed. So the tray looks for the camera every 3 seconds (will that slow the pc down ) and if they have the setting enabled it will auto copy. So if the setting is enabled i want the tray to open up the main ...Show All

  • Windows Forms UserControl Design Support

    I have created my first UserControl in a Windows App (I mostly do ASP.NET). The control consists of a panel that contains a label and a text box. When I drag the control from the toolbox to the forms designer, it shows as intended. However, I am only able to resize the control itself, but not the controls that it contains. How can I add the ability to resize (by dragging an edge) the label and the textbox too Thank you. I have used the anchor properties as suggested and it is working fine. Now I want to do the following. The UC has a label on top of a text box, seperated by five pixels. I added properti ...Show All

  • Smart Device Development Getting Contact information from Speed Dial database entries (WM5)?

    Hi, I am attempting to get information from the speed dial database in WM5. I have managed to access the "speed.db" database. I can get the DisplayName and Index for each speed dial entry (I'll post the code if anyone is interested). However I'm not sure how to get more information. I'm assuming there should be an OID in the speed dial entry that is associated with a valid Outlook Contact. However I'm not able to find this information. This webpage shows what speed.db "should" look like. There is an "object id of contacts entry", which I tried to use with "GetItemFromOid" to get the Contact, ...Show All

  • Visual Studio Team System Error: TF60059 Incremental Migration TFS Beta 3 Refresh

    I'm currently performing an Incremental migration to team foundation server (TFS Beta 3 Refresh) - Single server deployment. I've followed the migration process specified in the how to for VSTFS http://msdn2.microsoft.com/en-us/library/ms400695(VS.80).aspx The following steps completed successfully as specified in the above document 1 - 7 but when I perform step 8 to do an incremental migration process (2 new labels in the VSS project) I get the following error message TF60059: The Visual Studio Team Foundation source control folder $/SLIC is not empty. Specify an empty folder for migration. I cannot find any article ...Show All

  • Windows Forms DGVComboBoxColumn gives ThreadStateException

    I'm having a problem when selecting cells in a DataGridViewComboBoxColumn.  Each time a cell is selected I see the following error: "DataGridView Default Error Dialog: System.Threading.ThreadStateException: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made.  Ensure that you Main function has STAThreadAttribute marked on it. ..." Firstly, I don't use any Main() methods in my application.  I did try adding one with the suggested attribute, but it had no affect.  Does anyone know what this means Thanks, Nate Another note: After clicking OK for th ...Show All

  • .NET Development Retrieve Identity value from inserted row in Access Database using TableAdapter

    Following on from... http://forums.microsoft.com/msdn/ShowPost.aspx PostID=58862 I would like to retrieve the value of an inserted identity column from an Access database immediately after a new row is inserted using C#. The example in the post above uses VB and I am confused about where to put the following statement : m_adapter.RowUpdated += new OleDbRowUpdatedEventHandler (m_adapter_RowUpdated);   m_adapter refers to the TableAdapters OleDbDataAdapter in the designer.cs file. The only places I can think to put it are the TableAdapter constructor and the TableAdapter InitAdapter() method. Both of these reside i ...Show All

  • Windows Live Developer Forums Is there any way to fill a polyline?

    Does anybody have any ideas Hi Which approach did you take I am trying to create a map with coloured areas, but cannot find any information about this. Thanks in advance. Thomas ...Show All

  • SQL Server SQLEXPRESS CREATE DATABASE

    Why does: USE master GO CREATE DATABASE Sales ON ( NAME = Sales_dat,    FILENAME = N'D:\Database Files\saledat.mdf',    SIZE = 10,    MAXSIZE = 50,    FILEGROWTH = 5 ) LOG ON ( NAME = 'Sales_log',    FILENAME = N'D:\Database Files\salelog.ldf',    SIZE = 5MB,    MAXSIZE = 25MB,    FILEGROWTH = 5MB ) GO Gives me the error: The file "D:\Database Files\saledat.mdf" is compressed but does not reside in a read-only database or filegroup. The file must be decompressed What does this mean It worked perfectly for me. By defa ...Show All

  • Visual Studio Team System Pulling info. from db into headers and footers

    Hello, Is pulling information from the database (sql server) and putting it into the headers and footers even possible I have heard there some kind of work around to achieve this but I am not sure how to go about it. Any ideas thanks ahead. Basically i want to be able to pull names from my sql server database to insert into the report page header. This would be easy to do in the body of the report, but i want this information in the header of my report. I am working with sql reporting services. I hope this makes things a lil more clear. ...Show All

©2008 Software Development Network