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. ...
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. ...
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 ...
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 ...
(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! ...
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 ...
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? (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 ...
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? ...
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 =...
hi how to create delay in VB script as sleep command in linux? lidia ...
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 ...
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 ...
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...
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...
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 ...
if u know plz reply ...
if anyone knows plz tel me the answer ...
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( ...
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...
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...