No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
Re: [QUOTE=damson;608471]Can anybody help me in on how to connect my VB interface to a database. I have already designed the interface but I do not know how to connect it to Dbase. Damson[/QUOTE] try the following [CODE] 'in VB i set references to - Microsoft ActiveX Data Objects 2.5 'declare … | |
Re: [QUOTE=jemz;1145011]hello please help me on this problem....i put this in form load txtunit.text = "C" my problem is that how can i position the cursor after the letter C..if i use txtunit.setfocus the cursor can be found before the letter C but i want it after...please help me.. thanks in … | |
Re: [QUOTE=farzana.yasmen;1143975]Hi I want to enter a coding which should find farzana though i type far or zana in the txtsearch.Text. if txtsearch.Text = far then it should display a record existing with farzan or farhan or any other record having far in the record. can some body please help me … | |
Re: hi, just as vb5prgrmr said. open the graphics in say paint use the 'save us' option from file menu then choose bitmap option in the Save as type option. Good luck | |
Re: [QUOTE=jemz;1112495]hello please help me..can you give some idea on how to declare variables in local....and also how to declare variables in public...hoping for your positive responds[/QUOTE] hi jemz, i hope i will be of help. to declare a public variable u must use the key word 'Public' e.g [CODE]Public strString … | |
Re: hi Blocker, i hope the following will be of help. Private Sub CmdRecordcount_Click() 'in the following example i have selected all the fields in the table 'this will help in referencing all the fields in the table rs.Open "select * from tbl_studentdetails where studentid='" & stuid & "'", cn, adOpenStatic, … | |
Re: [QUOTE=blocker;1099896]Good day. I just want to ask on how to make a textbox accept positive & negative numbers but will not accept string that was entered.. Ill try to use [code=vb] if not isnumberic(text1.text) then msgbox"error' else end if [/code] But if negative numbers is entered it will not read … | |
Re: try creating a 'User DNS' or Drivers from the ODBC Data Source Administrator then connect using the following example ''in VB i set references to - Microsoft ActiveX Data Objects 2.5 or 'higher say 2.8 'in a module create the following function which will be called on 'the formload of … | |
Re: hi, assuming the pc's are networked 1. make a copy of your database (just in case). 2. split the database so that you have 2 databases one with tables only and a different name the other with table links (and queries,pages, forms etc if you had any) 3. place the … | |
Re: 'i created a database (subscriptiondb.mdb) and saved it in the 'same folder as the project 'then i designed a table (tbl_subscription) with fields (e.g. Booktitle, 'CopiesRemaining) 'in VB i setted reference to - Microsoft ActiveX Data Objects 2.5 'the following are my variables Dim cn As New ADODB.Connection Dim rs … |
The End.