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

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

TOGA_FLX

Member List

Derek Ekins
luano
Miles Cohen - MSFT
shanki
SgtJake
HakanA
SVMike
TerryTalley
Fritz Klein
Mr_Mod
CarlDemelo
TonMekking
rhonda945
Niels R.
BorisSlo
Mohamed Salah
Cristi Lupa?cu
SanthoshGV
pfitzsimons
msdnjw
Only Title

TOGA_FLX's Q&A profile

  • Visual Studio how to locate the chapter in the help table of contents associated to the current visited page

    Sometimes I find a page by searching in Index in the .NET help system. But after, I want to locate that chapter or section in the table of contents. How do I go, pls, from the current page in order to find its link and place within the chapters in table of contents. Best regards The Standard Toolbar in Visual Studio has a "Sync with Table of Contents" button on it. Click that button to achieve what you want. The button is located next to the one that's labelled "Ask a Question". ...Show All

  • Smart Device Development Save DataGridView contents

    I need to save the contents of a DataGridView to a file. Do I unpack the Grid to an array and save the array, or is there an easier way Also, the colums contain different data types, must I resolve that myself or is there an easier way There's no DataGridView on devices. Are you in the wrong forum, perhaps ...Show All

  • Visual Studio Team System Team Build Error when using Strong Naming

    Hi I am getting the following error when trying to build my solution using Team Build. The projects are strong named an the key is in source control. Solution: MediaConnector.Client.Windows.sln, Project: MediaConnector.Domain.csproj, Compilation errors and warnings C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets(1718,7): error MSB4018: The "ResolveKeySource" task failed unexpectedly. System.InvalidOperationException: Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notificati ...Show All

  • Visual Studio 2008 (Pre-release) Anybody managed to find a workaround for the "Black Window" bug in the Nov CTP?

    I think I'll create this post as a checkpoint where people can post any info on this bug. For a background, some of us using the November CTP for WPF and either Visual Studio 2005 or C# Express, are experiencing a black window when running the simplest of WPF apps (i.e an app that does nothing but window.Show()). Other people experience it intermitently in XamlPad itself. A few links to the problem... [1] [2] Apparently the January 2006 CTP contains the same bits for WPF (Avalon) as the December 2006 CTP, so the same bug will be present. The Microsoft product feedback centre states that the fix will be ...Show All

  • SQL Server URL Access using Impersonation

    I need to display a report by impersonating a specific user (to test I have hardcoded a user and pw.  I have modified the web.config as follows and gave the  user browser rights in report server. < identity impersonate = "true" userName ="mydomain\myusrname" password ="mypw"/> I have created an asp.net page with the following code behind a button to display the report.  Dim impersonationContext As System.Security.Principal.WindowsImpersonationContext Dim currentWindowsIdentity As System.Security.Principal.WindowsIdentity currentWindowsIdentity = CType (User.Identity, System.Security.Principal. ...Show All

  • Visual Basic How do I control navigation in datagridview. ie to go sideways on <enter>

    When the user presses enter in a cell for a certain column I want to sent the next cell to the next column, like doing a <tab> instead of going to the next row. I have used the keypress event, but this is not fired if the user is in edit mode and presses enter. Anyother action to set currentcell changes the column, but the process still moves to the next row. Does anyone have any ideas. Ok, here goes nothing... Dim LastEditedCell as DataGridViewCell Private Sub DGVCenter_CellEndEdit(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DGVCenter.CellEndEd ...Show All

  • Visual C++ Linking to static lib created with vc7.1

    I am trying to do a program where i need to use some static lib's created with vc7.1( i am new to this) so what is best practice since i get linker errors that msvcp80.dll missing and if i exclude then i get 10 thousend other error. co how to use a static lib wich is compiled with vc 7.1 lib should i use 7.1 lib, and if howto set this up Or you can just contact the owner of the of the lib and get the sources if applicable. Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • Windows Forms Show Dropdown List on First Click in ComboBox Cell in DataGridView

    Hi, I am working on Datagridview, wherein I need something like this: I have 4 columns. First Column is a Combobox Column. Whenever I move around in the DataGridView and I click on the Combobox Cell(in any row in first column), On first click it highlights the cell and on second click it shows the DropDown List. What I want is, Dropdown list should be shown on the very first click itself. Any pointers to this will be really great. Thanks, Kunj You may use the CellEnter event of a DataGridView. Dim dgv As DataGridView = CType (sender, DataGridView) If dgv.Columns(e.ColumnIndex).Name = "ComboCol" ...Show All

  • Software Development for Windows Vista Visual Studio 2003 installation issues on Vista 5270

    I cannot seem to install VS 2003 onto Vista 5270, it keeps on saying that it cannot copy a file to the temp directory. Any ideas why it wont install try copying the entire vs2003 dvd image to the local disk .. the error message goes away - don't ask me why... ...Show All

  • Windows Forms Scrollable control vs panel

    Does it realy make a diff (performance,memory) when inherit from scrolablecontrol in stead of panel. just curious Remco There is no performance penalty for inheritance irrelevant of the depth of the hierarchy except when you are dealing with virtual members.  In this case there is an extra lookup that occurs to find the right method at runtime but again it is a single lookup (the method table is consolidated into a single lookup table when the type is loaded) and therefore is independent of the size of the hierarchy.  At least this is the way that I remember C# and .NET working.  C++ on the oth ...Show All

  • Visual Basic Memory editing - Processes

    Hi, i am trying to read a value from a process, and then find its pointer, and from this pointer, i can subtract or add to find a different pointer, for e.g :   i want to search for the value of 123456,. which exists inside only one pointer in an ActiveX, but the pointer is variable. however, if i find the pointer, I can subtract &hAA to find another value which if i change, i would get the results i am looking for.   i have no problems Reading and Writing values to pointers, but i want a code that would allow me to search for this 123456 unique value, from whose pointer i can make a starting point.   thi ...Show All

  • Visual Studio Team System December CTP of VSTS has removed all support for Artifact linking????

    I noticed that our code will not compile with the new December CTP of VSTS b/c classes like Microsoft.TeamFoundation.Artifact have been removed.  Is the plan not to include linking of custom artifacts   Thanks, Nick Clarification:  Microsoft.TeamFoundation.Server.Artifact no longer exists.  So the question is... will linking of custom artifacts be supported ...Show All

  • Smart Device Development Can't call MyFunction in MyDLL(C++) from PocketPC application (C#)

    Hello, I have an DLL (unmanaged C++) and the application (C#) worked well on Desktop. Now i want to make it work on PocketPC. I could not debug into the DLL (unmanaged C++) from my Smart Device Application (C#). My project was built in the following way: New Project--->C#-->Smart Device (Pocket PC 2003) --> Device Application The project to build the DLL for PocketPC is created as: in VS2005 New Project--->VC++-->Smart Device --> Win32 Smart Device Project (Platforms choose "Pocket PC 2003" and Application Settings choose "DLL") and the DLL was successfully built. When i tried to debug from the application to the unman ...Show All

  • Visual Basic adding to var

    What's wrong with this: Dim Num As Integer         If Num = Nothing Then             Num = 0         ElseIf Num = 5 Then             Num = 0         Else             Num = Num + 1         End If         Label1.Text = Num   Every time the subroutine is c ...Show All

  • SQL Server Is it possible to convert the sample C# program AmoAdventureWorks in "C"??

    Is it possible to convert the sample C# program AmoAdventureWorks to "C" Program If so please someone give me pointers. Even a subset of AmoAdventureWorks would be fine (i.e with just one dimension, one measure etc.) Please hepl me urgently!!! Thanks Hi. It is not ideal, but with reflector (google reflector) can do it by reverse engineering. Compile it, then load the PE into reflector, choose disassembly Managed C++. Remember that case's can be goto's etc. because of the optimizations. I guess I would to compile it as debug. Good luck ...Show All

©2008 Software Development Network