File Verification Glitch, And It Was Working Last Night
Mar 20, 2012
I am just down right confused right now... I made a slight modification to my games saving system, and it worked before this modification... I only changed "one" thing in the saving and loading of the save file system.
now it went from working when trying to verify the save data, to throwing this error when I enter the username of "test" and the password of "test...
there is not a save file for that combination of data, and prior to the save/load system edits, it would realize that, and throw a message box error that I made for that senario... but now, it does this when trying to load the human class. that save file that it is trying to load and verify that does not exist is supposed to be "test the human"
"Could not find a part of the path 'F:\Ashes of Redemption\Ashes Of Redemption(01-02-2012)\Ashes Of Redemption\bin\Debug100 the 250\100 the 250.txt'."
it is supposed to throw my message box stating that there is no file in that combination, and the edits that I made only write a description of what each line of code is in the game... I had also made a variable called "nulldata" that takes those lines of text, and keeps them out of the games loaded data, so for each string of text that I added, it is basically rendered useless upon the save file being loaded...if you enter valid save information, then it loads just fine... so I am just plain confused right now.
the NEW save function'[code...]
now I am going to root around in my code now to see if I cant figure out by chance what is going on here.
View 1 Replies
ADVERTISEMENT
Dec 15, 2011
I am new to the forum I have been working on a GUI to export verification data to a text file. I have it set up to work at home but I would like to adapt the code so that it will write the text file to the directory that I use at work also. I have the areas commented out where things that I have attempted do not work. Here is what I have for code:
[Code]...
View 1 Replies
Feb 23, 2010
i can get this program to read the file but i now want to be able to call on the file from another form and use specific pieces of data for login verification and balance handling purposes.
[code..]
above is the contents of my txtfile but how do i reference anything in it?
[code...]
View 4 Replies
Jun 20, 2011
To make this simple i have a multiple forms. On form 1 is a picturebox whose image property is set through a series of case statements as follows:
If (MyImage IsNot Nothing) Then
MyImage.Dispose()
End If
Select Case cnt_ACerv
[Code]...
The issue is that whenever i navigate away from this form and then back to it the picturebox is glitched and will only appear as a white box with a red X through it. Im sure there is something simple i am missing or a refresh that needs to be done but at this point i am unaware of what to look for. I have checked the variables inside my case statements before i navigate away and after i navigate back and they appear to be correct at both points.
View 9 Replies
Nov 12, 2009
I have a backgroundworker that populates a dataset. My datagridview is bound to the dataset, and the datagridview refreshes once the bgworker is completed. Even after a refresh, the vertical scrollbar is missing, and clicking anywhere on the dgv does nothing. If I stretch the rightmost column to the right, the scrollbar appears and everything operates correctly.
View 5 Replies
Mar 22, 2012
This code block of a larger program uses ms office xp spell checker. It works except, after running spell checker it brings up the word screen for a few seconds then it resumes vb session. Is there a way to not have this happen. It happens right after clicking
CHANGE in the spell checker dialog box that comes up (ms words spell checkr).
Imports Microsoft.Office.Interop
Public Class frmEditor
Dim wordObj As Word.Application
[code]....
View 5 Replies
Dec 30, 2008
The program consists of a datagridview with data loaded from our sql server.Once in a great while, the up and down arrows on the scroll bar will be blanked out and I am not able to click on them. When I try scrolling using the scroll bar, the datagridview is resized instead of scrolling.
NOTE: This isn't a program I wrote, just one that I'm using. It was developed with VB 2005 Express, framework 2.0.
View 2 Replies
May 25, 2009
Maybe it's a simple quiestion but i realy don't know how to solve it... i've searched on google bu i did not find any clue how can i check the MaskedTextBox..I have put the mask "##/##/####" (to serve as a date input) and i dont know how can i check this do not be empty... i have tried "__/__/____" and also " / / " and "##/##/####" but nothings working.
View 4 Replies
Aug 8, 2009
i create project using VB6 when i try to drag cantrol in my form it give me error (Cannot load verification module) the control is " fplivx activeX control module "
[URL]
View 4 Replies
Mar 3, 2010
i have been trying to register VB08 express for over an hour and have not recieved the verification email yet. has this happened to anyone yet? I tried multiple email addresses, checked junk folder...refreshed, sign out...etc.
View 2 Replies
Jan 17, 2012
I have an VB.net Login Module and what I want to do in this module is to know whether the account being logged in is being used or it's online. Ex:
If I logged in then it will say "User is already logged in" etc etc. I am using MS SQL server 2008 r2 for may database.
Imports System.Data
Imports System.Data.SqlClient
Public Class Login
Public sstatus As String
Private Sub GlassButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GlassButton1.Click
[Code] .....
View 4 Replies
Feb 1, 2011
I'm new with VB programming and would like to know if anyone can look/test this code I have written. I don't have the ability to test right now because I'm at work and can't get VB installed on my desktop. This program is supposed to display the amount of gross pay for employees based on their weekly sales (if $5000 or more times 9% + $200) while using a one dimensional array.
View 2 Replies
Jan 17, 2009
My project requires users to be 18+. I have supplied a textbox for birthdate entry, but I don't know if that's the best way. Also, I don't know how to format it so that it only accepts date entry.
Next is the calculation part... yikes.
today - bithday = age
Code:
Private Sub Birthday_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Birthday.TextChanged
End Sub
View 19 Replies
Sep 6, 2010
Lets say I have function returns an object and that object has 10 properties. for example
myStudent.ID
myStudent.Name
myStudent.Surname
[code].....
View 10 Replies
Apr 20, 2009
Is there anyway to make a program that auto detect the verification code ..like when sign up for a site..because i want to make a program like roboforum.
View 11 Replies
May 11, 2009
How can I set a verification that something is checked in a set of radio buttons within a group box? So... groupbox1 has rad1, rad2, rad3. I want to verify that at least one of them is checked. I was going to do a select case, but I can't figure the syntax for the cases... Visual Studio 2008, btw
View 12 Replies
Jul 16, 2010
I'm looking to sell some Applications i have made. What's the best way i can protect my applications from being spread around easily? I know there's no Sure-fire way of protecting my App.. but there must be a good program or something that will give me a helping hand.
View 1 Replies
Feb 2, 2012
I just joined because I'm a newb/student in VB. Currently taking a VB course but just don't understand why this is giving me a problem. If anyone can explain/help it would be great. The problem lies with the "red" 1 that is highlighted. I don't understand what is wrong with it. PS: this is statement applies to the LUHN method for credit card verification.
[Code]...
View 5 Replies
Apr 1, 2009
I am writing a program that and like to implement data verification system. It needs to return a unique string for any value entered. My question boils down to: is it possible for an AES function to return the same value for two different entries? The source values will becoming from data held on a magnetic stripe card.
more details
I posted this through my phone originally, and I am now just getting back to this post.
I've been looking around the web and while reading Wikipedia's article on SHA, I see that SHA-2 (SHA-256/224, SHA-512/384) have no detected collisions (assuming the article is accurate/up-to-date). This is desirable. Any recommendations on what version of SHA-2 I should use?
View 5 Replies
Aug 24, 2009
I'm about to make verification code to my app it would be built out of random characters and numbers,i have no problem making a custom one,but before i go and do it i just wanted to ask if there is built in method of such thing .NET environment
View 3 Replies
Dec 9, 2009
How do I create a Login Verification routine (Login Form) in vb.net . i have an windows application with login form contain user name , password , ok button and cancel button .
as this one:
Imports System.Data.OleDb
Public Class LoginForm1
' OK button
[Code].....
but i want to run my application from desktop and will get confirmation if the user name and password correct by checking them in MS Access Database in the server.
so the the application in the desktop and the tabel of user name and password in the server.
View 12 Replies
Apr 11, 2009
How do I create a Login Verification routine (Login Form) and make the password case sensitive?Please remember to mark the replies as answers if they help and unmark them if they provide no help.
View 3 Replies
Jan 25, 2011
i have aa bb cc i need aa bb cc
View 2 Replies
Mar 11, 2012
I just complete my assignment, everything work perfect on my computer. but when I copy this EXE to run on other computer I got an error
"XXX.exe has stopped working?? "
this project has no any dll file. I use only import System.Data.Oledb
View 4 Replies
Mar 5, 2012
I created a Windows Form in Visual Basic. I have the following code in my app. But its not working.
Try
Dim theUri As Uri = New Uri("http://myhostname.com/files/myfile.txt")
My.Computer.Network.UploadFile("F:TestFilesmyfile.txt", theUri, "myname", "mypassword",
[code].....
View 6 Replies
Jun 21, 2010
However I am trying to get my program into one little file. And I read how to Build Project and go to inRelease and get it from there. However it says this once I actually move it from its other files
Quote:
"*Program Name* has encountered a problem and needs to close. We are sorry for the inconvenience."
I get that as soon as I load it up. If there is any way at all to get it one simple file rather then like 3,4 files it would be so great.
View 6 Replies
Nov 1, 2011
I am trying to solve a mystery in VB 2010. I tried to look up in many places for the code or an example but every thing I have found was outdated. So, all I need is a code which will produce a file list of my ftp server/folder which will be transfered to ListBox object. Here is another thing. Everything I need in the ListBox is only a file name and its extention:[code]
View 10 Replies
Oct 23, 2010
I am trying to call a batch file from my program. It opens the file but the file doesn't work. This requires a little knowledge of java.
method one:
Code:
Dim odlg As New OpenFileDialog
odlg.InitialDirectory = path
odlg.Filter = ("Batch Files (*bat)|")
[code]....
Both of these make the batch file appear but somehow it isn't opened correctly or something. The two batch files are in the resources of my project. They get copied to a folder and that directory is named "path" which appears in the code above. Then I try to call the file from that folder with the directory being called "pathComp" which also appears in the code above. This batch file is meant to compile the java files created in a folder by the program by using the command "javac". Now when I run the program and get to this point and the batch window opens the cmd window says this:
Quote:
javac: invalid flag: *java
Usage: javac <options> <source files> use -help for a list of possible options
[code]....
It doesn't compile the files, however when I run the batch file independently of the program it works fine. I really need some help on this one. If you need it here is the code for the batch file that is called:
Code:
@echo off
title Java Compiler
:start
[code]....
View 4 Replies
Apr 19, 2009
I just saw in some wordpress plugins, there are auto tag plugin, auto RSS fetch, just you install the plugin and it keep working for ever without calling it.What i want to do is to put a dll file inside my Images folder and it will monitor the uploaded files and edit them based on some options, i want this dll to work automatically just when uploaded in the right folder, and keep running forever This can be done? If no, there is another options to do so? "i know that i can use a windows service or startup applciation, i mean other options" UPDATE: i want any other options, because the server may be shared so have no access on its windows to make a service or a start up.
View 3 Replies
Jan 30, 2011
i want to create and working with excels file on vb
View 2 Replies