POS System For A Restaurant With A Floorplan Editor
Jan 14, 2011
I'm looking at creating something similar to a POS system for a restaurant with a floorplan editor, just a pet project to try something new and exciting. Anyway, what I want to do is make a form that the user can create a floor plan of their restaurant on. This will include them creating simple walling layouts so they can map out the size of the room and adding tables. This would be similar to those house design software packages where you create your house, but only the flat 2D design. Would it be as easy as instantiating new image controls and dropping them on the form etc?
and Send me some codings for a restaurant management system project using any programming language preferably VB6,VB.NET,PHP&MYSQL,HTML with Javascripts[i][color=#000099][size=3][font=Times New Roman]
Im doin my school project on taking order system(POS) in a restaurant using VISUAL BASIC?the word visual basic is very new for me...i already do some of the coding,this system not using database,just a simple POS system..When i insert y(for yes),msgbox for order_code and order_quantity apear.but when i insert n(no),msgbox for order_code and order_quantity apear again for one time then stop.then msgbox for calc2 pop out but the value isnt right..calc2 also calculate the order_code and order_quantity,the one that apear after i strike no.
For i = 1 To 60 Me.Controls("picturebox" & i).BackColor = Color.White Next
i want to change backcolor of picturebox but when i run program,i get this error :
An exception of type 'System.NullReferenceException' occurred in EZEE Restaurant.exe but was not handled in user code
Additional information: Object reference not set to an instance of an object.i go to Project->Add reference and then look for "System.NullReferenceException" but i don't find it.
I am trying to create a floorPlan in Vb.Net Graphics. I thought i could use say 20 pixels = 1 Linear Metre
I am currently using a Picturebox 504 * 504 Pixel. Taking a little for borders the 4 pixels off width height this gives me 500/20 = 25 Linear Metre square which is okay.
But when i draw guide ruler lines which updates the lenght of the line being drawn i cannot get it to increment per mm.
The ruler is calculated at = (pic1.Width - 4) / 20. On the mouseMove Event the measurement which i show as a string increments by 40mm or so i need it per mm.
I am trying to publish a program but when I run the setup I get an error saying I need to put WindowsBase v3 in the Global Assembly Cache which I can do using the File System Editor apparently. The Help says to access the file system editor go to "Editor" on the "View" menu in Visual Studio. But it isn't there.
1- Click run, and type the gpedit.msc, to start "Local Group Policy Editor". 2 -Expand "Computer Configuration" -> "Windows Settings" -> "Security Settings" -> "Local Policies" -> Then click "User Rights Assignment". 3- In the Policy window, Select "Force shutdown from a remote system", double click it, it will pop a properties window. 4- Click "Add user or group button", add a user and name it Guest.
I need to know if it's possible to manipulate and add the user or group programmatically. I'm using Visual Basic 2008.
I got database with products of restaurant. What i want: I Want to create cocktails with multiple products (products are registered in database). When i put cocktail in the sales list, i want when sales complete, automatically to change stock of included products in the cocktail. I attached a screenshot to be more clarity. If u help me, i apreciate this.
A restaurant wants an application that calculates a table's bill. The application should display all the menu items ( shown below) in four ComboBoxes. Each ComboBox should contain a category of food offered by the restaurant (Beverage, Appetizer, Main Course and Dessert). The user can choose from one of these ComboBoxes to add an item to a table's bill. As each item is selected in the ComboBoxes, add the price of that item to the bill. The user can click the Clear Button to restore the Subtotal:, Tax:, and Total: fields to $0.00?
Trying to create a restaurant bill, i found a program that does something similar but when i tried to adapt it, it doesnt do what it is supposed to.Let me go over what it's supposed to do first.If there are three items on a menu, lets say; pizza, fries and drinks. the pizza costs $1.75 a slice, the fries are $2.00, and the drinks are $1.25. the user selects how many of each are purchased, then presses a 'compute' button and displays a bill in a listbox. here is the code i wrote for such a program, obviously wrong or it'd be working.
Public Class RestaurantBill Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCompute.Click
I'm making this POS software for a restaurant and I was wondering what the best way to create the button interface for the items since it's going to use a touch screen monitor. I was thinking of adding the buttons at runtime to solve the excess space problem, and also add the code at runtime, but that seems like too much work, so I thought I should ask if there are any other ways to approach the problem?
Need to know the code in which to loadfile (.rtf) into a richtextbox via user-selection when the rtf file is within the setup of the file system editor under 'Program Files'. Have used the following code and it doesn't work....
CODE:
Me.RichTextBoxDisplay.LoadFile(Application.StartupPath & "Application FolderGarman SoftwareKing James Version 1611OTGenesisChaptersGen Ch2.rtf")
is the algorithm for VB editor released anywhere? because i'm trying to create my own editor that gives various options like Linking and self defined array functions (see below) such that one edit can update several others in various places, but i do still wish to have the auto formatting VB editor provides us with.an example of a self defined array function (count):we can transform this:
Public Class test Private Shared number_of_methods As Integer = 2 Public Function get_number_of_methods_juz_an_example() As Integer Return number_of_methods
[code]....
well of course instead of the code it would be just click and select (i wrote out the code in <> just to show what's happening)
I created a web form in .net. The form need to use WYSIWYG editor. So, I have decided to use CK editor. Now, I have gotten a problem that the CK editor lets to use javascript in the textarea. I don't want to let this. How could I do that?
How can i get visio like editor in vb.net. so that end user can create or move controls, like text box,labels & combo box. I need this for reporting purpose where user can place the controls as he wanted.
How can i make something like an editor, lets say word editor, how can i get it to highlite wrong words? and color words like "thank you" or something? [code...]
I'm a beginner so please try to explain things simply
Public Class Form1 Private Sub RichTextBox1_TextChanged(sender As System.Object, e As System.EventArgs) Handles RichTextBox1.TextChanged Form2.WebBrowser1.DocumentText = Me.RichTextBox1.Text End Sub
Private Sub PreviewToolStripMenuItem_Click(sender As System.Object, e As System.EventArgs) Handles PreviewToolStripMenuItem.Click Form2.Show() End Sub
Private Sub OpenToolStripMenuItem_Click(sender As System.Object, e As System.EventArgs) Handles OpenToolStripMenuItem.Click OpenFileDialog1.Filter = "All Files(*) | *" OpenFileDialog1.ShowDialog() RichTextBox1.LoadFile(OpenFileDialog1.FileName, RichTextBoxStreamType.PlainText) End Sub
Private Sub SaveToolStripMenuItem_Click(sender As System.Object, e As System.EventArgs) Handles SaveToolStripMenuItem.Click SaveFileDialog1.Filter = "All Files(*) | *" SaveFileDialog1.ShowDialog() RichTextBox1.SaveFile(SaveFileDialog1.FileName, RichTextBoxStreamType.PlainText) End Sub End Class Say for instance I put this into the rich text box
I want to make an iso editor. ISO is a game or program file. In this case it is a game. I want to be able to view partitions and patch them so people can modify games. Im using VB express basic 2010.
VB express.yesterday my computer started squawking about the project that I was running in debug being edited outside of the editor, and did I want to reload.The message box gave me four choices: Yes, Yes to All,No,and No to All.It started doing it when I had a new project with nothing but a multiline text box that I was trying to use to display the numbers in a for next loop there was practically nothing there that I did.It squawked about that for projects that I ran many times before, and haven't edited at all recently.It kept coming back repeatedly.So far as I know, I have edited nothing outside the editor.What would I be reloading?
There is no editor available for '<filename>'.Make sure the application for the file type (.vb) is installed.I got this message after I updated a VB08 project to VB10. I tried to open a form when this message was shown. It happens to every form in the group (but not standard classes).
I just cannot work this out so is it different in C# for VB in VS. Lets say you have added a control (does not matter what control) to a form, go to the 'View Code' of the form. In VB at the top of the source window below the Tabs of your project you see on the left a Class Name combobox (Type in C#) in VB you can select the control you just added, now in the right Members Name combobox (Members in C#) in vb i can select a member I want to add lets say Click event, this will be added to the project but in C# it just cannot be done?
The reason for this is that I have a Usercontrol that Shadows/New delegate thingy in C# TextChanged event I can easily Select this member in VB but not in C# do I have to add the event manually e.g. [Code] In VB I get a Handles event, Any ideas?
I accidentally excluded something from my project (by right clicking and "Exclude from project", but I don't remember what) and now when I try to open form1.vb design I get this error message:
There is no editor avalable for <filename> Make sure the application for the filetype (.vb) is installed.
I've built a basic editor which have code auto-completion feature and also shows parameter list. Now I want to add highlight matching bracket feature. I've no idea on how to do this !
Update:I know some basic algorithm to find the matching bracket, but don't know how to highlight it ! [to change the color or making it bold of the matching bracket]. I'm using multi-line textbox for this issue.
I created a Script Editor in a Windows Application using a RichTextbox and Regex for adding the colors for the coding. However it is not close to the Real VB editor. Is there some real good examples out there of how to build one or some free downloads?
I need to add in a WYSIWYG control into a .NET form. I found this one from SpiceLogic on several sites and was wondering if this is a decent library to use?If anyone has any additional input, I also would like to know of any other decent alternatives, both free and non-free.
I created a asp.net web application and then I downloaded ckeditor. And I extracted my application directory this editor folder. And I added dll of ckeditor to reference of my application. I registered in my web page.[code]...