Giampiero Saracino's Q&A profile
Windows Forms CreateDocumentFromUrl HTMLDocument
When using CreateDocumentFromUrl on the HtmlDocument. Is it then possible to disable popups If not yhen is it possible to use an WebBrowser control without a window(see code below crashing). I can see it works fine if you dont run it in a seperate thread but I want to do it from a thread so what do I the do public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void bu ...Show All
.NET Development Application Security Setting
An application I developed in VB 2005 runs fine on my PC, but it gives an erro when run from another networked PC with message about security... How do I set the security level in my application so that it can run on network PCs without having change any setting on those network PCs Thanks. If your application requires CAS permissions not included in the policy grant for the intranet zone, you have three ...Show All
SQL Server Creating a Job
I am new to SQL Server and have a few questions: 1) We have given our clients the option to create a scheduled job for a future date. When this occurs, the jobID, the new action for the job, and the future date is inserted into a table aptly called 'Scheduling'. What we are hoping SQL Server can do is the following: Query the 'Scheduling' table based on the current date to see if there are any jobs that need their actions updated. If ...Show All
Visual C++ how do I retrieve my own IP address in MFC
in MFC, what function do I need to call to retrieve the IP address that is currently active (e.g. used by internet explorer) Do I get this from the registry thanks in advance! thanks Martin, I suspect some windows application (e.g. internet explorer) already use this, but I'm not sure what function call they use. It seems like when you start internet explorer it ...Show All
Visual C# Blocking ALT+CTRL+DEL in your application!
Hello all How to block ALT+CTRL+DEL or ALT+F4 in your c# application. Thanks for your help. For ALT+F4 you could add the following to your form: protected override void OnKeyDown(KeyEventArgs e) { if (e.KeyCode == Keys.F4 && e.Modifiers == Keys.Alt) e.Handled = true ; base .OnKeyDown (e); } There i ...Show All
.NET Development Register a custom NET Framework Data Provider Library?
If you implement a custom NET Framework Data Provider Library as covered in MSDN, can you register that in some way to make it available for use by the regular GUI tools that show you a list of providers, such as the SSIS ADO.NET Connection Manager or Data Import/Export Wizard It looks like you need to implement a DDEX (Data Designer Extensibility) package. http://blogs.msdn.com/vsdata/archive/2004/11/05/252919.aspx http://ms ...Show All
Smart Device Development please help me for pocket pc deployment
hello. i am given a task to create an application in smart device application and then to deploy the application in to msi or cab files necessarily. i have a 02 pocket pc and i am having some problems in deploying it. i have tried using the emulator and pocket pc win ce emulator . i have ended up in errors. please give me step by step instructions or the most appropriate links . --------------------------------------------------------------- ...Show All
Windows Forms A new "here" keyword
Not a request for any WF feature, actually. More on C#/VB language and VS.NET Intellisense, and there ain't any public channel to suggest to the languages and VS.NET teams. We're all used to using base/MyBase and this/Me keywords in our OO programming&nb ...Show All
Windows Forms OpenFileDialog problem
I have an openfile dialog in my app. I normaly use relative paths. But after I use openfile dialog to get one path and then use Path.GetFullPath(""), it returns path of openfile dialog, not of my prgram. Is there any way how to solve ...Show All
Microsoft ISV Community Center Forums VBA for Excel Query. From Someone New
I am fairly new to programming. I have a worksheet containing various events and a combo box which the users makes a selection from to format the spreadsheet in respect of their paticular activities at the time. This calls a procedure in a module to carry out the reformatting. The problem is that the module dosn't recognise the ComboBox and therefore dosn't work. It is not possible to place the code block into the worksheet as the code can b ...Show All
.NET Development Creating Internet Download Setup in .NET
How can I make an Internet Download Setup for ActiveX controls in .NET Cab projects allow you to create a .cab file to package ActiveX components that can be downloaded from a Web server to a Web browser. Take a look at http://support.microsoft.com/default.aspx scid=kb;en-us;307353 , it describes how to create a Setup package using VS.Net January ...Show All
Visual Studio Start Page and Proxys
How can I make the visual studio 2005 RTM Start page work through an authenticating proxy server I'm not really sure what proxy technology is being used where I work, but it only requires basic authentication (eg: http://username:password@proxy:3128 as the http_proxy/https_proxy environment variables, allows me to run curl commands). I'm kind of baffled as to why the devenv.exe.config defaultProxy fix has no eff ...Show All
Visual Studio Team System Do the source control features of TFS Beta 3 work with VS.NET 2003?
Does the TFS Beta 3 already include a source control provider for use with Visual Studio .NET 2003 or what is the status here Thanks, Neno That's correct. We are working on a MSSCCI provider. We will be releasing a evaluation one for VS6 shortly (within weeks) and one for VS2003 a little later (within a few months). Brian ...Show All
Visual Studio Express Editions Cannot uninstall previous SQL server
During the unistall of the previous version I uninstalled the ASPNET2.0 prior to uninstall the SQL server. I installed VW 2005 beta 2 with ASPNET 2.0 latest version Now + I cannot install the new SLQ server + I cannot either uninstall the existing one which says (The .Net Framework is not installed...) How can I solve this problem Can re-install the previous version of .Net 2.0 Help is needed I too can't unins ...Show All
SQL Server Output of sql commands
Hi, Suppose there are two tables employee and salary and a,b are two instances of tables employee and salary.There are 20 records in each table.Then what will be the result of the following query select a.*, b.* from employee a, salary b. regards arun create table a ( a1 char ( 3 ), a2 char ( 3 )) create table b ( b1 char ( 3 ), b2 char ( 3 )) insert into a values ( 'a11' , 'a12' ) insert i ...Show All
