370 Posted Topics

Member Avatar for IgniteTCS
Member Avatar for I Love Coding

I think it is important for you to get a start, once you have got something, if you have a bug you can't find, post it and someone will help you.

Member Avatar for ChrisPadgham
0
87
Member Avatar for BeeKeeper18
Member Avatar for kaozci
0
360
Member Avatar for Farhan_B
Member Avatar for F_M

Why do you have the details in a second table. It doesn't look like you need it, just move all the fields in the details table into the Customers table. If you wish to persist with the design you have then the insert into customers table at line 7 does …

Member Avatar for thines01
0
167
Member Avatar for krishnisilva
Member Avatar for dorelbaiu

I don't think this approach can handle strange charaters in the password like ( or ). Check that your password only contains alphanumeric characters.

Member Avatar for dorelbaiu
0
152
Member Avatar for venky.skcet

[CODE]SELECT Materials.Item_Name, Proj_Mat.qty FROM Materials, Proj_Mat WHERE Materials.Item_Code=Proj_Mat.Item_Code AND Proj_Mat.Proj_Id=CurrentProjId[/CODE] CurrentProjId is obviously the project you wish to report on

Member Avatar for venky.skcet
0
105
Member Avatar for Remedyseeking

30 is pushing it a bit for MSAccess but in theory you should be OK. Just use one table and one form. Given the number of concurrent users I would be inclined not to use bound fields. Instead have a save button which builds an SQL INSERT statement to insert …

Member Avatar for ChrisPadgham
0
474
Member Avatar for Panathinaikos22
Member Avatar for dioioib
0
171
Member Avatar for az_master
Member Avatar for belber
Member Avatar for Shadizon

In the click event of the combo box set a filter on the form [CODE] Public sub combo1_click me.filter = "StudentName='" & me.combo1.text me.filteron = true end sub [/CODE]

Member Avatar for ChrisPadgham
0
116
Member Avatar for DanielPrasath

look on itunesU for iPhone programming by Paul Hegarty of Standford University. His on-line lectures are free and explain this well.

Member Avatar for dioioib
0
165
Member Avatar for Z33shan

See here for connection strings for mySQL databases [URL="http://www.connectionstrings.com/mysql"]http://www.connectionstrings.com/mysql[/URL] create you own database with a name that is relevant to the application you are developing

Member Avatar for ChrisPadgham
0
130
Member Avatar for apuamy
Member Avatar for aksay

the forum is about solving problems that you are experiencing. Do your design and if you have something you can resolve, post it and someone will assist you.

Member Avatar for aksay
0
166
Member Avatar for teofaniza
Member Avatar for teofaniza

I don't think a listview control is what you want. I think it would look more like a normal question screen if you had an array of radio buttons. On your form, place one radio button, then copy and paste it, VB will ask if you want to create a …

Member Avatar for ChrisPadgham
0
308
Member Avatar for jeannebria

so where is the code that establishes the adodc2 recordset and what is the error you are receiving

Member Avatar for ChrisPadgham
0
213
Member Avatar for Quinncunx

in the first instance create a control array of text boxes, put one text box on the form, copy and paste it, VB will ask if you want to create a control array to which you answer Yes. Then past the remaining 13 text boxes. [CODE] randomise for i = …

Member Avatar for ChrisPadgham
0
469
Member Avatar for dwiniers

well I can't see anything referring to an object Employee ID but I am thinking you probably need to move line 18 above line 11. not much point in trying to use drTrans until you have assigned it a value.

Member Avatar for BitBlt
0
205
Member Avatar for Gobble45

have you checked out if you can get the data via a web service in XML, it will be far simpler and more robust to process it that way.

Member Avatar for thines01
0
1K
Member Avatar for bibiki

I think you should stay with a traditional relational design if you are planning to implement in a relational database. see below the table to hold bar visits. barsVisited (visitId, PersonId, BarId, DateVisited) the difficuly with your design is that it does not allow questions like "how may people have …

Member Avatar for bibiki
0
142
Member Avatar for jtodd

use the datediff function, inspite of its name it handles times as well as dates.

Member Avatar for jtodd
0
169
Member Avatar for mrbungle

how does someone log in? are you displaying a login form and if so when? if it is in the form load event before you call CreateIdFolder ensure that it is displayed as modal otherwise the form load event will continue processing and not wait for the user to log …

