vb

list view files in .NET

Hello everybody, Can anybody tell how to list view opened files in VB.NET. The opened files should be seen in list view at the left part of GUI. ...

addin to enhance vb6 undo redo funationality

The vb6 has a very basic undo and redo mechanism, stated here: http://msdn.microsoft.com/en-us/library/ee440706(office.12).aspx#CommunityContent i want it to undo changes like if i move a button to some plave and press ctrl z it should come back to its prev place. Can any guide me to a vb6 addin that does this. Appreciate you help ...

Bluehill 2 api help

Hello, I need to make a program that works with Instron Bluehill software. The program is irelevant, I just need help getting access to the Bluehill API. If anyone has ever worked with this software let me know. Thank you ...

How do I access Windows credentials?

(Control Panel\All Control Panel Items\Credential Manager) How would I access Windows credentials from a Visual Basic form? This is not for hacking purposes, simply knowledge and so I can recover my OWN passwords. :) Thanks! ...

Hot make a mouse leave event in vb6 over a image

Hi, I have a image for which i have written code in MouseMove to higlight it. this is being done what i want is to when the mouse leaves image the highlights go away but i cant seem to find any event which will do that. i am working in visual basic 6.0. i have tried the mouseup and down event but they dont match my req. Thanks ...

Not able to click the link on the page using vbscript.

I have an application which has many links but i want to click one out of many, page doesn't have form name, links neither have id nor name, it has only href and src or image name any one of you can tell me how can i click that link by using vbscript, i'm writing this script on simple notpad not using any vb tool, so please help me to co...

How would I open a program within Visual Basic 2010?

How would I open a program within Visual Basic 2010? (Like running "Application.txt" from "C:\" within a Visual Basic project. Public Class getfrom Dim getfrom As String Dim saveto As String Dim download As Boolean Function openRunt() Dim myProcess As New Process() Try ...

DataGridView - how to hide the "new" row?

My DataGridView is read-only - the user cannot enter data into it, so that empty row at the end (the "new" row?) just looks ugly. How can I prevent it from displaying? ...

Timeout.bas equivalent for Visual Basic using Visual Studio 2010

Are there any Timeout.bas equivalents for Visual Basic using Visual Studio 2010 I have this file called timeout.bas that I could add to projects in earlier versions of visual basic that basically let me use the code: Timeout .5 I'm trying to get the same kind of file for Visual Studio 2010 So I can write code such as: Label1.text =...

VB script + how to create delay in VB

hi how to create delay in VB script as sleep command in linux? lidia ...

VB script + OPEN file.html and perfrom "allow blocked content" auto

hi when I open the file.html by MyShell = CreateObject("WScript.Shell") I need also to enable the "allow blocked content" my question is if it possible to do the "allow blocked content" by VB script after VB opened the html page? Lidia ...

Copying a resource file to a directory

Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click SaveFileDialog1.ShowDialog() End Sub Private Sub SaveFileDialog1_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles SaveFileDialog1.FileOk ...

Pressing a button in visual basic

I am new to visual basic and I am just playing around with it. I have a book that tells me how to read from a file but not how to write to the file with a button click. All I have is a button and a textbox named fullNameBox. When I click the button it gives me an unhandled exception error. Here is my code: Public Class Form1 Sub out...

Help with events

I have multiple textboxes which I want them to perform the same thing upon clicking them. By default I can use the handles textbox1.click for 1 single textbox as shown below but I am not sure how to do handle multiples of them. Of course I can write a handler for every single textbox but I have about 50 of them. I am sure there must be a...

MS-Access Cross-Form Support

I'm a .NET / C# software engineer who's been recruited into a temporary job function I'm not thrilled with. My company uses an MS-Access application for many of it's current functions. The Visual Basic version in use for this is (v6.5). The developer that assembled it (who's on vacation overseas at the moment) has a 'login' form that ...

how to do email validation with regular expressin in asp using vb (server side validation)

if u know plz reply ...

how to match textbox value with regular e mail expression for validation inasp using vbscript

if anyone knows plz tel me the answer ...

How to always display a control on the curently active tab of a TabControl?

I have a tab control with two tabs. Both tabs have controls which are unique to them, but there is one control which I would like to always appear on whichever tab is currently active. I figure I just need to add some code to TabControl1_SelectedIndexChanged(). I tried MyControl.Parent = TabControl1.TabPages( ...

MVC in C# coexisting with Webforms in VB. Can it happen?

I have inherited a really awful webforms application that is all kinds of bad--an untestable hairy mess of datasets and Page_Load events. Object oriented? N-tier? Unit tests? source control? All academic niceties to the team that built this mess. It started life as an asp classic app, got mostly ported to VB.NET. Management denied m...

problems while executing a sql command in vb

I have a problem with a sql query. Through the query I am trying to search database for any occurrences of string (can be anything) in a column using the SQL LIKE command. The problem is that it works fine for most of the strings say john, jim, ji"m , but does not work when i include the following characters which are ( ' , { , } , and a...