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

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

Fall

Member List

Ravana
GKNewYork
Silkflour
crazyy
megs_lefevre
UWO
Vassilux
Alex.P.
Edward Stephen
Soviut
Ruslan Inozemtsev
Geoff Van Brunt
Stephen J.Vanterpool
Hafiz Basharat
Greg Walker
Adiavn
Brent Williams - MSFT
Kai Huener
Atomican
Thomas Bumgardner
Only Title

Fall's Q&A profile

  • Windows Forms How can we show combobox in vsflex in vb.net

    Hello friends i want to know how can we add combox in vsflexgrid in vb.net & getting the value from there ...Show All

  • Smart Device Development Can't append menu items to command bar menu after migration from EVC4

    Hi I've migrated my project from EVC4 to VS2005. It's targeting Pocket PC 2003. I'm trying to append menus to a CCommandBar like this: CMenu *menu = AfxGetMainWnd()->GetMenu(); CMenu *submenu = menu->GetSubmenu(0); submenu->InsertMenu(0, MF_BYPOSITION, 100100, L"test"); AfxGetMainWnd()->DrawMenuBar(); The function doesn't return any errors, and in fact the number of items returned by submenu()->GetMenuItemCount() increases b ...Show All

  • SQL Server More SSIS via the web

    Thanks to Michael Entin's help last week, I was able to execute a package via a .NET web application.  I have now moved my solution to the client's development server.  I can execute the packages via DTExecUI and DTExec, but my web application is failing.  The only difference between the two servers is the database server is installed on another box.  Will this be a problem Also, am I correct that the "Network Service" needs ...Show All

  • Visual Studio Express Editions What happend to vector file? All of the sudden syntax errors in vendor supplied header...

    I have been trying out VC++2005 express and compiled some programs recently that included from the std library 'vector' header.  At first everything compiled find yesterday, but then all of the sudden today any file that includes vector will not compile and I get 9 syntax errors from the vector header file.  I copied the vector header file over from the VC++ 2003 toolkit installation and dropped it into the include directory for VC++ 2 ...Show All

  • SQL Server SQL 2005 Enterprise June CTP Installation Error

    Tried to install several times (on Win2003 Ent. SP1) but I always get the following error: Failure adding user NT AUTHORITY\NETWORK SERVICE to local group SQLServer2005MSSQLServerADHelperUser (1388) The user varies (sometimes NT AUTHORITY\SYSTEM) and so does the local group (sometimes SQLServer2005SQLBrowserUser). Any tips Regards Roger I have tried to install SQLDEV ,But got the same error mesage. ...Show All

  • Windows Forms BEGINNER: What do I use for code for the Cut, Copy, Paste functions?

    So I am new to programming, but we all have to start out somewhere right...   But anyway, I am trying to create a simple application in the new VS 2005 with a menu bar at the top and inserted the standard items.  I am wondering what code do I use to make the Edit commands (Cut, Copy, Paste, etc.) So this is where I am so far: Private Sub CutToolStripMenuItem_Click( ByVal sender As System.Object, ByVal e As System.EventA ...Show All

  • .NET Development Is the release of the .Net framework 2.0 tied to the release of Visual Studio 2005

    I'm trying to determine if I should switch development to Visual Studio 2005 beta 2.  The product appears to be stable enough for me, however my concern is that the release date of the .Net framework 2.0 is tied to VS2005, and won't be for quite some time.  I'm developing a WinForms product aimed at the retail market, so the "go live" license isn't an option. but if the release the .Net framework is expected shortly, then it becomes fe ...Show All

  • Visual C++ calling Activex methods from a static function--Dialog-based application

    i am using an Activex control in a dialog based applicaton(VC++). i created an member variable for that(myportcontroller). In an non-static function i am able to call the Activex control methods using the member variable and worked fine. But i need to call the activex control methods in an static function. Here i cannot use the member variable as it is a static function. So, i declared an object for Activex control class. Using that object i cal ...Show All

  • SQL Server Disable exporting in RS

    Hi, I would like to know if it is possible to disable the exporting option for individual reports in Reporting Services. I have seen a post explaining how to disable it for all reports (editing the config file on the reportserver) but the problem in my case is that I still need my users to have the exporting option for a majority of the reports. There are only a few reports that I need to disable this option for. Does anyone know if this is p ...Show All

  • Visual C++ error LNK2001: unresolved external symbol ___CxxFrameHandler3

    Hi, I am working on a project to migrate a program from 32-bit to 64-bit. The program works fine on 32-bit machine under VC 7, but when I tried to compile it in VC 8 on a 64-bit machine, I received the following linking error: error LNK2001: unresolved external symbol __CxxFrameHandler3 What is the possible cause for this error and how to fix it (i have already tried the suggestions posted  ...Show All

  • Visual C++ Directories of 64-bit targets created from 32-bit ones

    Hi, The VS 2005 feature for adding 64-bit targets by coping win32 ones is pretty neat: http://msdn2.microsoft.com/en-us/library/9yb4317s(en-us,vs.80).aspx I've noticed though, that when doing this with projects converted from VC++ 6, in some places the new target uses the same build directory as the target copied, so that, for example the amd64 and the win32 versions can't be built at the same time. I've put an example below. The x64 part doe ...Show All

  • Visual Basic Searching Directories In A Background Thread...

    Alright, I have code to search directories on a users PC in a background thread and then updates the proper files in a listbox. My code works great when I search a mapped drive (in my case the R:/ drive), but when I search the C:/ drive, my application locks up and once the code has finished, it will then unfreeze. What would cause only the C:/ to do this Here is my code... This is in my main form... Private Sub Director ...Show All

  • Visual Studio Team System Is there an example of how to test web services using https with X.509 certificate

    Any examples out there to test web services that require a client-side certificate using https I created the tests on my local machine without ssl and now am trying to enhance them for our larger test system. Can't record as we are using Smart Client WinForms.  Actually, the problem migh not be the certificate but how to add a FormPostParameter with Username and password. Is this the same in Smart Client forms as in IE Thanks, Burk ...Show All

  • Visual Basic How to check if a string is a number

    How do you check to see if a string is a numberic value Dim mystr As String mystr = "12344" If IsNumeric(mystr) = True Then System.Windows.Forms.MessageBox.Show( "All Numbers" ) else System.Windows.Forms.MessageBox.Show( "Not All Numbers" ) End If ...Show All

  • Visual Studio Team System build process - replace text in config file

    i have the .config file with connection string that i want to replace as part of the team build process. how do i do this You can write a custom task that uses ConfigurationManager class to modify your config file (and replace the conn string) and then call this task by overriding an appropriate target (such as AfterCompile). The following article on manish's blog describes how to do create a custom task and ca ...Show All

©2008 Software Development Network

powered by phorum