- Strength to Increase Rep
- +9
- Strength to Decrease Rep
- -2
- Upvotes Received
- 39
- Posts with Upvotes
- 34
- Upvoting Members
- 28
- Downvotes Received
- 4
- Posts with Downvotes
- 4
- Downvoting Members
- 4
Re: Your first step is to work out your data model. Think about the data elements you want to store and how they relate to one another. | |
Re: I think the object of school assignments is that you do them yourself | |
| |
Re: You are best to use a mac. Download xcode and start from there. there are some excellent tutorials on iTunesU | |
Re: Create a dataset using a SQL statement to combine your multiple data and then use this as the recordsource for the datagrid. | |
Re: if you double click on the control it should generate the appropriate handler for an click event. | |
Re: how do you want to connect it, via a serial port or USB | |
Re: No switch takes an integer you need if then else if construct if ([textfield.text isequaltostring:@"someCase"]) { // do something } else if ([textfield.text isequaltostring:@"anotherCase"]) { // do something else } else { // do yet another thing } | |
Re: That is not a label that is a text field. Drag a label across from the object library, it will have type of UILabel. If you are using the latest version of xcode you should be putting an underscore on the front when referrring to them locally, [_label setText=@"Hello World"]; … | |
Re: NSArray *dateFormats = [NSArray arrayWithObjects: @"dd/ mm / yyyy", @"mm / dd/ yyyy", nil]; NSString *selectedDateFormat = [dateFormats objectAtIndex:formatSelected]; | |
Re: Yes, you do not need to synthesise them if the setters and getters are as simple as above. In recent versions the "_" on the front is for the internal representation of the property. You also do not need the statements on lines 3 & 4. Properties are the external … | |
Re: There are bar code fonts you can download and install on your PC for the purpose. Just google "barcode font" and you will find plenty. Using this font you can print barcodes on your normal laser on A4 etc however if it is for a shop you may want to … | |
Re: Nothing really it is just a matter of personal taste, you can use either as you wish. | |
Re: I would check out the Stanford Uni lectures by Paul Hegarty on iTunesU | |
Re: Have you thought about breaking up the form into a number of smaller forms and containing them all in a parent form. | |
| |
| Re: You need the nil to indicate the end of the list. Also float is a primitive data type and so wont work in this context. You should use NSNumber (which is an object) rather than float. |
Re: This is not normalised properly, Time, Date and Day should all be housed in the one field using a type of Date/Time. When you display them you can choose to display the one field three times for each of the values. | |
Re: WIA is your best bet if your scanner drivers support it. Otherwise you will need to use TWAIN. There is a product called EZITWAIN which I have used at a client where WIA did not work. | |
Re: Are you sure this is the correct approach, the barcode scanners I have used present the data as if it had been typed on the keyboard. ie. you set focus to a text box, scan the barcode and the barcode appears in the text box followed by a CR. If … | |
Re: if you are being prompted for "Forms!f_TopicSelect!cboTopics" then it does not recognise it as an object. To cut to the chase, here is what I think you want to achieve. Create a tabular form to display notes and topics from the notes table using the form wizard. In design view … | |
Re: You need to use Set when you are assigning objects but not when you are assigning variables. | |
Re: on line 16 you should have [QTY]=[QTY]-@QTY however it looks like the employeeId is the primary key to Inventory file which seems somewhat strange. | |
Re: The chart wizard in Excel should be all you need. just add a chart to your spreadsheet and step through the wizard | |
Re: see here [Click Here](http://en.wikipedia.org/wiki/SpringBoard) | |
Re: if you are using ARC then yes | |
Re: you already asked this on the VB.Net thread which are you using | |
Re: it looks very much like homework you should be doing yourself. | |
Re: you can probably buy VB6.0 on eBay. .Net is available for free from the microsoft website. |