Randomly Generate First And Last Names?
May 9, 2012
how to do this certain section of it. I want it to take a group of first names and randomly pair one with a last name randomly selected from a separate group. something like this:
Group 1-BobJoeBrianJillJorge
Group 2-SandersRientzLopezGumpStaudmann then output something like "Brian Staudmann" or "Jorge Gump"
Except I want a significantly larger selection of first and last names in each group. Would it be best to save them in an array? A String? Parse from textfiles?
View 14 Replies
ADVERTISEMENT
Mar 5, 2012
I have to make a card game called SNAP. The point of the game is that two players will flip their card and if they match then one of them have to call out snap. The first one to call out snap gets the card.
I'm having trouble on getting the cards to generate randomly but match every now and then.
View 3 Replies
Apr 14, 2010
I am making an application that randomly generates numbers. I then have to find out if those numbers are even or odd. Then place them in the corresponding array ( EvenNumbers() or OddNumbers() ). Then display the random numbers array then the even and odd numbers array. I am up to the point where I have the generated numbers and can tell if they are even or odd, but can't get them into an array. I am trying to do it like this....
[Code]...
View 10 Replies
Jun 11, 2010
I am struggling to show different views of gridview with database values. Here is my requirement. Database Table:I need to show one drop downlist with three values 1,2,3. If user selects 3 i Need to show a grid like belowAge,AnnualSales and Assortment are names which are coming dynamically from database.
View 2 Replies
Jan 8, 2010
What's the fastest way to randomly generate numbers, either randomly or simulating random? I don't really need a true random number generator, it would be acceptable to simulate random. I tried other random simulation methods but none were faster than this. Here's the fastest way I have now:
[Code]...
View 3 Replies
Aug 18, 2010
In my program's Form_Load I randomly generate a time value. Once I generate the time value, I put it in a DateTime variable. I need it to work like a clock. I know I can do this with a timer with an interval of 60000, or using TimeGetTime and updating a variable.Is it possible to do this with a thread?
View 3 Replies
Jun 22, 2011
i am trying to automatically generate multiple text boxes on a form with the following code
Private Sub CreateTB(ByVal x As Integer)
Dim y As Integer = 1
Do Until y = x
[Code]...
i need it to generate as many text boxes as the variable x states, so i used the do until loop thing. But i am stuck when it comes to naming the text boxes because obviously all the text boxes cannot share the same name. so i would like to know how to programmatically name each textbox uniquely.
View 5 Replies
Aug 15, 2011
I have a DataGridView which populates from an SQL query just fine in default mode
using these table names
[firstName] [varchar](20) NOT NULL,
[lastName] [varchar](20) NOT NULL,
[code]....
I have edited the column headers and set the column names to the same values as my table names yet the data is not showing in form load I have set datagridview.AutoGenerateColumns = False I know the data is there if I delete datagridview.AutoGenerateColumns = False then the data is shown with the default headings?
View 3 Replies
Nov 9, 2005
I made project using VB.Net 2005 with multi languages, the first form is MDIParent form with MainMenu and toolbars also there is some changes in properties as righttoleft and text of forms.In my Mainmenu (Menustrip) there is opetion to change the UI Culture and I have already done but I need to change all texts in the form as mainmenu items anf form properties.My quetion is: how can I reload my form again to read the new texts names and mainmenu items names from resx file?
View 8 Replies
Sep 5, 2011
I am doing work for a client who has lost the source code for one of their VB.Net WinForms applications. The assembly they have is not obfuscated at all. I am trying to recover as much of the source as I can as C# source and have tried several tools for decompiling assemblies, including Reflector, ILSpy and JustDecompile (all the latest versions), but they all produce code with a huge number of errors in them. Because of the large number of errors in the generated code, I am going to ask about the specific errors (in different questions), get more directed answers and in this way try shed some light on why all the tools are having difficulty decompiling this assembly. This question pertains to the fact that the code generated by all these tools always have a large number of invalid member variables (fields) such as the following:
private short $STATIC$Report_Print$20211C1280B1$nHeight;
private ArrayList $STATIC$Report_Print$20211C1280B1$oColumnLefts;
private StaticLocalInitFlag $STATIC$Report_Print$20211C1280B1$oColumnLefts$Init;
why the generated code has these invalid member variables?
View 3 Replies
Oct 31, 2010
Is there any way to get common control names like Save, Copy or Undo Redo in the user's windows language? (I saw this in some programs which weren't made for my windows language. Also the Yes No Massage Boxes will change...)
View 1 Replies
May 25, 2006
I am experiencing a problem when trying to convert a rather large VB6 application into a .Net 2005 application. Everytime I try to convert the project I get the following error: "Upgrade Failed: Exception occurred: Can't use character device names in file names"The weird thing is i have tried to convert the project using .Net 2003 and I do not get the error, it does convert.
View 12 Replies
Jan 4, 2010
Updated with newer answer and better test
Let's say I have the number 382 which is 101111110.
How could I randomly turn a bit which is not 0 to 0?
The why;
Since people ask me why, I simply need to do this, removing a bit from an integer.
based on the answer here is the result(working one I ran this [code]...
View 13 Replies
Feb 3, 2011
Our solution is built on ASP.NET v1.1 framework. User is presented with login form, so upon providing credentials this information is posted back to the server. Upon postback SessionID changes and our application crashes as some information which is required for processing is stored in the cache and is identified by SessionID string as a part of the name.
This SessionID change happens absolutely randomly and only to some of the clients. Most of the time browser used to view the page and post info is IE8. I cannot reproduce this issue in our test environment, as SessionID is persistent though-out the whole testing process.
I've already checked all solutions, i.e.
Session cache is used on Page_Load to retrieve/store some information, so it's initialized and contains data stored. I've made a Health Monitoring check on Application_End event to capture any possible AppDomain crashes using Reflection and Diagnostics Libraries and retrieving ShutDownMessage from httpruntime object, but that's also not a case. Cookieless attribute of the sessionState in web.config is set to false (using URL to store SessionID is not an option)
All MS security and bug fixes are installed on the server. IIS Server settings are similar to the ones we use in Test Environment.
View 1 Replies
May 19, 2011
I'm trying to configure my program to choose a random entry from an array:
Code:
MsgBox("Participants will now be allocated to each group at random...")
Dim number As Integer
Dim randomnumber As Integer
[Code].....
View 1 Replies
Dec 29, 2010
Protected Overrides Sub LoadForm()
MyBase.LoadForm()
Try
'StartProcess might be causing an error (error msg is issue with loading config, which would be incorrect)
StartProcess()
[Code] .....
I can run this 100 times under the exact same conditions and it seems like 40 times it will crash with the following error:
"Cannot access a disposed object. Object name: 'frmImportExport'."
It will either die on
'within StartProcess()
Dim __Delegate As New _Delegate(AddressOf StartProcess)
Me.Invoke(__Delegate)
or
Dim D As New _Delegate(AddressOf SOPERATION)
The form isn't being disposed manually anywhere that I see, and this code is being executed on formload. It's a subform that is to be displayed within a main form.
View 4 Replies
Jul 12, 2011
I want to pick some uniq numbers from a list of numbers randomly list of numbers:
dim firstlist() = [1,2,3,6,7,9,12,16]
I want to pick some uniq numbers randomly from this list [2,6,16]
View 2 Replies
Apr 19, 2012
I am going to create a windows form and add a push button (pretty simple right?) I want the push button to randomly cycle through about 10 pictures and display the randomly selected picture.
A few problems I am facing, 1) I do not know how to do do "randomization" in VB.Net and 2) I do not know how VB.Net would handle displaying an image, would it display on the form i am building or would it display in the default photo viewer for Windows?
View 16 Replies
Nov 10, 2009
I'm making a program where the user can choose a question section and the program is supposed to randomly open one of a few forms that contain questions. However, I can't get the code right.
[code...]
View 2 Replies
Jan 16, 2009
[Code].....
The problem that I am having is that instead of displaying "hello" I want it to add the listbox items to the array.
Can you have it randomly pick a value from an array?
View 4 Replies
Jun 11, 2010
I want to randomly play a video clip "possible different format" on a continues loop. Can I get how long the video will run or when the video has finished so the program knows when to select the next video.
View 4 Replies
Jun 9, 2011
I am interested in making a program to randomly populate gym-exercises from a group of them that I will populate. For instance, I want to be able to check "triceps," and then have "triceps kickback" pop up from a larger group of exercises, and the next time I click it another triceps exercise will pop up.
View 14 Replies
Oct 9, 2009
How can i sort the rows randomly?
View 4 Replies
Apr 15, 2010
Is there a way how i can see why my application keeps randomly crashing?
View 9 Replies
Jun 2, 2011
I have a form with one richtextbox and one button. The idea is that:
Form Load: data read from text file into arrayButton Click: random number generated, then used to select the string whose index number matches the random number generated
My StreamReader is working correctly and I can create random numbers with no problem, but I'm stuck on how I can use this random number to extract the corresponding string. I keep get the error saying QuoteObject reference not set to an instance of an object.
My code is below:
Imports System.IO
Public Class Form1
Dim questions(69) As String
Dim i As Integer
[Code] .....
View 6 Replies
Jun 21, 2012
Right now I have a program that checks login credentials against my Access(2003) database.It works, but the problem I'm having is that it's checking if the file.exist to frequently and with no real pattern. How I'm doing it isI have a My.Setting that saves the file path string as well as the connection string, during form_load I check if the My.Setting path string exist, if not then use an openfiledialog to find the file. Right now I have the database in a public drive, which is why I think that my program thinks that the file doesn't exist sometimes. This is how I'm doing all of the above:
'Some global variables commented out
'Dim log As String = My.Settings.loginStr
'Dim logCon As String = My.Settings.loginCon
[code].....
View 12 Replies
Nov 18, 2009
I have two images on my VB pictureBox one of it is randomly generated on the picBox(to any location) and the other is a normal image that can move around the picBox area using left right up and down buttons. The problem is that when ever the normal picture gets to the random one, it goes under the random picture and the task is to restrict the normal picture from going into the walls of the random one. when it gets to the wall, top, bottom left and right, it should stop moving.
View 2 Replies
Oct 7, 2011
The topic of my project is : Electronic Examination
How to access files randomly from the database in Visual Basic.
View 1 Replies
Dec 15, 2011
I am trying to make a program that randomly selects a name. i have a prompt that allows me to enter the number of names and the names themselves. but i dont know how to save or open the information into an array... can anyone help me with this?
View 14 Replies
Apr 26, 2011
im trying to make a single image appear randomly at any given time i have tryed to figure out the code for this my self however i have had no success any ideas
If HPU.Visible = FalseThen
HPU.Visible = Int((550) * Rnd() + 1)
EndIf
View 2 Replies