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

33 Posted Topics

Member Avatar for firoz.raj
Member Avatar for arvin2006

I have created installer from Visual Studio Package and Deployment, but after successful installation, the installer files (like dlls, images and all supporting files) modified date or even creation date has been changed and all have the same date depends on the date of installation. Is there a way I …

Member Avatar for Begginnerdev
0
155
Member Avatar for ster_tet

try to insert report textbox on the data report then set its Data Field Property to the database field name

Member Avatar for abelingaw
0
205
Member Avatar for arvin2006

Hi everyone, is it possible to add/edit/save picture in MS Access DB using ADO, I have this code If (MsgBox("Are you sure you entered correct data?" & vbNewLine & "Save now?", vbYesNo + vbQuestion, "Confirm Save") = vbYes) Then squery = "": squery = "SELECT * FROM tblEmp" Call ExecuteCommand …

Member Avatar for emond
0
3K
Member Avatar for arvin2006

hi everyone. i have problem with SQL UPDATE command, with Add and Save Record, Delete Record and Search record, it works well, I have this code: for SAVE Command button squery = "": squery = "SELECT * FROM tblEmp WHERE EmpID=" & txtEmpID.Text & "" Call ExecuteCommand With rs .Open …

Member Avatar for danmae
0
145
Member Avatar for arvin2006

Hi everyone. I am developing a vb app which uses reg free com. How can I get the IDs of the DLL file to insert it into the manifest file I am creating also with vb. Is this possible?

Member Avatar for AndreRet
0
2K
Member Avatar for arvin2006

hello there everyone!! is there anyone who can help me to start creating an operating system. i don't have any idea on to start. i understand c language, but i dont have enough knowledge for such process. all i need is the simple concept or the simple/basic code for creating …

Member Avatar for maddy10988
1
254
Member Avatar for arvin2006

good day everyone! is there any idea on how to set the picture property of the Data Report's Image Control based on the Form's Image Control? this code doesn't work: 'Me.Sections("Section2").Controls("imgEmployee").Picture = frmMain.imgPic.Picture Thank you very much for responses.

Member Avatar for shenba.akila
0
176
Member Avatar for arvin2006

Hi everyone.. I don't know if this post would fit here. is there anyone here has futher knowledge regarding the creation of Thunderbird Extensions/Add-Ons. By means of self-study, I have learn the components in creating such add-on. It's a packaged file which consist of Javascript, XUL, RDF, Manifest etc.. I …

0
91
Member Avatar for arvin2006

good day everyone! how can i distribute the exe application w/o using package and deployment wizard? i just made it executable. the problem is the the database path changes because i did not use the App.Path. I know how to use App.Path using ADODB, but with ADO Data Control, you …

Member Avatar for vb5prgrmr
0
152
Member Avatar for arvin2006

hi there, i am new to excel VBA. can anyone help me how to copy all the data in excel to another excel sheet by means of visual basic. for example excel1 and excel2.. after i locate excel1, then when i click copy button, it will copy all the data …

Member Avatar for cguan_77
0
170
Member Avatar for arvin2006

Hi everyone! is there anyone has an idea on how to incorporate the biometrics scanner (time in/time out) with visual basic. For example, what would I need (devices, component, software, etc.etc..) such that I can manipulate the data in the biometrics device with visual basic programming and ms access as …

Member Avatar for arvin2006
0
999
Member Avatar for arvin2006

hi everyone, i have successfully saved the image file to DB by this code: Private Sub cmdSave_Click() Dim picsm As ADODB.Stream Set picsm = New ADODB.Stream picsm.Type = adTypeBinary picsm.Open picsm.LoadFromFile filepath With rs .AddNew .Fields("Last") = txtLast.Text .Fields("First") = txtFirst .Fields("Pic") = picsm.Read .Update MsgBox "Successful" End With picsm.Close …

Member Avatar for debasisdas
0
161
Member Avatar for arvin2006

what's wrong with the code, it doesn's display the data based on the SQL query: Private Sub cmdSearch_Click() On Error GoTo Notfound squery = "": squery = "Select * from tblStation where Station like " & txtStation.Text & "" Call ExecuteCommand With Me .txtStation = rs!Station .cboCluster = rs!Cluster .txtArea …

Member Avatar for arvin2006
0
146
Member Avatar for jreeson

