Create A Project That Stores Personal Information For A Little Electronic "black Book"?
Nov 15, 2011
I am new here; say to everyone first.Here is the a question for coding list box; it has two part: first part: Create a project that stores personal information for a little electronic "black book"; the fields in the file should include name, phone number, pager number, cell phone number, voice mail number, and Email Address. allow the user to enter the data into text boxes. (This part is very easy, The trouble maker is in the second part).
second part: create a second project to load the names into a list box. perform a "Look Up" and display the appropriate information for the selected name. The second part should be very easy to someone here; please write codes, I have stuck in the second part for couple of hours.
View 5 Replies
ADVERTISEMENT
Apr 28, 2010
I am using window 7 now, I am trying to write up a wee program by vb.net to edit the image properties like edit the title, author, comment, rating, description. I have try the DSOFile, but it only edit the file attribute and wouldn't show up.
View 3 Replies
Feb 23, 2010
Im trying to make an application that fills out personal information.
Such as Name, Birth of year, etc
View 2 Replies
Jun 11, 2011
I have create a vb.net application with ms access. i am make it .exe.After that i am instal it my pc working but my friends pc not work. After i am cheking my friends system all. .net framework is intallaled 3.5 thats same as mine. Error ,indicate that application1 has encounterd a problome and needs to close. We are sorry for the inconvenience.More detail ( digital product id, identify your license and internet protocol(ip).My application only a smal invoice. How can set digital product id and my personal information in to my application.
View 1 Replies
Jan 9, 2012
I am trying to create a socket class in my project to send data to ecr (electronic cash register).Ecr comes with software that listens for commands on port 3535. Command are in forms of XML Files. It has only one catch, I must close the connection on socket, so the ecr would know when to process the command and respond. Since I only send one command at a time,I need the simplest solution I can get.
How it works:I create the socket and connect it to 192.168.1.67:3535 I start
client.BeginReceive
Then I send the command with
client.BeginSend
And I do a
client.Disconnect(True)
so I can get response from ECR.And in 8 of 10 times it works just fine. The problem is this few times it doesn't work.At that time I cant receive anything because it reports that the client is not connected in ReceiveCallback but it still manages to send the data to ECR just fine. The bill comes out on the ECR, but I get no answer about what happened.
I call the class like this:
Dim dre As New HCPSocket
Result2 = dre.Otkucaj(Command1, "192.168.1.67")
Debug.Print(Result2)
dre = Nothing
End the class looks like this:
Imports System
Imports System.Net
Imports System.Net.Sockets
[code]....
View 1 Replies
Feb 16, 2011
I'm a newbie in visual basic. I'm doing a login system. I'm done with the GUI. but for the programming part, I want to know where to store new user's information along with the username and password. I've done research. seems like it has something to do with database. p/s: I'm looking for high security in storing data to prevent hacking.
View 1 Replies
Aug 17, 2010
Boss assign me a project: Create a vb.net program for EDI (electronic data interchange). I have no any idea how to start.
View 3 Replies
Dec 14, 2011
I'm working on a project which stores reference numbers. The numbers usually amount to millions so speed has become an issue.My current project works on a very simple SQL database with two fields - an ID and the actual string. It works extremely well until the number of rows goes into the millions when it then goes to an absolute crawl. Each string in the database must be unique.
View 9 Replies
Jan 18, 2012
I'm using VB 2008. I'm making a project which stores patients name, reason for visit etc in a text file using filestreaming like:
Dim fs As New FileStream("H:/ICS3U Final Project/Betolli.txt", FileMode.Append, FileAccess.Write)
Dim textfile As New StreamWriter(fs)
Is there any way the doctor can literally open up the text file by a click of a button. I don't mean like : read all lines or a STREAMREADER.I want to physically be able to open the text file which is located on the computer harddrive so the doctor can read it.
View 9 Replies
Oct 19, 2009
Is it possible to run vb dot net project on Apple (Mac) Book.
View 1 Replies
Jul 16, 2010
I am looking to make a "user.settings" file or something similar that stores information for my application. I'm not sure how I would read a text file per line and do something depending on what it says.
View 7 Replies
Nov 22, 2009
Can any body upload a Project on Address Book using VB.net 2005.
View 4 Replies
Aug 1, 2010
I am trying to create an application where it stores images as well as data.
View 3 Replies
Feb 18, 2009
I have to create an application that prompts the user to enter today's sales for five stores. The program should then display a simple bar graph comparing each store's sales. Create each bar in the bar graph by displaying a row of asterisks (*) in a list box. Each asterisk in a bar represents $100 in sales. I have to make two different versions of this program. One using a "do while ... loop" and the other using a "for ... next loop". Could someone give me a hint on how to do this. I the "do while ... loop" version and I have had some problems, especially with converting the numbers to asterisks.
Private Sub btnDisplay_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDisplay.Click
'Clear everything
[code]....
View 5 Replies
Jun 5, 2011
this is my first vb. and i have assignment and i have been trying for hours but i couldn't do it right I have to create an application that prompts the user to enter today's sales for five stores. Create a loop to prompt for an amount for the first store using an inputbox and do not exit until you have good data. The inputs cannot be negative or greater than 5000, but may contain decimal values. The program should then display a simple bar graph corresponding to the amount of sales using a row of asterisks (*) in a listbox. Each asterisk represents $100 in sales. Display the total of all the stores by looping this process for each store.
[Code]...
View 2 Replies
Oct 6, 2010
I'm trying to create a form that accepts names (or any strings) as input and stores them in a object. See attached form sample.Form Image:
Operations: ï Initially the NumericUpDown object on the form should be disabled.The user enters a value (string) in the textbox and clicks the Add button or presses the Enter key to activate that button.The application then stores that name in a List object, and displays the last entry in the Label underneath.The NumericUpDown should become enable after the first entry. The user should be able to move between all the values entered using NumericUpDown.
View 7 Replies
Oct 28, 2009
how to load data (Book) to text box when user just enter the book code?how to load data (student) to text box when user just enter the student id?how to write the code when user click the save button , the book quantity(Book) will reduce 1 and the all the data in textbox will save in database(Issue)the interface is like
[URL]
the database is show at
[URL]
the code is
Public Class frmIssue
Dim dt As New DataTable()
Dim rowIndex As Integer = 0
Dim rowIndex1 As Integer = 0
[code]....
View 2 Replies
May 20, 2010
How to create an address book in visual basic? I have the VB2008 express. Just a simple one. FirstName, LastName and Phone. I should be able to add from there. The resulting file could be an excel based or text file. I do not have Microsoft Access at home.
View 6 Replies
Mar 12, 2009
When I create a new bitmap the file is black. How do I make it white?
View 2 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
Jun 21, 2012
i want to create image with width and height 64 and set all pixels to black
dim b as bitmap
b.width = 64
b.height = 64
[code]....
the code not working
View 1 Replies
Aug 11, 2011
On the main form of my application, I have a Rich Text Box which is where the user will be entering information. The text is black. then, i have a button which calls the dialogue "Notes" A dialogue appears, with a rich text box. the user should then be able to enter text into the box, click "OK", and the text entered into the Notes dialogue be inserted to the rich text box on the main form -- with the font colour "Red". The rest of the text in the main rich text box on the main form should remain black.
View 2 Replies
Mar 29, 2010
i want to build my own electronic circuit simulator which is use mathematical models to replicate the behavior of an actual electronic device or circuit. Simulating a circuits behavior before actually building it can i do that with vb.net is there any library that deal with simulation or something
View 6 Replies
Sep 17, 2009
Im working on a small online banking project website using asp.net vb.net language with mssql 2005 database, and i need asistance on the section of electronic transfer of fund were someone can transfer fund from one account to another bank account by clicking on a button as the person click on the tansfer button, there is a visual display that the transfer is in progress too and if the transfer complete successfully there is notification.
View 1 Replies
Nov 23, 2011
Here's a dialog box which runs for approximately 16 projects and takes over 5 minutes to complete (in total).
View 1 Replies
Dec 3, 2011
I am attempting to communicate with set of scales with a vb application that i have written using the comm control. The scales are a Kelba KHX-30 I can read the data from the scales but i have to manually press a button on the scale.
View 4 Replies
Nov 16, 2009
What I am wanting to do is pass some information from my app to a new DLL project I have created. In the DLL I have 2 test forms (frm123, frm456). What I need to do is send 2 parameters over to the DLL, when the DLL recieves the info it would then determine which form to open. In the DLL I have in the Main Module ' I will use arg(0) later
[Code]....
View 18 Replies
Jun 2, 2010
I need to create a few visual controls to reside on my form.
1- Rotary Selector to rotate and select an option. (maybe up to 16 steps per rotation or 0 to 15.)
2- Rotary dial to act like a volume control. This actually selects a value between 0 to 255 or 0 to 1023. (is this too many steps?)
3- Bunch of selector push buttons to act like the old car radio selector? (pushing one resets the other buttons. Just like old car radios?)
View 1 Replies
May 2, 2011
Two of us at our company worked on a VB project. I developed the GUI interface. Another programmer developed some of the Classes that are also part of the project/Solution. Our manager wants to see as part of the 'Help/About' drop down, the version of the GUI application as well as the Class that the other programmer wrote. We are on the third modification of my GUI application, but the 8th version of the class that the other programmer wrote. Is there some way that the GUI application can get the 'Assembly Version' information for a class that may not necessarily exeuting at any given time?
View 3 Replies
Mar 4, 2012
Is it possible to make one project that saves all the database information on through forms. Then also have a word document that could access the database through labels on a separate project? Also i am using ms access for my database and is there any way after i publish them that they can access the same database?
View 2 Replies