Showing results 1 to 30 of 30
Search took 0.01 seconds; generated 2 minute(s) ago.
Posts Made By: skalra63
Forum: Visual Basic 4 / 5 / 6 Apr 25th, 2006
Replies: 2
Views: 2,247
Posted By skalra63
Re: vb and msword

ah thanks, i meant to say i solved the problem but i must have forgot.
in the end i was able to get the company information to display top centre, the invoice details underneath, to the right, the...
Forum: Visual Basic 4 / 5 / 6 Apr 15th, 2006
Replies: 2
Views: 2,904
Posted By skalra63
Re: Huge Problem. Input Past End OF File

yes, i only have the one version of vb
Forum: Visual Basic 4 / 5 / 6 Apr 14th, 2006
Replies: 2
Views: 2,904
Posted By skalra63
Huge Problem. Input Past End OF File

one of my forms, when anything is done to it (opened saved etc) shows an error message.

here is an image of the error message.

anyone able to shed any light on this?
Forum: Visual Basic 4 / 5 / 6 Apr 8th, 2006
Replies: 2
Views: 2,247
Posted By skalra63
vb and msword

i have the following code, however, the table that is created always starts at the begining of the document. so none of the text written beforehand can be seen. i also dont know how to write things...
Forum: Visual Basic 4 / 5 / 6 Apr 7th, 2006
Replies: 2
Views: 894
Posted By skalra63
problem with variables

i have a text box, which the user may enter cash for sales. however, it doesnt seem to recognise anything after a decimal point.

for example, if the product costs £300.07, it will only calculate...
Forum: Visual Basic 4 / 5 / 6 Apr 6th, 2006
Replies: 3
Views: 3,014
Posted By skalra63
Re: MSFlexGrid Search Loop

no probs. i thought i might aswel post it. people help me with coding, so i thought showing fixed code might help someone sometime in the future.
Forum: Visual Basic 4 / 5 / 6 Apr 6th, 2006
Replies: 3
Views: 3,014
Posted By skalra63
Re: MSFlexGrid Search Loop

Resolved.

i just needed Or in it as shown below

Do Until r = flxItems.Rows - 1 or flxItems.TextMatrix(r, 1) = txtProductBarcode
r = r + 1
Loop
Forum: Visual Basic 4 / 5 / 6 Apr 5th, 2006
Replies: 3
Views: 3,014
Posted By skalra63
MSFlexGrid Search Loop

what i want it to do :
enter a barcode
search grid
if barcode exists then increase Quantity by 1, recalculate subtotal, set vIndex to last row.
if barcode does not exist then search database for...
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2006
Replies: 7
Views: 5,469
Posted By skalra63
Re: ms flex grid

i see. i found why it was doing that error now. it was this line.

For r = 1 To MSFlexGrid1.Rows - 1

i initially had the line

For r = 1 To MSFlexGrid1 - 1

so adding the .rows got rid of the error.
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2006
Replies: 7
Views: 5,469
Posted By skalra63
Re: ms flex grid

thanks, i didnt know it could work like that. so it works. but it gets stuck at the end when there are no more rows. subscript out of range.
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2006
Replies: 7
Views: 5,469
Posted By skalra63
Re: ms flex grid

i tried
For MSFlexGrid1.Row = 1 To MSFlexGrid1.Row = vIndex
MSFlexGrid1(vIndex + 1, 0) = vIndex + 1
vIndex = vIndex + 1
Next Row
loop
but it doesnt work, is there something im missing? it says theres...
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2006
Replies: 7
Views: 5,469
Posted By skalra63
ms flex grid

ive posted this messge in 3 other forums, i hope i get a better response here.
the following code has a button that removes the selected row from the grid. reset index, is what i am going to use so...
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2006
Replies: 3
Views: 1,289
Posted By skalra63
Re: invoicing

ok thanks
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2006
Replies: 3
Views: 1,289
Posted By skalra63
invoicing

i wish to create a form to "sell"items, which will then add the items into an invoice database, and also produce a print out. however, i am stuck. i think i can use listboxes to hold the data, or a...
Forum: Visual Basic 4 / 5 / 6 Mar 31st, 2006
Replies: 6
Views: 1,374
Posted By skalra63
Forum: Visual Basic 4 / 5 / 6 Mar 30th, 2006
Replies: 6
Views: 1,374
Posted By skalra63
Re: A couple Of Aesthetic Issues

i want the form full screen, but the objects (textbox, labels, buttons etc etc) in the centre.
Forum: Visual Basic 4 / 5 / 6 Mar 30th, 2006
Replies: 6
Views: 1,374
Posted By skalra63
Re: A couple Of Aesthetic Issues

well even in full screen, i would like all the objects in the centre of the screen.
Forum: Visual Basic 4 / 5 / 6 Mar 29th, 2006
Replies: 3
Views: 3,445
Posted By skalra63
Re: mouse over

i could use tool tips. but i dont like it for big sections of text. the way im doing it, will display what the object is and what they can do with it. i tested with the tool tips, and i found that...
Forum: Visual Basic 4 / 5 / 6 Mar 29th, 2006
Replies: 3
Views: 3,445
Posted By skalra63
mouse over

i am currently using the following code so that when the cursor is over an object, it displays a description.

Private Sub txtSearchbox_MouseMove(Button As Integer, Shift As Integer, X As Single, Y...
Forum: Visual Basic 4 / 5 / 6 Mar 29th, 2006
Replies: 6
Views: 1,374
Posted By skalra63
A couple Of Aesthetic Issues

there are two things i need to do to my program.

1) centre the form on the screen, then make it full screen. so thatthe form is always in the centre disgregarding the size.

2) centre list/combo...
Forum: Visual Basic 4 / 5 / 6 Mar 20th, 2006
Replies: 3
Views: 1,239
Posted By skalra63
Re: A couple of things

i have created a drop down combo box that displays the supplierName and holds supplier_id

(tested with
private cbpSUpplier_click()
txtSupplier =...
Forum: Visual Basic 4 / 5 / 6 Mar 19th, 2006
Replies: 3
Views: 1,239
Posted By skalra63
A couple of things

currently, i have a form where a user can manipulate data. however, because i only want them to change "Supplier" of a product to a known one, i have created a second form. which they click (next to...
Forum: Visual Basic 4 / 5 / 6 Mar 7th, 2006
Replies: 1
Views: 4,754
Posted By skalra63
getting data from one form to another.

i wondered if anyone could help me with this.

i have a button on a form (frmUpdateProduct). this button opens up another form (frmSelectSupplier). i have a listbox which gets all the supplier names...
Forum: Visual Basic 4 / 5 / 6 Feb 28th, 2006
Replies: 6
Views: 4,437
Posted By skalra63
Re: getting data from a list box.

the listbox starts of empty. when a search is done, the records that are found, are displayed by ProductName in the listbox. what i need is to beable to click on one of these entries, so that the...
Forum: Visual Basic 4 / 5 / 6 Feb 28th, 2006
Replies: 6
Views: 4,437
Posted By skalra63
Re: getting data from a list box.

i am not sure how to get the search data from the listbox entry to on_click() query
Forum: Visual Basic 4 / 5 / 6 Feb 28th, 2006
Replies: 6
Views: 4,437
Posted By skalra63
Re: getting data from a list box.

thank you, i will give it a go
Forum: Visual Basic 4 / 5 / 6 Feb 28th, 2006
Replies: 6
Views: 4,437
Posted By skalra63
getting data from a list box.

currently, i have got code that will let someone search a table in a database and return any possible recordsets into a listbox. however, i would like to be able to click on any of those items added...
Forum: Visual Basic 4 / 5 / 6 Feb 24th, 2006
Replies: 3
Views: 1,359
Posted By skalra63
something wrong with this search

i am using ADODB to connect an access database to my forms. i have the folloing code which searches the database table for a barcode. it searches and displays correctly, until you put in a non...
Forum: Java Feb 24th, 2006
Replies: 1
Views: 930
Posted By skalra63
Re: bit of a search problem

whoops wrong forum
Forum: Java Feb 24th, 2006
Replies: 1
Views: 930
Posted By skalra63
bit of a search problem

i am using ADODB to connect an access database to my forms. i have the folloing code which searches the database table for a barcode. it searches and displays correctly, until you put in a non...
Showing results 1 to 30 of 30

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 12:36 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC