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

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

minton

Member List

Lakusha_
hostile17
Roger Hernandez
Trinix
m.schwandner
Newbie_Reza
Jatin
Mike Q
Josh D
j2associates
charlieucla
oren
Rune Gulbrandsen
MasterG152
mrboldt
ccsfiona
Hardik Raval
holger1
Dev2808
BraBo
Only Title

minton's Q&A profile

  • Visual Basic Create a Progress Bar which follows the file's length copying

    Hi to all, I'm a french developper from south west coast in France. And I 'm creating a progress bar while copying a big file. I'd like to manage the progress bar while the file is being copy, and set it with the current length. I tried to do it with a thread but I don't succeed. And the threads in a form are very annoying, cos it can't use global declaration and get arguments in the thread function. I'm using msdn and visual studio 2005, and the information is not enough, that's why I' m coming here. I'm new on the forum so sorry if my message is not that fine, cos I know some of you like messages be nice and placed at the right place. tha ...Show All

  • Visual C++ deprecated C functions

    When I compile my project in Visual Studio 2005 Express Edition (Beta 2), I get warnings about functions being deprecated.  I added STRSAFE_NO_DEPRECATE and _CRT_SECURE_NO_DEPRECATE to the preprocessor, but I still get all the warnings.  We don't have any one header file that I could use to disable the warning with a pragma, so is there another way to turn off the warnings Thanks, Cari  i don't see how the deprecated string function prototypes can be "left alone" given that wchar.h includes the following: #ifndef _CRT_INSECURE_DEPRECATE #define _CRT_INSECURE_DEPRECATE #endif i have a lot of code that has ...Show All

  • Microsoft ISV Community Center Forums Scroll Events of mouse

    Hi,  i am imtiyaz thange. i am working on excel vba, i have used the combo control of vb on excel application, when the combo conrol is activated during the runtime and when i scroll the mouse the combo control also scrolls, i want that only the combo contents only to be scrolled and not the page to be scrolled when the control is activated Here's the response from one of our support engineers: I repro the problem our buddy meets, but this is a by design behavior. If he must do this, he has to use his own code. He must catch the mouse wheel event first, then let the combo text box scroll. This code mus ...Show All

  • SQL Server Missing Text in Notifications via SMTP

    Hello, We are seeing portions of text missing from our notification emails using NS 2.0 and the built in SMTP delivery protocol. The notification looks fine in the MS notifications table -- no missing text in the field that becomes the email body, so it may be a bug in the xsl transform code where the text disappears. Our xslt is very simple and it has been tested. The field is plain text. We run perhaps thousands of "short" notifications through the system each day with no problems. I can work around the problem by reducing the size of the message from it's original size of 2000 characters to 1600. Nothing in t ...Show All

  • Visual Studio VSS Add-in Missing after Installation

    I have installed Visual Studio 2005 RC1 and VSS 2005 RC1 on a machine that has never had a previous beta.  The VSS add-in is not available from within VS2005.  I did it on another machine and it worked fine.  I also uninstalled and re-installed VSS with no effect.  VSS works fine except that it is not integrated with VS2005. Has anyone seen this problem   How can I install the Add-in manually Thanks, Steve Wright You may need to register ssscc.dll file from VSS folder (regsvr32 ssscc.dll). If that doesn't help, we'll need to know - VS version (Express, Pro, Enterprise, etc) - a dump of HKEY_LOCAL_MACHINE\SOFTW ...Show All

  • Software Development for Windows Vista want to get my hands dirty

    ok so I have Vista build 5253 in a VM , VS2005 Pro, and I want to code up an implementation of the new IPropertyStore interface - plus I also want to play around with all the other new shell interfaces. Q: exactly what PSDK should I be using Q: where can I get it Q: where can I find documentation for all these new shell interfaces TIA You should be able to find documentation for IPropertyStore and other new Vista Shell Ifaces in the latest Windows SDK: http://www.microsoft.com/downloads/details.aspx FamilyId=0A118D5F-21E7-4A3E-82D9-F30C6CE3F63D&displaylang=en NOTE : this SDK release (Nov CTP) only ...Show All

  • Visual C++ Candidate function(s) not accessible strange case

    When trying to call a __gc class static function in an assembly which has CLR and non-CLR types in its signature, I get a Candidate function(s) not accessible error. In an assembly, using /clr:oldSyntax: TSEShared.h -------------- // TSEShared.h #pragma once #include <string> using namespace System; namespace TSEShared { public __gc class Global { public: static std::string ToCppString(System::String *); }; } TSEShared.cpp ---------------- #include "stdafx.h" #include "TSEShared.h" std::string TSEShared::Global::ToCppString(System::String * str) { if (str == 0) { return(std::string()); } System::In ...Show All

  • SQL Server Print using Subscriptions ?

    Hi, Is it possible to set a subscription that will send a report to a printer Regards Ayzan Hi Ayzan, Take a look at the Print Delivery sample for Reporting Services. http://msdn2.microsoft.com/en-us/library/ms160778.aspx ...Show All

  • Visual Basic Pardon my ignorance.. Visual Basic ".NET" ?

    I've been out of the development loop for over 4 years. What is this Visual Basic ".NET" Is it a different version of Visual Basic I've seen Visual Basic 6 and Visual Basic 2005. What is the latest version, and how does Visual Basic ".NET" fit into all of this I didn't see a ".NET" version of VB for sale.. Clearly I'm missing something. Any help or links to more info appreciated! Just when I thought I'd made my decision. Thank you for the tip. I'll check out C#. ...Show All

  • Visual C# Progress Bar

    I have a progress bar whereby it should progress for every graph that is loaded.But upon executing the program, the progress bar will immediately hit 100 % even the graph had not been fully loaded. But my code is written such that the PerformStep is placed after the loading of graph. Please advice. Thanks for ( int i = 1; i <= load_graph; i++) { parent_form.flowLayoutPanel2.Controls.Add( new TrendChart (a , root_source)); parent_form.progressBar1.TabIndex = 0; parent_form.progressBar1.Maximum = 10000; parent_form.progressBar1.Minimum = 1; parent_form.progressBar1.Step = 2500; parent_form.progressBar1.Pe ...Show All

  • Visual Basic Making a program perform tray icon + com tasks in background without service

    I am interested in porting my KeyStater ( http://keystater.berlios.de ) program to .NET (Originaly written in VB4). The main problem I will be getting is not getting the COM object to work but rather making the programs tray icon update even if the program is not in the foreground. The only viable way I could think about doing this is to make the program a service however VB.NET Express doesn't support making a service and since I am writing the installer using AutoIt I don't know the required command to make the service. Is there a way I can always get the tray icon to update even if it is not in the foreground without making a service I ...Show All

  • Smart Device Development Multiple CAB files in one ini?

    Hi All, I have develop Pocket PC Application which is running perfectly from my development PC using iPAQ PDA. Now, I need to install my apps on the iPAQ PDA. Anyone can help n guide me step by step on how to create .cab files, .inf files ,.msi files (package n deploy app) and also how to install .Net Compact Framework and SQL CE on the PDA. I'm using : - - VS Net 2003 - .Net Compact Framework 1.0 - Windows Mobile 2003 Version 4.21.1088 - ActiveSync 3.8 Thank you Please see links below: http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnnetcomp/html/deploy_cf2_ap ...Show All

  • Windows Forms fancy code generation

    Hi all, I was wondering if it is possible by using an appropriate custom CodeDomSerializer to generate code outside of the InitializeComponent() method. All the examples I've seen generate a few additional statements inside this method.  But, for instance can I add another instance variable to the form/control   Or add a new method  thanks, Bert Some of  ...Show All

  • Windows Forms How to persist changes to DataGridView?

    This is a newbie question.  1. I'm using .NET C# Express 2005, Beta 2 2. I created a new reference to an access (cust.mdb), to an customer table in     my (new) sample project. 3. I added a datagridview component to a main form.  For the datasource,    I pointed to the custoemr table. 4. My [Design] view surface shows        a. custDataSet       b. customerBindingSource       c. customerTableAdapter       d. Form1 with a dataGridView1 5. When I run the example, I get my data just fine from the ...Show All

  • Windows Forms How do I make a spell check...?

    Hey, I searched for this, but none helped... I am using Visual Basic 2005 express, and I need a spell check, but I can't figure out how to do this, if someone finds/knows a program that will let you put the words in it and it will give me the VB2005 express code thats fine, but if you want to give me code...I would be fine getting a 3 word spell check so I can go from there...ummm..I dont really want to use the MS Word spell check, k Thanks Check these articles at codeproject: Spellcheck.net NetSpell - Spell Checker for .NET ...Show All

©2008 Software Development Network