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

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

fleo

Member List

Xin-wonder
sbogollu
Kamalkanth Nayak
JTeoh
Computer Guy69146
BeguiledFoil
Prasenna
Kevin Hoffman
afitoine
chaza
Pradeep Gupta
curiousss
GazCoder
Adnanans78
generica
Intelliorbit
Sam_res03
Steve Bostedor
Maaloul
bubu
Only Title

fleo's Q&A profile

  • SQL Server Sql2005 standard to Sql2005 enterprise edition

    Hi We have Sql2005 x64 bit standard edition server installed in windows 2003 64 bit editio server, currently due to buisness requirements we need to have sql2005 x64 bit enterprise edition, please let me know how do i do the upgrade or change. is it possible to retain all our custom settings in the standard edition after changing to enterprise edition. This has to be done for our production and very critical, please help Thanks Samuel I Thanks a lot for your response, does MS have any documentation or links on how to proceed on this, things to take care of before running the setp, and others samuel ...Show All

  • Visual FoxPro Using grid

    I have a grid in my program that display an information in sorted and the moment I click any data within the first colum of my grid it automatically display all information in the corresponding objects within the form. What i want to do next is, if ever the focus within the grid and i type the first letter of the record which i want to find it would highlight the record that starts with the character i enter within the grid and follows the 2nd, 3rd and so on. until such time i can right away view the record which i want to find. Thanks... thanks to you guys but i dont want to use another object like textboxes or label just to accept data i typed. What i want is, the moment my form is running and ...Show All

  • Visual Studio Addins with VS2005 SP1

    After installing SP1 for VS2005, the addin projects that rely on XML registration stopped working. The ATL projects still work as expected. Does anyone have a work around for this issue Can you create a new add-in using the wizard The add-in uses XML registration and it should work. If not, report it as a bug. If so, then the problem is of your specific add-in. See: HOWTO: Troubleshooting Visual Studio and Office add-ins http://www.mztools.com/resources_vsnet_addins.htm ...Show All

  • Windows Forms Setting Application Theme/ColorTable

    Hi all, In my project, I want to use WinXP theme with blue color schema whatever user's machine color schema ( if user enabled WinXP theme ). It is easy to setup blue color schema for menustrip, toolstrip, etc. with the helps of custom Professional ColorTable. I have used reflection to get values of AreteOutlookCustomColorTable properties. However I need that all controls' of application with blue schema colors. How can I do this ToolStripManager.Renderer = new ToolStripProfessionalRenderer(new AreteControls.OutlookStyleItems.AreteOutlookCustomColorTable()); using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Drawing; namespace AreteControls.OutlookStyleItems { /// <summary> ...Show All

  • Visual Studio Express Editions Music Player

    Is there a Video or lesson that will teach me how to make A application that will open and play audio files Sure is http://msdn.microsoft.com/vstudio/express/vb/learning/ Windows Forms Controls Series Lesson 1 and 2 should get you using a couple of different ways of playing audio etc. One is using the media player control - which will handle many different file types.   ...Show All

  • Visual Studio Team System TFS RC installation Error 28805

    So I have been good so far on a clean install of the RC untill I try to install the application tier. The progress bar gets almost to the end and I get an error message labeled: Error 28805 Setup cannot finish the request to the SQL Server 2005 Reporting Service report server. Verify that the report server is installed and running, and that you have sufficient privledges to access it. I have report server install and running on the box that the application tier is being installed to as per the install instructions rather than on the SQL Server box. I am installing with TFSSETUP as the user and it is in the local administrator group. I am assuming this is some simple permissions issue but I can for the life of me figure out what t ...Show All

  • Smart Device Development Modifying the Registry

    In Windows CE 4.2 when you set the taskbar to AutoHide On/Off it modifies the registry and then the taskbar will autohide or else be on top. this is done without having to reboot the device. Im my application i need to set the taskbar to AutoHide, and i have done this in the registry, but i need to warm reboot the device in order for the registry to be reloaded. Is it possible for the change to have effect without rebooting wow... thats is works perfectly Can you explain the SafeNativeMethods Class how does the PostMessage reload the registry changes What does this PostMessage Method do behind the scenes Thanks very much ...Show All

  • Visual Studio Tools for Office Features or Bugs in VSTO.

    Are these features or bugs I've found two things that there may be a reason for but I can think of none. 1. If you have a form field in a word document project that has a default value in it. You cannot populate that bookmark in code with a bookmarkname.Text = "AAA" line of code. It gives you an error along the lines of "Out of Range" or something like that. 2. If I am trying to populate a data island from code on a web server. I open the the document file with a file stream and then assign it to a "ServerDocument" class as shown below If File.Exists(BlankDocumentPath) = False Then Return ("File " & BlankDocumentPath & " Does not exist") Exit Function ...Show All

  • Visual Studio Tools for Office ImportXML hangs in VSTO application

    Hi, We have VSTO application for excel and using Oracle DB as database. Now for one requirement we need to insert data into local MSAccess file. For doing so we are using importxml facility of dataset as follows: Access. Application accessApplication = new Access. Application (); accessApplication.OpenCurrentDatabase( MSAccessDataManager .LocalDBPath, false , MSAccessDataManager .LocalDBPassword); accessApplication.AutomationSecurity = Microsoft.Office.Core. MsoAutomationSecurity .msoAutomationSecurityLow; string filePath = localFilePath + \\AD_RESIDUAL_PRODUCTS.xml ; dataSet.Tables[ "AD_RESIDUAL_PRODUCTS" ].WriteXml(filePath); accessApplication.ImportXML(filePath, Access. AcImportXMLOption .acAppendData) ...Show All

  • Windows Forms ArgumentOutOfRangeException on GetRowState after setting AllowUserToAddRows

    Hello, I want to limit the number of rows in my DataGridView, so I subscribe to RowsAdded and RowsRemoved events, check the number and set the AllowUserToAddRows. Just 2 methods, code below But when I reach the limit (and I want that the NewRow be removed) void dataGridView1_RowsRemoved( object sender, DataGridViewRowsRemovedEventArgs e){ if ( this .dataGridView1.Rows.Count < 5){ if (! this .dataGridView1.AllowUserToAddRows) this .dataGridView1.AllowUserToAddRows = true ; } else { if ( this .dataGridView1.AllowUserToAddRows) this .dataGridView1.AllowUserToAddRows = false ; } } void dataGridView1_RowsAdded( object sender, DataGridViewRowsAddedEventArgs e){ if ( th ...Show All

  • Visual Studio 2008 (Pre-release) VisualTreeHelper.HitTest returns null

    Hi... I’m trying to use the VisualTreeHelper.HitTest method to check if a Canvas was hit or not after MouseLeftButton was hit.. protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e) { Point p = e.GetPosition(this); HitTestResult hRresult = VisualTreeHelper.HitTest(myCanvas, p); if (hRresult ==null) { // Canvas was not hit,move window this.DragMove(); } else { //do something else.. } } Wheter if I click on the Canvas object (myCanvas) or not, hResult always is set to null.. What am I doing wrong Have a nice day /Erik What is it bad/wrong to hit-test the object itself I tried it and it worked ...Show All

  • Visual Studio Visual Studio 2005 Beta 2 Uninstall error.

    I am receiving the following message when I try to uninstall VS 2005 Beta 2 Setup is unable to determine a valid ordering for the installation.  See the error log for further details. Has anyone else received this message   And where is the error log located that is supposed to contain "further details". Thanks. Tried it on another machine with VS2005 B2 installed. The uninstall tool worked fine. On the first machine with the problems arising I manually uninstalled all the components using the add/remove programs at the control panel. Guess that's the cause for the current situation. Going to find a way to reinstall the VS2005 B2 to hopefully be able uninstall it again using the automated tool... ...Show All

  • SQL Server Infinite Loop in cursor

    Hi I have an infinite loop in a trigger I and I cant reslove it. In my system the user updates a stock table from the GUI and on the update I need to check values to see if I need to add records to a StockHistory table.  For Example:  If the user changes the grade of Product X from A to B then I need to add a new line in StockHistory for product X grade A that decrements the total number of products in the warehouse.  Similary I need to increase the quantity of stock for Product X grade B. I had the trigger working for single updates but now when stock is added to the database (from another db) it has status of 'New'.  This isn't actually 'in stock' until the user sets the status to 'Goods In'.  This proces ...Show All

  • Visual Basic Receiving multiple packets via UDP using udpclient

    This may be a dumb question but is sure giving me a headache For this application I'm doing to get information from a game server I send a query to the server and I get back the server information, my problem is that the information is broken into 3 different packets and when I use the Receive method from my UDPClient I always get the first packet only. Is there any way I can get all three packets of data Like I said this may be a dumb question but I sure can use some help on this ...Show All

  • Visual Studio Tools for Office UDF FOR EXCEL 2003 USING VSTO 2005 SE.

    hi guys i am pretty new to vsto 2005 SE. i have created a add-in using VSTO 2005 SE. i want to write a user defined function say Add(int,int). when we write in the cell =Add(1,2) this will return us the sum. i want to ask where this Add function will be declared and what other refrences are required. i want to know how UDF are used and declared . please enlighten with the above example if possible. otherwise give idea in steps. plzz help me. See this message thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=426211&SiteID=1 ...Show All

©2008 Software Development Network