Get Rid Of Message When Users Run App?
Jun 22, 2010
When users run my vb2008 executable they get the windows security message "The published could not be published. Are you sure you want to run this software?"
Is there any way to get rid of this message when users run my app? Or do individual users need to change their security settings?
View 1 Replies
ADVERTISEMENT
Oct 16, 2010
net ,vb. I want to deny users who have not logged in with a message" you have to login to access this page".
View 1 Replies
May 2, 2011
I am trying to figure a way to send my users a message if they have 2 or more websites with the same URL open(These are web tabs in one IE window). Is this possible?
View 4 Replies
Apr 15, 2009
I have a vb.net (VS 2005) application which downloads files from my webserver and shows its contents to user. And I make files at my end and upload files to webserver so that the application and download & process it. This happens at fixed intervals. Now I intent to send an instant alert (or message) to users who are using that application. For example: If I type a message and send "Hello everyone" then all those people who are currently using that product should get a popup with this message. My webserver is a hosted on a unix based system. It enables me to show html content and post files & stuff online.
[Code]...
View 3 Replies
Mar 21, 2011
I have two masked text boxes that holds Phone Numbers and Zip Codes.Since they are Masked text boxes and are set not to allow characters or letters, the user must enter numbers.However, how do I add a message telling the user to enter number and zip code since there is no prompt?I don't need to validate the numbers just to add an error message if it's left empty.
View 9 Replies
Feb 9, 2010
I have an asp.net web app that uses forms-based authentication, a SqlMembershipProvider (using an encrypted password format), and a SqlRoleProvider. I need to know if it's possible to administer the users (create new users, assign them to roles, etc.) from a windows application - the powers that be don't want any administrative functionality in the web app itself.Here is the membership provider definition from web.config:
<membership defaultProvider="MyProvider">
<providers>
<add name="MyProvider"
[code].....
View 3 Replies
Dec 29, 2010
I've got a code using SQLClient that loops though all users in a Users table inside each loop i want to preform another search in the UserOrders table, thus doing a count of all orders.
I get this error
HTML
There is already an open DataReader associated with this Command which must be closed first.
Here is my code
vb.net UserLists.Items.Clear()
Dim connection As New SqlClient.SqlConnection(My.Settings.ConnectString)
Dim command As New SqlClient.SqlCommand("SELECT * FROM Users ORDER BY PersonName",
[CODE]...
View 3 Replies
Apr 3, 2012
1.I�d like to publish a free vb.net desktop application for the users to download and use meanwhile I�d like to collect usage information ex: user ip address, user�s registration information, used features, time spent� if the user allows the report to be sent back.
2.Also , in order for the user to be able to use the application, he�ll have to register it then, everytime, before the application loads, it gets verified online that it was registered, maybe validate the registration information or a valid user name and password, no critical personal information. The target of this step is for the application to be used exclusively by the registered user and maybe on his computer only.
View 2 Replies
Apr 4, 2012
1. I�d like to publish a free vb.net desktop application for the users to download and use meanwhile I�d like to collect usage information ex: user ip address, user�s registration information, used features, time spent� if the user allows the report to be sent back. 2. Also , in order for the user to be able to use the application, he�ll have to register it then, everytime, before the application loads, it gets verified online that it was registered, maybe validate the registration information or a valid user name and password, no critical personal information. The target of this step is for the application to be used exclusively by the registered user and maybe on his computer only. Any alternative way to achive the target is just fine.
View 1 Replies
Jun 10, 2008
I cannot figure out how to get this call to work.I have searched EVERYWHERE.MSDN is no help at all and the only thing I can find is this vb6 code that doesn't work in .net.I tried to convert it over but I've had no luck.Specifically I'm trying to get the path of the "All Users" Desktop and the "All Users" Start Menu.It would rock if anyone could help me out with this one.
View 5 Replies
Jan 6, 2010
create a message box that stores my user name, message, and post datetime into the database as messages are sent. Soon came to realise, what if the user changed his name? So I decided to use the user id (icn) to identify the message poster instead. However, my chunk of codes keep giving me the same error. Says that there are no rows in the dataset.
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim name As String
Dim icn As String
Dim message As String
[code]....
View 7 Replies
Feb 22, 2009
how to create an error message by message box to tell the user to enter a number only if they key in a character value?
I MEAN AFTER THEY PRESS THE CALCULATE BUTTON
Private Sub btnCalcFat_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalcFat.Click
Dim intFat As Integer
intFat = Integer.Parse(txtFat.Text)
lblResultDisplay.Text = txtFat.Text * 9
End Sub
My text box is call txtFat
View 3 Replies
Dec 13, 2010
just curious if there was a way to make the text in a message box scroll across the message box
View 1 Replies
Nov 16, 2009
I am using Visual Studio 2005 for coding. I am doing an exercise where I have to create a data lookup program. The program is to illustrate the concepts of using a database to look up information based on user input. The program allows a user to input two search criteria for a product search. The program then displays each individual search result, or record that meets the search criteria in a message box. I am not getting the message box and I don't know why. No errors are present during compiling so I have no indication as to where the problem is.
Option Strict On
Imports System.Data.OleDb
Public Class Form1
[Code]....
View 4 Replies
Oct 28, 2009
I am sending a DDE message to a client using System.Text.Encoding.ASCII.GetBytes(item) . However, before the message is actually sent, I would like to get the message coded where if the item="Ask" then item=Ask (string variable) and so on. The code is:
Protected Overrides Function OnRequest(ByVal conversation As DdeConversation, ByVal item As String, ByVal format As Integer) As RequestResult
' Return data to the client only if the format is CF_TEXT
[code]....
View 3 Replies
Oct 24, 2010
Don't know how to get "Textbox1.text" to go into the message area of Xbox Compose Message.
View 7 Replies
Aug 11, 2011
I am getting the error Parser Error Message: The server tag is not well formed. on the code line below:
<asp:HyperLink ID="imgFileType" ImageUrl="images/Icon_Pdf.gif" NavigateUrl='<%#"javascript:ViewFile('erg_", Eval("DocumentName") %>' runat="server"></asp:HyperLink>
I need the url link to be parsed as:
javascript:ViewFile('erg_Invoice_3200_QRG_Restaurant.pdf');
What am I missing in the syntax?
View 1 Replies
Feb 18, 2010
I want to log the ip's of the users that use my vb.net program.
First of all, is this legal?
If it is, how can i log the ip's in a textfile on a webserver?
Im thinking about a small non-visible webbrowser that sends the ip to a .txt file.
View 2 Replies
Oct 24, 2010
I am wanting to get the users IP address (the logged in user will be running the application under there user context on there local PC), but many PC's in our environment have multiple NIC's that have been added by VMWare Workstation, I would like to exclude these type of bridged connections and only show the "primary" NIC on the PC.The following function will get the IPv4 address, however on my test PC it is returning the bridged connection and not the IP Address of the network facing NIC.
Shared Function GetIP(ByVal computerName As String) As String
'Dim ipEntry As IPHostEntry = Dns.GetHostEntry(computerName)
'Dim tmpAddr As IPAddress() = ipEntry.AddressList
[code]....
My users have a mixture of DHCP and static addresses so cannot limit the NIC to either of these connection types. We tend to have a 172.16.x.x IP range, so is there a way to modify the above function so that it will only return a 172.16.x.x address?
View 2 Replies
Jun 12, 2009
My form's KeyPreview is set to True. I want to allow my users to use the Enter Key instead of just the Tab key. I have the following code in my form's KeyPress event:
Private Sub frmDesigner_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
If e.KeyChar = vbkeyreturn Then
[Code]....
It doesn't like vbkeyreturn, which I used in Visual Basic 6.0. I think I must be close to having it right.
View 3 Replies
Nov 19, 2011
I'm attempting to make a system that stores employees details...name address etc. I would like the users to be able to log on, see and change their own details only. Is this possible is asp.net and if so how? I'm really new at this so if you could keep answers as simple as possible.
View 2 Replies
Mar 18, 2011
i am trying to get all the users under a tree from AD with the following code:
Code:
Dim RootEntry As New DirectoryEntry("LDAP://OU=Mayor,OU=IS,OU=Users,DC=*******gatn,dc=gov", "myusername", "mypassword")
[Code].....
View 2 Replies
Mar 27, 2010
i am trying to get a list of domains' and users' name on a computer so that users can select to run a program in other identity, but I can only find the current user and I can't find any post about getting these. Is there any post or any Identity classes that can help me to get all users and domains?
View 3 Replies
Aug 13, 2010
How can I get all 'local' users of windows ?I know how to get the currently logged in username, but don't know how to get a list of all the users.
View 2 Replies
Sep 16, 2009
I'm writing a program in vb.net that automatically creates users from a database.It works fine, as long as there is no comma or there are no two spaces in the CN.
I am using the WinNT interface, so in fact it creates a SamAccountName and copies it automatically to the CN.When I create the entry manually in AD, I can add comma's and spaces without problems, so it should be a programming error.
[Code]...
View 3 Replies
Jun 8, 2011
My friend s doing an online project...He wants to know how many users(REGISTERED) are LOGGED-IN CURRENTLY in his site...i.e if i'm ADMINISTRATOR of this DANIWEB, i want to know the USERS CURRENTLY LOGGED-IN...
View 4 Replies
Jan 3, 2009
How to switch from users A to user B in visual basic? User A should not log off.
View 3 Replies
Jul 17, 2009
How do I register a vb program dll for all the users of a machine? I have admin rights and have tried to register the dll using regsvr32 . Its get registered and is functioning only for my user id. If some one without admin rights come and login then it is not working.
View 1 Replies
Jan 30, 2009
All I need to do is only allow the users to add new records, I am not using a datagrid rather a details form (i.e. individual text boxes etc...).
I do not want the users to be able to view current records or edit them. If I just used plain text boxes then that obviously would be simple but I've already designed my rather detailed forms using the data objects (so taking the fields straight from the Data Sources mainly because it saves me writing the connection strings and stuff.
Hope this is possible without going back to using normal text boxes and writing the connection string out my self, only because that's a long way back to go right now.
View 5 Replies
Aug 21, 2010
A temporary directory available for all users?
View 2 Replies