Member Avatar for ChrisPadgham
0
182
Member Avatar for reds8

Rather than bothering with a log in screen you may like to authenticate off the windows login [CODE] Function getUserName() Dim wshNet as object Dim sUser as string set wshNet = CreateObject("WScript.Network") sUser = wshNet.UserName set wshNet = nothing getUserName = sUser End Function [/CODE] you can then query a …

Member Avatar for ChrisPadgham
0
282
Member Avatar for islandsand

This forum does not write you assignments for you. Have a go yourself, if you have a piece of code that you cannot get to work post it and someone will help you debug it.

Member Avatar for ChrisPadgham
0
57
Member Avatar for RASHIDDDDD

if you double click on the button it will open a code window, this is where you write the code to calculate the price. If you don't know how to write Visual Basic code here is a resource you could look at [URL="http://visualbasic.freetutes.com/learn-vb6/"]http://visualbasic.freetutes.com/learn-vb6/[/URL]

Member Avatar for ChrisPadgham
0
98
Member Avatar for skyshare
Member Avatar for stevo7624

since you have the code structured like it is you will want to place the same piece of code in a number of places, accordingly, it is probably better to put it in a function, line 40 becomes [CODE] lblSalOutput.Text = CStr(assistant + addLoading)[/CODE] then your addLoading function looks like …

Member Avatar for Jx_Man
0
151
Member Avatar for networkmancer

at line 24 you should not have VAL function this is to convert a string to a number and room price is an integer. if anthing you shoul probably use Cstr

Member Avatar for M.Waqas Aslam
0
2K
Member Avatar for bettybarnes

the scanners I have used simulate keyboard entry. That is, what is scanned appears as if the user has typed it on the keyboard. set focus on a textbox then scan and the data from the scanner will be placed in the text box. it is usually terminated with a …

Member Avatar for ChrisPadgham
0
106
Member Avatar for daino

Can I suggest you look at MS Access in the first instance. It is a good starting point for learning about developing database applications. Whilst the programming is in VB not C# for a new comer it provides all you will need to develop your application.

Member Avatar for daino
0
311
Member Avatar for Aviplo

doesn't sound like a VB.Net problem, I suggest you look at your system config and what else you are running on the PC

Member Avatar for codeorder
0
107
Member Avatar for LearnVBnet
Member Avatar for discovery-power

What are you trying to compare to "xx", are you sure you don't mean [CODE] If mainPath.Substring(0, 2) = "xx" Then[/CODE]

Member Avatar for discovery-power
0
225
Member Avatar for chitrasuriya
Member Avatar for M.Waqas Aslam
0
212
Member Avatar for 3xxx

in itunesu look for stanford university lectures by Paul Hegarty on iPhone development, this is a good start

Member Avatar for ChrisPadgham
0
267
Member Avatar for Eternal Newbie
Member Avatar for Nailroth

If you have not experience with programming, can I suggest you learn the language first on a simpler problem and work up to this

Member Avatar for Jx_Man
0
132
Member Avatar for cs_1000100
Member Avatar for Aleksej

you need to check whether the text box contains anything before you attempt to open it. After line 6 put an if statement [CODE]if textbox1.text <> "" then[/CODE] and after line 9 [CODE]end if[/CODE]

Member Avatar for Jx_Man
0
180
Member Avatar for honeybee2090

The answer is still the same, once you have identified the offending entry [CODE]ListBox1.Items.RemoveAt(IndexOfSingleItem)[/CODE]

Member Avatar for honeybee2090
0
112
Member Avatar for Sabyre

you need to include the join on the user table, something like [CODE]AND a.userId=u.UserId[/CODE]

Member Avatar for Sabyre
0
185
Member Avatar for daniel1977
Member Avatar for Alex_2011

[CODE] for i = 1 to 6 OrderMenu(i).ItemName = "" OrderMenu(i).ItemCost = 0 next i [/CODE]

Member Avatar for Alex_2011
0
369
Member Avatar for toomutch
Member Avatar for esameisa

we prefer specific questions here. If you have trouble with some code please post it and we will have a look

Member Avatar for ChrisPadgham
-2
94
Member Avatar for nipu_haq

they thread is very old, please start your own, however there has been a number of recent posts on barcode scanners it may help to read these first.

Member Avatar for androidz
0
989

The End.