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

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

Honestas

Member List

informass
JustinDyer
Vivek Mohan
Winfried Peter
krypton355
msJen
CarrieE.Wells
Mazen Nahdi
JFlash25141
HScottBuck
Durgappa
MikeC01
Limb
mel001212100121
Nirupam
Jan tje
Chris Vega
pp11oo22
gregston roberts
shnacooti
Only Title

Honestas's Q&A profile

  • Visual Basic Can't open certificate store after After vs2005 installation.

    I have client app (VB6). My client app open local store and work with user certificates, using capicom. after vs2005 installation, the app failed to open the local store. What did they change Why can't I open local store   Answer: fixed by the first SP for 2.0 after installing visual studio 2005 you have to re register the capicom.dll. go run option and register as "regsvr32 c:\capicom\capico ...Show All

  • SQL Server Regular Expressions in SQL Server 2005

    Hi- Someone posted on a thread that you can use VB (or C#) to write Regular Expressions for SQL Server 2005. I know how to write RegEx in VB, so can someone point me to a reference which explains how to use them in / with SQL2005 Or, can someone explain how Thanks, -David Thanks for the links. I've been using regex in my VBA project, and MS seems to have done a pretty decent job implementing it. I'm ...Show All

  • Windows Forms Webbrowser Control Memory Management Question

    I have a C# application that uses the webbrowser control. I've noticed that as I load more web pages through the webbrowser control my program continues to consume more and more memory. (It starts at 9MB and quickly climbs to 40MB by simply loading web pages.) My question is really two part: Q1: What is the reason for this compounding memory comsumption Web cache, memory leak, ... Q2: Is there some sort of garbage collection I should be ma ...Show All

  • Visual Studio NDoc project after a MSBuild

    I want to create a Task that will generate a dynamic NDoc project file from the output of a build from a Team System Build.   I need a list of all documentation (.xml) files along with he assemblies for each project in the build.   I know that @(DocFileItem) will have the xml files.    I need is a list of assemblies.   I don’t know where that is.   I also need to know how to resolve the relative paths to absolute p ...Show All

  • .NET Development filesystem.getfiles

    hello, does anyone know any way to speed up the listing of files in vb.net 2005 This is the code i want to speed up: for i=1 to my.computer.filesystem.getfiles(path).count listbox1.items.add(my.computer.filesystem.getfileinfo( my.computer.filesystem.getfiles(path).item(i-1)).name) Next The problem is even if I use a backgroundworker it takes too long to get all the files in a directory if there's a mass amount of data (eg: 2000-3000 fil ...Show All

  • Windows Forms No touch deployment question

    I'm trying an example of no touch deployment.  I'm building a form that does nothing, just shows and has click buttons, I created a folder in my inetpub/wroot called NoTouch test.  I'm buiding the output of my form to this folder. The prob ...Show All

  • Visual Basic Returning all results

    When my datareader reads it only sends back the first name of the first person in my SQL table.....How do i get it to return all the names in the FirstName colums to my items in my ListBox1.Items.Add(dr.Item("FirstName")).ToString......thanks 4 the help!! Dim cnString As String = System.Configuration.ConfigurationSettings.AppSettings("connstring") Dim cn As SqlConnection = New SqlConnection ...Show All

  • Visual C++ mfc redistributables

    does the merge module for mfc have to contain all those dlls The size of my installer jumped 2x with the new merge modules. The crt seems to be in the prerequisite list but the mfcdlls aren't They contain Unicode/non-Unicode/managed versions of the DLL.  The easiest way to reduce this size to do the following: 1) Don't use the merge modules at all 2) Copy these two folders from \Program Files\Mic ...Show All

  • Visual Studio Team System Edit Existing Build to Run Tests

    How do I do this   I setup a build initially with no tests.  Now I want to run tests. How can I modify the initial proj file to include the tests Wow! we posted two completely different answers at almost the same time. I guess you just needed the XML details. ...Show All

  • Visual FoxPro Bug in VFP 9? Adding an object to an array with AddObject.

    We have this base class that basically implements a collection (I know there are collections in VFP, but we can't change this overnight). Part of the process is to add an object to an array. This code word flawlessly on VFP6 for years. this.ItemCount = this.ItemCount + 1 Dimension this.Item[this.ItemCount] Local cItemPlace cItemPlace = "Item[" + LTrim(Str(this.ItemCount)) + "]" this.AddObject(cItemPlace, this.ItemClassName, &tInitParame ...Show All

  • .NET Development Typed datasets with multiple database vendors (or not)

    As I post this so that others might benefit too, I'm hoping to hear from wise ADO/database people in general, but in particular from the ADO.NET program manager. I'm writing a new application using C# and ADO 2.0, and am getting lost in all the possible options from this list: using typed datasets (or not) using PK constraints in my datasets (or not) using FK constraints in my datasets (or not) getting PK/FK into my datasets using the Dat ...Show All

  • Windows Forms DataGridView with sortable BindingList cannot sort descending

    I'm trying to display a list of business objects in a DataGridView (WinForms). The DataGridView should be sortable by clicking on the column header. How to do this is described in the article "Custom Data Binding, Part 2" at " http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnforms/html/winforms02182005.asp " However, it does not seem to work with VS 2005 Professional (RTM). The sample code in the article is probably pre-b ...Show All

  • Visual Studio 2008 (Pre-release) UNIDRV.Dll

    i'm in a big big probelm i need to install my printer which is hp dekjest 3420 but every time i try to do so i got a wrong message that 'UNIDRV.DLL" is missing i need a fast reply or how can i download these file notice : i don't have the windows xp pack 2 CD plz reply fastly Cool WPF problem… ;-) Here you get such a UNIDRV.Dll http://www.dll-files.com/dllindex/dll-files.shtml unidrv Mayb ...Show All

  • Visual C++ how to format a two or one digits number in a two char string?

    Ok, maybe this is a very stupid question but wich is the cleanest way to convert an int to a System::String with always at least 2 chars... Now, I do this: String* convertTo2CharString(int num){ if(num<10)   return String::Concat(S"0", Convert::ToString(int)); else   return Convert::ToString(int); } I suppose that with the String::Format, I can do it with one line of code but I don't know how. Tnx. ...Show All

  • Visual C# No-parameter struct constructors & hiding virtual methods

    1. Why do structs have a default no-parameter constructor that cannot be overridden What's the harm in overriding a struct's default constructor 2. Why would you want to hide a method by marking it "new" if it's been marked "virtual" in a base class Isn't the feature anti-OOP Why isn't NOT overriding a virtual method treated as a warning and not a lapse in judgement        >1. W ...Show All

©2008 Software Development Network

powered by phorum