VS 2008 Make AntiHack Check?
Mar 10, 2010
i was wondering how people make MuOnline Launcher + Antihack check
i will make a demo: User try to use hack for the game and he starts the launcher and if he uses hack the launcher will show him Critical Message that he uses hack (the hack's are in .dll file or inside the launcher) and the button to start the game will be disabled (not active) and if he don't use it he will just play (without to have message you are not using hack have a nice play)
can someone explane me how to make this in launchers ?
View 3 Replies
ADVERTISEMENT
Jun 6, 2009
i am making a software =D (Does the Name matter ??)
Ohk so its gonna be my first try
my last soft was a success with 800+ downloads
so i want my program to check for updates everytime it opens or like when it clicks on a button
then it checks if there are updates then it will show the link to download the new exe file in a messsage box or in a textbox
View 4 Replies
Feb 23, 2010
Okay so i made a small code that my application can check for updates onstart time. The problem is that it freeze up the application. How can i make it work faster.
Try
My.Computer.FileSystem.DeleteFile(My.Application.Info.DirectoryPath.ToString & "" &
"v.txt")
[code].....
View 3 Replies
Jul 5, 2010
Im trying to make a program which would check for users from text file on a certain website I can populate the list box, and loop through it's items here is the code i came up with so far and it doesnt work properly, it pops out first item in the listbox, and last item only, even though that they shouldnt be popped out
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
If Not ListBox1.Items.Count < 2 Then
[code].....
(this is supposed to check every user, and if user doesnt exist, website will return page not found, else user exists and his name is added to listbox2)
View 6 Replies
Nov 14, 2009
I have a chat server / client system running, but I want users to authenticate with my vBulletin forum database.I don't want the client to do it, because it is possible to fake the 'successful login' and connect with a fake username. I want to send the username and password details to the server, and make the server check it with the local vBulletin MySQL database for the username and password.Is there a way to do this? To my knowledge vBulletin has a username and a password entries in the database which is salted, and the salt varies from user to user.
View 7 Replies
Aug 3, 2010
I have a program for school project that has input fields for Name, Address, City, State and Zip. I need to error check so that the fields are not empty.I have used If statements that check to see if the fields are empty and shows a message box if they are but if I leave the whole form empty and click the button that activates it, all the if statements go- one by one instead of pausing for the user to input the required data.How do I check for data and make the program stay there until the data is input? I have tried TRY/CATCH but it won't catch this type of error.
this is the
'This program computes customer's bills at the pizza shop for all combinations of
'crusts, toppings, sizes and discounts
Option Strict On
Public Class PizzaForm
[code].....
View 10 Replies
Mar 11, 2010
Is there any code that will make possible check if the user typed a word i want in order to show him something ? something like , if the user types time , or tim or timing or the word time and transformated to show him up the time ..
View 4 Replies
Mar 6, 2010
How can i allow the user to only check one check box on a CheckedListBox1..I was thinking of using a timer but that might be a stupid thing to do.
View 3 Replies
May 25, 2009
I need to check a value and make sure that it is not a negative number using a try catch statement I keep getting an error saying that I have to use a method.
Try
TotalCurrentBalance < 0
Catch ex As Exception
End Try
I wouldn't put a if statement would I? I am thinking that would defeat the purpose.
View 2 Replies
Oct 10, 2011
Using VB.Net (Windows Application)I am using checkbox in the girdview column, now i want to add a checkbox in the header.If i select the checkbox in the header, all the checkbox in the column should select automatically.
View 4 Replies
Feb 16, 2010
How to make a check proxy function? ive made a change proxy function but i dunno how to check it.
View 3 Replies
Nov 30, 2009
I am making a calculator application that's in beta and will check for updates every so often. What I'm asking is if its possible to make a program check for updates.
View 6 Replies
Jul 14, 2010
I want to make a check box change color when it is checked. In looking for answers it appears there used to be a fill color option in the properties, now in there is just back color and fore color. I am using VB 2008 Express.
View 2 Replies
May 26, 2011
Im using VB.NET 2010 and i want to make antivirus with system tray utility. i have trouble when i want to make tray apps with check box option,, i have tried to use dialog and windows form. but its never work!
View 4 Replies
Jul 13, 2009
im using VB.NET 2010and i want to make antivirus with system tray utility.i have trouble when i want to make tray apps with check box option
View 2 Replies
Sep 3, 2011
got the following code from microsoft online thing...
Imports System
Imports System.Windows
Imports System.Windows.Controls
[code].....
View 5 Replies
May 20, 2010
im slightly new to VB, i was wondering how I make the program check a file for an update, i kknow there is an option in the app settings, but when I go on it it doesnt recognize .vb or .exe files to check from.
If i uploaded updates to a server, how would It check that for updates? and what file type would i need to upload it as?
View 9 Replies
Dec 8, 2010
How i make a button visible or Un Visible using the DataGridView's Checkbox...
View 1 Replies
Mar 23, 2011
I am creating a web browser as a school project. One feature I hope to include involves a splash screen check the state of a Boolean (True/False) at launch and then open the appropriate form. I know that I will need an 'If' statement in the code of a splash screen but I am not sure how I would go about making it do this.
View 4 Replies
Oct 18, 2009
Alright im trying ot make a website login for Gmail to check my email faster Woohoo..Im trying to make a form with 2 textbox's one for pass one for email. Im trying to make it so when the user clicks on the login button on the form it will use the email/pass in the 2 textboxs and then open my build in webbrowser.But if it fails i want it to send back a message saying "Information Incorrect". [code]
View 12 Replies
Jan 18, 2012
I am trying to make a vb.net program which will perform WMI queries to check for remote computer's name and OS. I manage to do the first query of name using the code below..
[Code]...
I am getting error "Local variable 'query' is already declared in the current block. (BC30288)".I understand that I am using same name for the object variable for performing subsequent query. Is there a way in which I can dispose the variable completely and reuse it again for querying the new required WMI detail? My search in the net couldn't give me any clue as of how to clear the variable and use it again. The issue is with two variables "query" and "searcher". Is it only possible that I should give unique names to each query object variable as I might add more queries later on?
View 2 Replies
Nov 20, 2011
If i have datagridview to have 4 columns
First col: Item Id
Second : Stock Id hint: Storage of items which we will enter it
Third : Item Qty hint: Quantity of product Or Item
Fourth : Item Cost hint: Cost of the product
I need function to check of each row and extracted items with the same storage or stock and save it on another table or datatable or dataset any >>>
View 4 Replies
Oct 20, 2011
Is there a way to make a setup package on VB 2010 that will check prerequisite addons on clients PC?
The setup will check if MS Access 2010 Engine and Crystal Reports Runtime 2010 is installed. If the installer detected its already installed it will just install the application.
If one or both prerequisite is not found the installer will install the addon automatically.
View 1 Replies
Feb 3, 2011
I Am working on a sequence checker that will check a list of numbers to make sure they are sequencial? however we now have a new job for a 5 in 1 layout so the serial number i split up over 5 collums and mixed with other data. i can import the data into a data table split by ","'s ?
[Code]....
View 4 Replies
Feb 2, 2012
Vb is not my language of choice , but I have to do this for school and I'm not having a very easy time with VB's documentation.I'm just creating a very simple console application that accepts user input: degrees in Celsius, and converts it into Fahrenheit. I want to make sure that if the user just hits enter without entering the degrees in Celsius, then an if else statement will catch and write to enter Celsius again.Here's what I've tried:
[Code]...
View 1 Replies
Aug 23, 2009
How do i make my button open a program and make it windows size?
View 6 Replies
Dec 14, 2010
Basically I have 10 .png images.They contain a walk cycle I need to make some kind of loop inside a timer to make them change.
View 2 Replies
Aug 25, 2010
Types have their own color (cyan by default).Enter completes the auto-complete suggestion.
View 1 Replies
Aug 23, 2009
How do I make a loop from 1 to 100 and make it everytime it loops display incrementing numbers to the screen?
View 1 Replies
May 19, 2010
Can i make from this image to make it Loading Screen I mean i put this in Form1 [URL] And i want when the program start the progressbar (the white line to load)
View 1 Replies