It looks like Vista is not allowing to write a file to the program folder of an application without admin rights. But for my application "OFB" Users have to...
I have written a VB. NET program that will have to be deployed to many workstations at our hospital. I am a little concerned that someone might try to view the...
You should comiple the program and keep executable file on your workstations. So no there wont be any problem of viewing code. If you have some text...
Hi All,  Please tell me solution for my problem.  I have an application whoes exe is kept on a server in Lan. Setup is installed on all clients machines....
Yes you can, just change the Code Access Security Policy on each client to allow your application to access the protected resources of the local computer. ...
My strategy: Install the complete program in each client, and a reference to the only one DB on them, e.g. in the DBs put a table called "Ubication". U will...
Hiya Anybody can tell me if I may add a graphic in a Crystal Report (ver. 8 developer & VB6) , and change that graphic in the command line, pointing the...
I'm trying to find information or source code to make an https server ocx. I haven't had much luck finding anything for a server side app yet, but it's what my...
Hi, guys. Is there a way to read the address of an open web page from a vb.net program? I know how to read text boxes data, but not the address, does somebody...
I made a web application through VB & ASP .NET contains dropDownList Box & DataGrid, DataGrid must be filled with Products when I select Any item from...
You can try to use HTTP Request From: VisualBasic_Official@yahoogroups.com [mailto:VisualBasic_Official@yahoogroups.com] On Behalf Of rafcardenas Sent:...
Hi, I couldn't find the answer in messages so here it goes: using vb6 I have a program that has the user enter his password in a textbox and then pushes a...
As per the behaviour,if datagrid is not displayed if data is not filled in datagrid . check with our code once again.if data is filled in page_load event then...
Hi guys, I have to develop one website using .net & sql server. I use vb.net as a back end language. Now in my website I have to place credit card payment...
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Button1.Top = 1 Button2.Top = 151 'MsgBox(Button1.Top) ...
Actually, If you want to test if the buttons collide, then something on the order of the following will be required. If (Button1.top > button2.top) and ...
Status : Beginner Software : VC2005 I need ur help to solve my vb.net project. Now my project is to read pmf file - arcgis file. about mapping. so database is...
I have written a program in vb6 it is sort of a learn as you go experience while I try to learn vb6 on my own. Anyway I would like to be able to disable the...
hi....i think you can write code in password textbox keyperss event.. you just check the keyascii value of the enter key.. if keyascii=13 then call cmdenter() ...
Hi all.. Am using vb.net2003.i want to display the datagrig cursor position to the last row or the row which was edited last... any one give me the solution......
Hi, I'm going to explain my probleme I wish you can help me. For my training course, I must carry out an application under VISUAL BASIC STUDIO 2008. This...
Hi,      I'm going to explain my probleme I wish you can help me.   For my training course, I must carry out an application under VISUAL BASIC STUDIO...
... From: clutch <clutch776@...> Subject: [Visual Basic] code for close button To: VisualBasic_Official@yahoogroups.com Date: Thursday, July 31, 2008,...
Write code in the unload or query_unload event of the form. Using boolean logic, you get to decide when the form will actually unload. This is the simplest. A...