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

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

NX74205sc

Member List

diavo
Sergey Barinov
Reachkamath
JoeeT
Blockp
MARViN2003
Mike Woods
Matt Honeycutt
Christof.Mattes
BigOldSofty
Ronald Wilson
sun21170
hesidoyo
Delboy6969
MAtkins
prabakaranm
bizhaoqi
Endpoint
Rick Toner
gsquaredb
Only Title

NX74205sc's Q&A profile

  • Windows Forms It seams I found part of the answer my self :)

    Oh components, I am writing one of them since a week, too much, I know :)  The last think that I was not able to solve is how to make the component discover where he is exactly during initialization, in other words, on what form is bean placed, and in which project. I used a similar code in the components to discover the project in  ...Show All

  • Windows Forms ClickOnce Deployment and DMZ

    I am getting the below error when deploying my application from outside our Company firewall. We have a DMZ setup that will prompt the user for a username and password and then rout the URL to the actual ClickOnce publish.htm. When I run this from outside of the company network I get the below error, can anybody please help The following properties have been set: Property: [AdminUser] = true {boolean} Property: [ProcessorArchitecture] = Intel {string} Property: [VersionNT] = 5.1.2 {version} Running checks for package '.NET Framework 2.0', phase BuildList Running external check with command line "C:\DOCUME~ ...Show All

  • Smart Device Development .NET CF Application - Will it run on all .NETCF Processors without recompiling?

    I just need some clarification here. Correct me if I am wrong.  A .NET CF app that has been compiled to "byte code" should be portable across all .NET CF supporting devices   IE: ARM/x86 etc. I shouldn't need to recompile it to each of these devices.  Is this correct Thanks! Question 2: Code may not necessarily be portable between the full and CF as the CF may not contain all functionality represented in the full Is this a true statement Thanks! ...Show All

  • Windows Forms Theme for WinForm

    I can find articles about creating and applying theme for ASP.NET 2.0.  However, how to implement theme in WinForm Thanks. You know, I ran into another way to use Themes, and it was with a .config file. It is one of the examples in the Visual C++ 2003 code examples.  http://www.microsoft.com/downloads/details.aspx familyid=6e6fac4b-5b51-41fe-9604-1d9752e8a71a&displaylang=en There is alot of interesting stuff there. If you are using C#, I'm sure that you will understand the code. ...Show All

  • Software Development for Windows Vista Bug? InvokeWorkFlow activity used with Sequential Workflow hosted in Console App

    I've been experimenting with InvokeWorkFlow activity and found what I think might be a bug with the logic in hosting code for the console app.  In the Main method, the WF runtime is instantiated and the started passing in the type for WorkFlow1.  Before it starts the workflow however it wires up a handler for the WorkflowCompleted event that when called sets a AutoResetEvent which the main thread uses to terminate the WF runtime and end the app.  So here's the problem.  I have a workflow that uses InvokeWorkflow activities to invoke 3 separate workflows that I want to run asynchronously.  However, after calling the ...Show All

  • Visual Basic user.config location

    hi, my app stores some settings data in the user.config file. this one is located in InstallRoot%\Documents and Settings\ username \Local Settings or appdata. How can i modify this location of the user.config file (for example i want it always to be in the same dir of my app or a subdir of it. Havent been able to figure it out , anyone knows thanks, Bruno Darn. Writing my own SettingsProvider looks more complicated than what I would like. The end result that I want is that most things would behave the same as if I was using LocalFileSettingsProvider except that the location of the user.config file is differe ...Show All

  • SQL Server Creating an SRS Report

    We've been developing in .NET for some time now, and I'm currently working on a large project which uses a mixture of VB.Net and C#.Net objects. I'm considering the use of SRS instead of Crystal Reports for all the reporting in this system, either way the reporting is fairly straightforward stuff, not really complex reports.  Because the reporting is simplistic, I want to use someone who is not a programmer to develop the reports, I have confidence that she can produce the reports as she has done som Crystal Reports in the past.  However, I cannot figure out how to develop the reports.  It appears that she will need ...Show All

  • Visual C++ template extremly implicit instantiation

    MS VC 7.1++ Here is the code, that using typeof implementation by Bill Gibbons ( http://www.accu-usa.org/2000-05-Main.html  ): [code] #include <ostream> using namespace std; //for typeof template<int N> struct typeof_c; // No definition, only specializations /**/ #define REGISTER_TYPE(N,T) \     template<> struct typeof_c<N> { typedef T RET; }; \   typedef char CharArrayOf ## N ## [ ## N ## ]; \   typedef CharArrayOf ## N *PtrCharArrayOf ## N ## ; \   PtrCharArrayOf ## N typeof_f( T ); \ /**/ #define register_type( n, type ) REGISTER_TYPE( n, type ) /**/ #define t ...Show All

  • Visual Studio Tools for Office Error on Visual Studio Tools for Office "v3" install

    Hi everyone!!! I was really excited with the release of the "v3" June CTP, and i directly go to download it, follow the instructions and then an error raised saying this: "Error 1937.An error occurred during the installation of assembly 'Microsoft.VisualStudio.Tools.Applications.Contract,Version="8.0.0.0",PublicKeyToken="b03f5f7f11d50a3a",Culture="neutral",FileVersion="8.0.50727.146",ProcessorArchitecture="MSIL"'. The signature or catalog could not be verified or is not valid. HRESULT: 0x80131045. " Well, I think: "Maybe the in the download something goes wro ...Show All

  • Visual Basic IDisposable problem

    I'm progressing through Wrox: Professional VB 2005 we're now to the section on IDisposable. Public MustInherit Class Person Implements IDisposable .... Private mPhones As New Hashtable My problem is that the message under IDisposable is class 'Person' must implement 'Sub Dispose' for interface 'System.Idisposable' However I have that Private Overloads Sub Dispose( ByVal disposing As Boolean ) If Not Me .disposed Then If disposing Then ' TODO: put code to dispose managed resources mPhones = Nothing End If ' TODO: put code to free unmanaged resources here E ...Show All

  • .NET Development GAC Confusion Story

    Hi everyone. I created an assembly ( MyLib.dll ) which I successfully added to the GAC. I then wanted to compile a client program against my new GAC assembly. I do not want my assembly to be in the local directory - I want to reside only in the GAC, just like the .NET binaries. My first attempt was to reference the assembly on the csc command line like this: csc /r:MyLib.dll MyClient.cs This gave me the following compiler error: error CS0006: Metadata file 'MyLib.dll' could not be found After a little research I found that I could explicitly specify the full path to the assembly using the "/r:" option like ...Show All

  • Windows Forms Viewing a word doc within a Windows Forms Application

    I would like to display a word document within my windows form application. Currently I am using the IE activeX control and passing it the word doc location. There must be a more elegant solution. Yes there is a lot of code I left out of the post...  I only posted the code relevent to obtaing the underlying DSOFramer.FramerControl of an AxDSOFramer.AxFramerControl. You must have dsoframer.ocx registered.  Try the code below... let&n ...Show All

  • Windows Forms I don t know how to pass variales and text controls values between forms

    Hi, 2 little questions pls: From a form frm1 I call another form frm2. The form frm1 has a text box with a text in it. I don t know how to access that value in frm2. Also I would like to access i frm2 certain vaiables defined in frm1. 2/ What d be the help section in Visual Basic where I ca find such guidelines.   Thanks a lot It actually perfectly resolves the issue dear Jelle. It s the owner a nd not the parent. Thanks for reloving my puzzle. Thanks to all the guys, u re really great, happy new year 2006 , hopefully, with no mistakes when debugging ...Show All

  • .NET Development File System

    Does C# provide anything that allows a file system implimentation that would allow you to hook up to a database on the back end and have windows see it as a filesystem on the front end Thanks, Marty Some thoughts. Sharepoint holds its files in a database. Also WinFS promises to be a relational file system. See http://msdn.microsoft.com/data/ref/winfs/ ...Show All

  • SQL Server MySQL to SQL Server migration

    Hi, I would liked to know the SQL Server equivalent for the below MySQL query : SELECT a.col1, a.col2, max(a.col1) FROM test a, test1 b WHERE a.col2 = b.col2 GROUP BY a.col1 Thanks, Smitha Can you show some sample data and the output for that query in MySQL   I'm not sure how it should behave, given that Col1 is both grouped and in an aggregate function, and Col2 is not even grouped... Very odd... If you can show the input you're using and the output you need, I can help you write a query for it.  Also, please note whether you're using SQL Server 2000 or 2005.   -- Adam Mach ...Show All

©2008 Software Development Network