JUST TRY THIS. sqlUpdateUserQuery = "SELECT * FROM tblUSERS WHERE UserName = '" & UserName & "' " Set rsUpdateUserQuery = New ADODB.Recordset rsUpdateUserQuery.Open sqlUpdateUserQuery, cnConnection, adOpenDynamic With rsUpdateUserQuery .Fields("FieldName")=txtName.Text .Fields(FieldName2")=txtName2.Text .Update End With

Member Avatar for jreeson
0
201
Member Avatar for arvin2006

Where should I get the declaration ADODB.Stream Object? as far as i know, ADODB library has only 4 objects: Command, Connection, Recordset & Parameter. I need this object for the Image DB. thanks

Member Avatar for arvin2006
0
1K
Member Avatar for dev_kc

just try : Dim squery as String Dim conn as ADODB.Connection Dim Cm as ADODB.Command Dim rs as ADODB. Recordset squery = "": squery = "Select * from tblGrade where StudentNumber=" & txtStudentNum.Text & "" Set Cm = New ADODB.Command With Cm Set .ActiveConnection = conn .CommandText = squery .CommandType …

Member Avatar for arvin2006
0
76
Member Avatar for arvin2006

hi everyone, i just want to ask if it is possible for the SQL INSERT INTO to LOOP? for example, insert new records in TABLE ten times with the same values (colum1,column2,column3,etc..) is there an alternative way instead of typing (INSERT INTO.. 10x) statement repeatedly. thanks.

Member Avatar for debasisdas
0
96
Member Avatar for dollmar
Member Avatar for dollmar
0
158
Member Avatar for arvin2006

Hi, everyone! I wish i could find someone who is diligent in answering to my queries since i am a beginner when it talks about java. I understand visual basic very well since it was the language i used when i am doing my thesis, and now i am working, …

Member Avatar for stultuske
0
101
Member Avatar for rinoa04

hi! check this website: [URL]http://msdn.microsoft.com/vbasic[/URL] [URL]http://msdn.microsoft.com/vba[/URL] [URL]http://www.vbexplorer.com/[/URL] [URL]http://www.vb-world.net/[/URL] hope these will help you.. good luck!!

Member Avatar for sadicarnof
0
146
Member Avatar for arvin2006

hello to every one! have a nice day! pls help me how to arrange data alphabetically in the data report which came from the data environment designer.. i want to keep records in ascending form such as last name. i am creating a students record and i want that their …

Member Avatar for QVeen72
0
127
Member Avatar for arvin2006

hello to everyone.. i just wanna know if somebody knows how to connect coin slot machine to the pc's parallel port.. or any idea, concepts, you can give me. thanks for all the responses. i will appreciate it. GOD BLESS

0
59
Member Avatar for arvin2006

hello there everyone! i just want to ask if what would be the process of copying data coming from the excel worksheet to a vb database? so that no need to encode data in the vb program, just insert the storage device then copy the data to the vb program …

Member Avatar for John A
0
114
Member Avatar for arvin2006

hello to everyone! is there any one can help me to associate the progress bar with the loading application? such that if it finished executing, the progress bar also finished loading.. thanks! i am grateful for the responses. God bless you all!

Member Avatar for QVeen72
0
163
Member Avatar for arvin2006

can anybody having touch screen coding. i have to invoke touch screen through vb and fetch and display the corresponding details from database based on user touch. so please help me regarding. thanks in advance

Member Avatar for arvin2006
0
79
Member Avatar for arvin2006

hello to everyone! can you give some websites containing tutorial or the basics regarding a system with touch screen monitor or with bar code scanner.. how could that be provided, things to be considered and everything.. could it be done with the vb language? i am using vb with my …

0
69
Member Avatar for arvin2006

i am doing a project, and i am not that good in database. pls help me to solve my problem regarding my thesis. i know how to mainpulate controls in visual basic and other aspects, but with regards to database access, i only have basic knowledge.. my project goes like …

0
63
Member Avatar for arvin2006

hello there!! i am creating a vb project, and i want that my mainform could not be minimized by any keyboard events, such that it acts like a desktop.. the program should not allow the user to enter any kind of application even if he/she presses the windows button or …

Member Avatar for sendoshin
0
293
Member Avatar for arvin2006

hello everyone! i add an executable program with my vb project but the problem is that it takes some time before it opens so i decided to put a loading form. how could i associate the form load with the exectubale file? i set timer and it works but it …

0
51
Member Avatar for arvin2006

hi to everyone! thanks for the responses.. how could i create an os by means of vb6? is that possible? i have learned that c,c++ and asm are the appropriate program for creating such, but still i want to use vb because it is the one i am inclined with,im …

Member Avatar for Comatose
0
79
Member Avatar for arvin2006

hi everyone! have a blessed day! is there anyone can help me to customize the data report such as on how set the data report's margin, size etc.. thanks for the response

Member Avatar for aparnesh
0
90
Member Avatar for arvin2006

hello to everyone.. how could i set the vb form properties such that the user could not click outside the form unless the form was closed. it should not be minimized if someone clicks outside the form. thanks!!

Member Avatar for DavidRyan
0
57

The End.