How To Enable TLS On FTP Upload

Jan 11, 2011

I've created a software where i can upload screenshots instantly from my screen and up to my FTP Server. After a server-maintenance, the FTPserver now require you to have TLS enabled. Is this possible in vb.net? If then, how?

View 1 Replies


ADVERTISEMENT

Allow The User To Enable Or Disable A Textbox By Clicking Either A Button (enable) Or The Reverse?

Jun 19, 2009

I want to allow the user to enable or disable a textbox by clicking either a button (enable) or the reverse. (disable) if the user clicks the enable button the textbox should receive the focus.

View 4 Replies

Visual Basic - Upload Progress Bar For File Upload?

May 11, 2012

i have this code, how do i incorporate a progress bar into it? Private Sub btn_upload_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_upload.Click

[code]...

View 1 Replies

Using Uploadify Or JQuery File Upload For CSV Upload In ASP.NET

Oct 24, 2011

Rather than using a Handler(.ashx), is it possible to use a web service(.asmx) to upload?

View 2 Replies

Enable IE Add-ons For Webbrowser

Mar 11, 2011

I was wondering if it is possible to allow the add-ons that were developed for IE to work with webbrowser control.

I am working on a browser that uses the webbrowser control. I need to add certain features like ad-block to it. I noticed that these features are available as add-ons already for IE. Since webbrowser control is IE-based, I was wondering if it was possible to enable the webbrowser control to access these add-ons?

View 5 Replies

Enable Or Disable LAN?

May 16, 2010

The script is used to enable or disable LAN. I would like to run it from a VB application by integrating it.

View 2 Replies

Enable Registry In An App?

Mar 30, 2009

I have been working on my application for quite a long time, and now that I get to the closing stages I have hit a wall that I cannot quite get over (or work out how to get over ). My problem is that my application needs to be able to; edit registry keys, create them, and eventually delete them. Thats fine I have the code for it. The problem occurs because my app does not have the required security settings. I have been looking at this and came up with an idea

In the my project tab there is a tab called settings and I have enabled custom security with everything ticked but the problem is, is that my application still does not have the required permissions to edit the registry . So my question is... How Can you enable a program to edit the registry?

View 7 Replies

Enable/disable Nic In XP?

Apr 29, 2010

I am writing a small network configuration utility that allows the user to setup proxies and configure their Nic for static/Dhcp etc.My problem is this: I need to force the card to refresh its TCP/IP settings from the system. In Vista and above the Win32_NetworkAdapter enable/disable methods achieve what i want nicely but XP and all win5 systems do not support this.

View 4 Replies

How To Enable Ctrl + S

Mar 12, 2010

I am creating a notepad-like application and I want to enable when the user press Ctrl + S that it will save.I already have the code to make it save through a menu option, but I don't understand how to enable it via Ctrl + S. Can someone guide me in the right direction

View 3 Replies

How To Enable Tab Key In A Richtextbox

Jul 23, 2011

I am crating a text editor, I have a richtextbox named RTB. I want to enable the tab key inside the my RTB. Like in the MS word, when I presses the tab key, the cursor move to five spaces.the problem withe that is that when i presses tab tab key in my program, the focus is going to other controls

View 2 Replies

How To Enable The Grid

Nov 11, 2010

Is it possible to enable the design grid in vb.net?

View 3 Replies

VS 2005 Enable DEP?

Nov 6, 2009

I'm attempting to enable DEP on Windows Server 2003 systems remotely using WMI.

View 1 Replies

Way To Enable Cookies

Sep 26, 2011

[code]...

and When i check thorugh fiddler i got this error

"Your cookies seem to be disabled. Setting preferences will not work until you enable cookies in your browser."

View 2 Replies

Add Refrence That Enable To Program Using MD5

Oct 23, 2009

how can i add the refrence that enable me to programe using MD5 so i can secure my data if any one has sample code or to show me how to use please let me know

View 7 Replies

Automatically Disable And Enable The Usb?

Aug 18, 2009

i have to make a program that could automatically disable and enable the usb..

View 2 Replies

Button Disable And Enable?

Jan 23, 2012

I have a vb.net based windows application, where when "GO" button is clicked a bunch of data is loaded into DB. So in my application as soon as "GO" button is clicked I want to just disable it and would like to enable it back when the uploading has completed.Now in my specific method for btnGo_Click() I have:

btnGo.Enabled = False
as first line and
btnGo.Enabled = True

[code]....

View 4 Replies

Can't Enable Net.tcp Port Sharing

Jul 13, 2011

I'm doing my dev work on a Window 7 x64 machine, deploying to a Windows 2008 x32 server. At the moment I'm adding WCF services to some internal apps so that we can build smaller clients using net.tcp bindings that report to the user what the server is doing without running multiple instances of the server. To cut back on how much administration the apps will require, I tried enabling port sharing on my first server app. I'm using the app to self-host the WCF service so they can be easily moved from one server to another if necessary. Here's the code starting the server:

