I was a little curious on how to make a waypoint system.this is how my waypoint system is set up.I'm using 7 timers and 5labels this is my set up.Is there a better way of doing this such as using less timers and a better movement system.the way i have it set up is that if the label name-"obj" is in the same location as label 1 then timer1.enabled = false and timer2.enabled = true and so on and so on. [code] what this waypoint system is for is for monsters moving along the path.
I am reading the memory from a game and I have managed to find the x,y,z values of the player (z is irrelevant). Now I am trying to make some sort of a waypoint system and I thought it would be best to make a small coordinate based map that will act as a birds-eye view of whats going on ingame. But I don't know where to begin creating this thing, since it needs tons of xyz values.Just throwing this in here since I've already made the thread:I also want a small circle to represent the player that will turn, facing waypoint 1 and move in a straight line towards it.
I'm trying to make a login system on visual basic. I need it to be able to connect to an access database to find the usernames and passwords. I have coded it as follows:
Code:Private Sub btnLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLogin.Click 'Purpose: Make a Connection to the database and fill a Dataset with the Account and AccountTrans records 'Create a memory cell to store the drive letter of the USB drive Dim DriveLetter As Char
i always thought that visual basic is a IDE to develop windows based programs or now windows phone apps but recently i have been seeing many tutorials and videos regarding visual basics and it's ability to make "operating system".i was wondering what is the story with that and is that true that visual basic can develop operating systems?
I make a 2 questions and then 4 choices for each question..and the 4 choices is made up with radiobutton.. and 1 of the 4 choices is only the right answer..Computing of right answer in each question is the thing that I want to know, how to do..
I was wondering if i can get a tutorial (hopefully a vid tut) on how to make a Login System in vb 2008 I wanted it so that i can manage the accounts tho. So if i give my program to someone with the login system and then i make an account on my pc via another program he can login to my program with that account.
here a way in VB2005/2008 to list all the apps in the systray and nothing but them. I can list all the windows by theyre hwnd, but it also shows the taskbar windows and windows not even shown anywhere in windows.So I need to somehow list all the systemtray icons in a listbox.If something's not clear,
I am about to make a simple Raffle Draw System.I can display the random ID's of participants, but what I really wanted to achieve is that the names are the ones to be displayed randomly..
Say when a user click the button, using a timer a certain label will randomly display names of participants from the database and by such time that he stop the timer, the name of the winner will eventually shown.[code]...
i made a program that will make a system restore point for the user but i think its only 50% done. I want to add a feature that will place all of the system restore points in list box and give a user the choice of removing a restore point.
those applications that has a plug-in features. What I meant by plug-in is that the application has a capabilities of integration with 3rd party softwares for enhancements.
I've found article writing about how to make os in vc++. But may I know how to make it in Visual Basic? I know it is not easy to make an operating system. Maybe I just need some more understanding on os or how to make a program that does not need other operating system to host it. If there's videos of article about it, please also recommend it to me.
While looking for a way to program a way to print using a console program one of the suggestions that i received was to use the printdocument class.However, when i try to import the system.drawing.printing
I'm trying to make a login system on visual basic. I need it to be able to connect to an access database to find the usernames and passwords. I have coded it as follows:
Private Sub btnLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLogin.Click 'Purpose: Make a Connection to the database and fill a Dataset with the Account and AccountTrans records 'Create a memory cell to store the drive letter of the USB drive
[code].....
The problem with this is that it says in the error log that an expression is expected and 'cmd' is not declared. The last section of the SELECT statement seems to comment itself out. What can I do to fix this?
anyone can teach me how to make billing system which is server - client.i will put the sql database to one pc then clients - the gui system.i want to run may system from other pc then connect to sql database which in another pc..
currently i doing a sms service system using vb , can anyone tell me how or what code i can use to make the system auto reply when recieve an sms from a phone no
I am trying to Make a Simple Login System using files Dim response As System.Net.HttpWebResponse = request.GetResponse() If response.StatusCode = HttpStatusCode.NotFound Then MsgBox("Invalid Login") Else My Code Here But When I Debug it, and test it, it still gives me the 404 error. and not the popup.
Here is My Code Try Dim response As HttpWebResponse = request.GetResponse() MessageBox.Show("Allgood") Catch ex As WebException [Code] .....
Now I know we can not do a system like the SQL of the...[code]He only opened the database, is there any way to open and use Access database login information for it?I am unfamiliar with this program , someone people can help me?Empty, You can be a example to me !!I just want a can connect to the network database (Access Database) VB programming
Basically Im going to sell software where once the user buys they register on a page, then their credentials gets added to a database, then once they open my program they login and my program checks if there in the database or not so they can advance.
I am looking for the best way to make a plugin type system for themes. have allow users to create custom GDI based controls in a dll plugin that is to be able to be switched on runtime by users. My issue is there is no way to have a dynamic inheritance so how can I make it so the controls show in the toolbox and can be changed on runtime?
I have written a program and everything works fine, but I want to make sure that only the administrator can add or edit users to the system. As I see it, I need to add an argument (if statement) to my login button code to disable the add / edit users button on the main form if the user is not Administrator. [Code] I have tried putting my If statement in but it doesn't happen the button is still active even when I login as admin.
im trying to make an attendance monitoring system using vb.net 2005. i have a little experienced programming, i used vb6. But vb.net is much more different in vb6 because of its codes. my problem is that in dtpicker, it do not accept any value that came from a textbox.
my code is like this
dtpicker1.value = textbox1.text
but an error existed..then i coded like this hoping that it will work