Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
67% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #2K
~7K People Reached

19 Posted Topics

Member Avatar for arvin2006

With rs .Open squery, conn, adOpenStatic, adLockPessimistic .Edit .Fields("EmpID") = txtEmpID.Text .Fields("LName") = txtLast.Text .Fields("FName") = txtFirst.Text .Fields("MName") = txtMiddle.Text .Fields("Pos") = txtPos.Text .Update End With

Member Avatar for danmae
0
156
Member Avatar for happygeek

Wait, there is an option.. Bill could buy the FIasco Awards and add it as a feature in Windows 7 just in time for the next version. Fiasco Live with Instant Message Failure hmmmm I never got that thing to work, and to be forced to upgrade to something not …

Member Avatar for javmedia
0
325
Member Avatar for ramesh_natesan

I recommend against using VB for this as it requires users to have MSIE browsers only. However, a workaround that is not seemingly mentioned Anywhere is the following... in the tag script language=vbscript (if used) remove the language definition and netscape/mozilla should be able to treat the page as ASP …

Member Avatar for raman242001
0
369
Member Avatar for winrawr

You're kidding right? Thats not VB classic source code to begin with. Thats .net or C # and it sure will not compile in VB 5 or 6

Member Avatar for winrawr
0
824
Member Avatar for jwill55

[b]Part 1 - VB5 or 6 to MySQL[/b] Using ODBC 3.51 connector [code] Set DB = New ADODB.Connection Set RS = New ADODB.Recordset DB.ConnectionString = "DRIVER={MySQL ODBC 3.51 Driver};" & _ "SERVER=" & sHostName & ";" & _ "DATABASE=" & sDBName & ";" & _ "UID=" & sUID & ";PWD=" …

Member Avatar for debasisdas
0
1K
Member Avatar for Noko

I did a simple test on my P4 2x3GHZ with 2GB RAM hardware/software setup MyISAM MySQL 5.0.51 Windows XP SP3 using MySQL Query Browser local connection 127.0.0.1 tested on 2,679,888 records ascending sorting in 8.9753 seconds - fetching took 0.0019s [code=sql] SELECT id,f1 FROM `cohouse`.`ukco` ORDER BY f1 ASC LIMIT …

Member Avatar for Noko
0
1K
Member Avatar for nagatron

Yes because it's a API call missing. Try this... --- [code] Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long Const SW_SHOWNORMAL = 1 Private …

Member Avatar for javmedia
0
233
Member Avatar for dottomm

I personally find inner joins in MySQL to be more nasty than awkward. Consider using "sub queries" instead It seemed to me they are faster in MySQL as well. See MySQL Man page 11.2.8.4. Subqueries with ALL

Member Avatar for dickersonka
0
466
Member Avatar for eigile

This is a traditional homework assignment huh? I will not give you the answer but the hints to solve the problem option one... run one query on table 1, load data run same query on table two altered, load data (this is not the answer the teacher wants) do a …

Member Avatar for javmedia
0
219
Member Avatar for ryan311

Before reloading a list view, combobox or other controls like this use .Clear lvwCustomer.clear empty old values and reload again

Member Avatar for ryan311
0
109
Member Avatar for nagatron

Yup... Nice and complete comatose. I didn't want to do the guys homework so I replied with a ref to the function name only. Not sure how you can report double posting since I'm new here but this is one is a repeat from nagatron. see [url]http://www.daniweb.com/forums/thread179552.html[/url]

Member Avatar for nagatron
0
205
Member Avatar for firoz.raj

This means the field name is not "requsition_no" Check your database definition (design) and verify the name of the field in the table specified that it exist and is named identically. You should also never use SELECT * in your query definition above as it has the following problems... a) …

Member Avatar for hkdani
0
116
Member Avatar for dev_kc

Could be your con string causing this too. Hard to tell when I can't see the db. Is this Access, Jet, MS SQL or other SQL92-SQL2000 compliant DBMS, with or without DNS or is it ADO called? To me (being away from VB for over a year) the call seems …

Member Avatar for javmedia
0
83
Member Avatar for nagatron
Member Avatar for wwnnm25
Member Avatar for tiger86

MySQL is easier to find online on most hosts. MS Access requires MS server and costs more to host. MySQL is free MySQL free means they also most likely have PHP, which some Windows boxed server providers still dont like to support for some reason. PHP login is faster and …

Member Avatar for javmedia
0
97
Member Avatar for xaris_gr

Dont filter in the external application as it is faster to issue constraints in your calling query in this case. using PHP style for readability [code] "SELECT `c3`,`c4` FROM `MyTable` WHERE `c1`='$c1Value' AND `c2`='$c2Value' LIMIT $maxDisplayedResultsCount;" [/code] or for range [code] "SELECT `c3`,`c4` FROM `MyTable` WHERE (`c1`>='$c1ValueMin' AND `c1`<'$c1ValueMax') AND …

Member Avatar for javmedia
0
88
Member Avatar for abu taher

Search the web for effictive and simple examples of "SQL cross join" and "Jet4.0 connection strings" & "MS ADO DNSLess connections" to apply VB6/VB5 to work with MS Access effectively

Member Avatar for javmedia
0
112
Member Avatar for themightycrag

Still, try adding a space between the code and the %'s That was a oddity on a system I used to run some 6 years ago.

Member Avatar for javmedia
0
120

The End.