Dim _service_host As ServiceHost
Dim active_server_address As Uri = New UriBuilder("net.tcp", "localhost", CInt(My.Settings.ServerPort)).Uri

[Code].....

I get the following error when I put a breakpoint at the last line: Unable to automatically step into the server. Connecting to the server machine 'nettcpportsharing' failed. The requested name is valid, but no data of the requested type was found. The Try...Catch block housing that code says the exception type is AddressAlreadyInUseException...but when I run netstat I don't see anything else listening on that address. There's no occurrence of 'nettcpportsharing' anywhere in my solution. I've checked to make sure that the Net.Tcp Port Sharing service is started.

View 1 Replies

Disable / Enable USB Port?

Mar 14, 2011

how to enable or disable USB port of a system with windows-07 or XP

View 3 Replies

Disable And Enable Button?

Jun 6, 2011

How can i disable a button after i click it and shows another form, and enable it after i close the form that was opened.

View 3 Replies

Enable (permanent) DEP In Program?

Sep 27, 2011

I would like to enable (permanent) DEP in my program, does anyone know which line(s) of code I need to insert ?

View 8 Replies

Enable A Button After Clicking Another?

Feb 17, 2010

As the title says how can i enable a button after clicking another?

View 2 Replies

Enable A Button On Another Form?

Nov 4, 2010

I have 4 forms. I have a button on form2 that when pressed, I want it to enable a button on form1.What I've tried is this:

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Form1.Button3.Enabled
End Sub

but its telling me that the property access must assign to the property or use it's value.

View 1 Replies

Enable Effects On SecondaryBuffer?

May 11, 2012

According to this article, to clone a secondaryBuffer you need to disable the EffectCaps.

"Initially, the duplicate buffer will have the same parameters as the original buffer. However, the application can change the parameters of each buffer independently, and each can be played or stopped without affecting the other."

How can i re-enable the EffectCaps on the cloned SecondaryBuffer?

View 7 Replies

Enable Flash In Web Browser

Mar 17, 2010

I've seen that flash works right away on the webbrowser option... BUT, how do I enable it on the tabcontrol option?

View 18 Replies

Enable On BindingNavigator The AddNewItem?

Dec 3, 2011

I'm trying to bind the BindingNavigator to a BindingSource. It works very good, but the problem is the yellow plus icon is disabled. How can I make it enabled?

I created manually with code the dataset, tableadapters and the bindingsource, but when I bind it on the bindingnavigator it shows the records but it doesn't enable "Delete" and "Add Item".

Code from comment:

Dim connstr As String = "Data Source=" + Application.StartupPath + "Prueba.sdf"
Dim conn As New SqlCeConnection(connstr)
Dim cmd As New SqlCeCommand("SELECT * FROM datos", conn)

[Code]....

View 1 Replies

Enable Sub Menus In VB.NET [#00001]?

Sep 2, 2010

I have a problem and that is related to Menus in VB.NET. The problem is as follows: I have created a menu called "Test" and sub menus in that called "Test 1", "Test2","Test 3", "Test 4" and "Test 5".The property "NAME" of these sub menus are "M1","M2", "M3", "M4" and"M5".All these menus are disabled at runtime and in the MDI form, i have called a procedure to get the rights of a user and sore these in a list box in the MDI Form.Assume that the List Box contains "M1" and "M5". I need to activate only these menus.

View 1 Replies

Enable The Richtextbox But Do Not Allow Copying?

Jan 18, 2009

Well i think you guys know when a Richtextbox is Enabled = False then you can not write anything nor Copy the Text inside, well you can change the Text with: Richtextbox1.Text but you cant by writing yourself.

But now my problem is i want the RichTextBox to be enabled but it should not be possible to Copy Text from it.

View 2 Replies

Enable The Screensaver From Within Application?

Aug 11, 2010

I'm trying to enable the screensaver from within my application I found this code on the internet:

Declare Auto Function SendMessage Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal Msg As UInt32, ByVal wParam As UInt32, ByVal lParam As UInt32) As Int32
Const WM_SYSCOMMAND As UInt32 = &h212

[Code]....

But it's giving me an error "Expression expected" on the three Const lines right at the & character.

View 1 Replies

Enable The WPF Button If PropertyChanged?

Nov 30, 2011

I have a textbox and a button. Initially the button should be disabled, but when I change the value in the textbox I want to enable the button. I tried to write a trigger.

<TextBox x:Name="txtCompanyName2">
<Binding Path="CompanyName2" UpdateSourceTrigger="PropertyChanged"/>
</TextBox>

[code]...

View 6 Replies

Enable WCF Data-Encryption?

Apr 23, 2011

How can I enable the encryption of an WCF (Windows Communication Foundation) Service with VB.NET? Is it enough to add a certificate to a service an set <security mode=""> to "TransportWithMessageCredential"? Or is there any other settings needed?

[Code]...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved