461 Posted Topics
Re: What is the exact syntax error? and what input are you entering into the textbox? | |
Re: Trying making VS repair itself via add/remove programs | |
Re: "Data type mismatch in criteria expression." is an error relating to your SQL. In this case you are putting '11' around the number 11. When using numbers in the SQL you should leave out the ' ' :) | |
My project I am working on is a product location system for a large supermarket. My current issue is that the map I am using to display the product location is assembled from rectangle objects which I will then change the colour of when required. The array storing the locations … | |
Not entirely sure if this is even possible as have yet to find a solution anywhere for this but here goes. The form currently looks at a database and pulls a text name from location: [CODE]DS.Tables("Location").Rows(0).Item(4)[/CODE] The resultant text entry from this location, for example: "loc_fvh_Flowers", will then be compared … | |
The program is currently trying to pull information from three different database tables and compiling the information onto one screen, to do this i am using three different connections and a function to handle the data at each stage. The issue is as my code hits PageLoadStage of "2" and … | |
Re: Solving your first issue with mishandling of the calculation. This is because of how the add subtract multiply divide buttons are coded. Your program will currently take the 4 when you press and store to mfirst, then overwrite mfirst with the 3 because you only have one primary storage variable. … | |
As the title suggests, i am trying to pull a bitmap image stored in a table location with an OLEObject type to my picture box on the form. The code i am using is as following: [CODE=VB.NET]img_ProductPicture.Image = DS.Tables("LocationInfo").Rows(0).Item(5)[/CODE] The error i am receiving is an InvalidCastException: Unable to cast … | |
Re: Alternatively to what Mike has said, if you move your executing code (in form2) to the form "on load" section (of form2) instead of in a separate sub it will execute as form2 starts up. Is that what your after cs_tx_usa? Its a simpler way of doing what Mike has … | |
Re: Im guessing the diary entry is written into a textbox? Few things: 1. Whats the name assigned to the textbox storing the text? 2. Database file location? eg. c:\User\Database.mdb 3. Table name which you wish to store the information in? 4. Does the table just have one column storing the … | |
Re: May i suggest changing your email to: ... As bots do scan forums for emails and add them to spam lists. |
The End.