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

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

LarryETL

Member List

kiwilamb
Stephen Hauck
Pierre bzh
mjoc69
wagnerjp
Kazius
MSDNuser63
Khurram Aziz
beachbum714
John Stallo MSFT
wingbyte
doctus
JamieHiggins
DPowers0
Naya
jcseth
Xtamillion
Pierre Baril
ThunderCrash
melonboy
Only Title

LarryETL's Q&A profile

  • Software Development for Windows Vista WWF Thread Safety on Windows Forms

    I would like to implement all my windows application logic based on workflows. This is, even the actions of showing forms and all possible pre and post actions. This way I could customize an application for a customer without needing to change code... The problem is that, as far as I know, the instance can only run on a different thread than the UI process... this way, for example, I can't open a MDIChild on a workflow... Can I run the workflow on the same thread of the UI process Thanks! Alex I never eard of that 'till now... I'll try it tonight and get back here to report the results :) Thanks! ...Show All

  • Visual Studio Tools for Office VSTO Deployment question - additional files on network share?

    I am in the process of changing the deployment model of a VSTO Word solution that is currently deployed locally. It needs to be deployed on a network share, so that all user's solution Word documents, whether email to one another or accessed from a Sharepoint site, point to the same assemblies and can be used with the VSTO solution. Users will often be working offline, and it is my understanding that the assemblies from the network shares will automatically be cached onto the users' local machines. However, we have additional files that are needed by the application, including an XSD that we bind to the document, the assembly.dll.co ...Show All

  • Smart Device Development Application Settings

    Compact Framework 2.0 does not support application settings (appSettings class, etc.). I am wandering : what is the best way to preserve user and application settings in the compact framework Any idea Emphyrio You can save them to the file or registry whichever you prefer. File can be in any format, for example XML. It is recommended to use <your application name>.exe.config file in XML format. You can use DOM to process this XML file. ...Show All

  • Visual Basic Error logging to Eventlog

    I have following code that I want to write to Application event log.     Public Sub LogMessage(ByVal Str As String)         Dim sSource As String         Dim sLog As String         Dim sMachine As String         Try             sSource = "Test"             sLog = "Application"             sMachine = "."    &nb ...Show All

  • Windows Forms datagridview button column doesn't respond to enter keystroke

    vs2005 beta1 it does respond to mouse click though, but when you use enter keystroke, only leads to current row change. Thanks mark. I put the code here just in case anyone needs it. Public Class MyDatagridviewButtonColumn Inherits DataGridViewButtonColumn Public Sub New () Me .CellTemplate = New MyDatagridviewButtonCell End Sub End Class   Public Class MyDatagridviewButtonCell Inherits DataGridViewButtonCell Public Sub New () MyBase .New() End Sub Protected Overrides Sub OnKeyDown( ByVal e As System.Windows.Forms.KeyEventArgs, ByVal rowIndex As Integer ) MyBase .OnKeyD ...Show All

  • Visual Studio Tools for Office Keyhook event handling at Word Document level

    Hi, We are on VSTO Customizations for Word 2003. We binded the XML Schema to the word document. At some of the nodes we need to capture the keys entered by the user and based on that we need to do some action. For that we have written KeyHook events. The following link is the source of our reference http://msdn.microsoft.com/msdnmag/issues/02/10/CuttingEdge/ For that we added filters and allowing the keyhook event only being fired based on the matching filters (or keys for which we enable firing). The keyhook event is getting fired when user presses a key (which matches filter conditions set) at the document window. ...Show All

  • SQL Server Is there any way to control the visibility of items in Reporting Services Toolbar ?

    I want the Reporting Services toolbar to be shown in my report. But i would like only "Zoom" dropdown and not others like "Find", "refresh", "Print" etc. Is there any way for me to control this from the URL. (as work around can i specifying this in RDL ) thanks, Shyam Could you possibly go into more detail how to go about turning on and off individual buttons through VS 2005 report controls in server mode Thanks!! ...Show All

  • SQL Server Loop through each record and then each field within each record

    I need to essentially do 2 loops.  One loops through each record and then inside each record row, I want to perform an insert on each column. Something like this maybe using a cursor or something else: For each record in my table (I'll just use the cursor)      For each column in current record for cursor               perform some sql based on the current column value      Next Next So below, all I need to do is figure out how to loop through each column for the current record in the cursor AS DECLARE Create_Final_Table CURSOR FOR SELECT     FieldName, AcctNumb ...Show All

  • Visual Studio Express Editions Cannot get cd to autorun

    I am using VB Express to create an application and am pulling my hair out trying to get the cd to autorun. Using Project->Properties->Publish and then Options... I have checked "For CD installations, automatically start Setup when CD is inserted" In the publish folder, it creates an Autorun.inf file that contains: [autorun] open = setup.exe icon = setup.exe,0 Then, using Iomega Hot Burn Pro I add all of the files in the publish folder to a cd and burn the cd. When I insert it into any one of multiple different PCs nothing happens. I have verified that all of the test PCs have autorun enabled by insertin ...Show All

  • Visual C++ fatal error C1001: INTERNAL COMPILER ERROR

    I have an application with VisualC++ ,I use VS2003 as an IDE when I compile the application in debug mode It works fine but when I convert it to release mode and try to compile I get the following error fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\3077\vc\Compiler\Utc\src\P2\main.c', line 148) and when I click on it it refer to the following lines in my code int nRep=RemoteObj.ObtnKeys("Software\\JavaSoft\\Java Plug-in"); where ObtnKeys is a method that accept CString Parameter I hope that anyone could advice me Hi Hossam, Internal compiler errors are compiler bugs. Sometimes it h ...Show All

  • .NET Development CLR Profiler Question

    Does the CLR Profiler for Beta 2 support the July CTP   All I can get is an unhandled exception when It trys to start my apps. Hi, The CLR Profiler for Beta 2 was built specifically for Beta 2 and I dont think it can be used with the July CTP of VS2005. Regards, Vikram ...Show All

  • Microsoft ISV Community Center Forums vba in excel

    Public Sub CopyStuff() Dim lngRow As Long Dim strFileName As String Hi John Try the below, you can amend as necessary, I have added a function which will help name the file as per your example Public Sub CopyStuff() Dim lngRow As Long Dim strFileName As String Dim strRange, StrRow As String On Error Resume Next MkDir ("C:\Files") On Error GoTo 0 For lngRow = 1 To 2 StrRow = Trim$(Str$(lngRow)) strRange = "A" & StrRow & ":B" & StrRow Range(strRange).Select Selection.Copy Workbooks.Add Range("A1:B1").Select ActiveSheet.Paste Application.CutCopyMode = False Appl ...Show All

  • Visual Studio Team System Severe delay when right clicking larger source controlled projects in VS 2005

    I have a web application project which consists of 1499 source controled files (listed by type below[1]). Right clicking this solution in VS 2005 delays the context menu for about five seconds. It seems like the IDE is actually trying to determine what source control operations are available by going over every single file. Seems to me like the QueryEnabled implementation for the various commands on both the context menu and the Team Foundation Source Control menu bar are performing some costly checks. Is there a way to disable these checks with a registry entry of some kind Like... tell it not to go check the status of every single file and ...Show All

  • Visual Basic Convert a old VB6 project

    Hy all,  I have a very old VB6 project (a complex one), I need to to convert it to the new .net 2005 platform. I installed VS.2005 and tryed to convert it using the conversion utility, unfortunatly I get several "Error 7: Out of memory" witch I skip and finaly a "The referenced component TXTextControl is missing a design time license" error witch stops my conversion proces.  Anybody has any ideeas on this one.  Have a nice day, the link for general conversion advice has changed... http://msdn2.microsoft.com/en-gb/library/dy163kx7(VS.80).aspx ...Show All

  • Software Development for Windows Vista quartz.dll SP2 debug

    Just wondering, last time I looked (when DirectShow was included with the DirectX SDK) the quartz debug dll was pre SP2, now in the Platform SDK it does not seem to exist at all. (I have the Windows Server 2003 SP1 SDK). Does a quartz debug dll exist in a later Platform SDK If not, is there going to be one Earlier I really liked the debug dll since I would get information about interfaces that was not released and everything like that. And now when I'm going through another development phase it would be really nice to have all that great functionality back. Using the SP1 version of the dll won't work since I need some SP2 features. By the w ...Show All

©2008 Software Development Network