Forum: JavaScript / DHTML / AJAX Jul 31st, 2009 |
| Replies: 0 Views: 262 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... |
Forum: Visual Basic 4 / 5 / 6 Apr 23rd, 2009 |
| Replies: 1 Views: 470 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... |
Forum: Visual Basic 4 / 5 / 6 Apr 2nd, 2009 |
| Replies: 6 Views: 714 hi, the one you provided is about scripting, but anyway, thank you for giving some suggestions. it can help. i am focusing on excel visual basic automation. thanks.... |
Forum: Visual Basic 4 / 5 / 6 Apr 1st, 2009 |
| Replies: 6 Views: 714 Here is the idea, i have an excel file which contains data(say excel1). In my visual basic form, i have 'locate file' button, (for locating excel1). After i locate excel1 for whatever path it is... |
Forum: Visual Basic 4 / 5 / 6 Mar 31st, 2009 |
| Replies: 6 Views: 714 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... |
Forum: Visual Basic 4 / 5 / 6 Mar 31st, 2009 |
| Replies: 13 Views: 1,156 ok, thank you.. i'll update you soon... |
Forum: Visual Basic 4 / 5 / 6 Mar 30th, 2009 |
| Replies: 13 Views: 1,156 ah ok... here is the manufacturer. MySolutions Inc, model: T4 Classic.
MySolutions Fingerprint Time Recorder System, Touchlink.
thank you very much for time and responses.. |
Forum: Visual Basic 4 / 5 / 6 Mar 30th, 2009 |
| Replies: 13 Views: 1,156 you mean i won't be able to do what they are referring to? is it possible to program it by using visual basic? i got the user manual. but where do i start? hayy.. how i wish im a professional.. but i... |
Forum: Visual Basic 4 / 5 / 6 Mar 30th, 2009 |
| Replies: 13 Views: 1,156 ok, thanks.. after that? could you give me sample outline for me as guide, then i'll do research for the rest.. thanks |
Forum: Visual Basic 4 / 5 / 6 Mar 30th, 2009 |
| Replies: 13 Views: 1,156 thank you for the responses. we already have the thumbprint scanner here in the office, and it is used already. i am new employee and they thought i can program the data, but actually i am new when... |
Forum: Visual Basic 4 / 5 / 6 Mar 30th, 2009 |
| Replies: 13 Views: 1,156 the one i am referring to is thumb print scanner.. what would i need to manipulate the data.. have no any idea about this.. thanks |
Forum: Visual Basic 4 / 5 / 6 Mar 29th, 2009 |
| Replies: 13 Views: 1,156 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..)... |
Forum: Visual Basic 4 / 5 / 6 Mar 23rd, 2009 |
| Replies: 3 Views: 610 thank you.. it worked!
God bless (",).. |
Forum: Visual Basic 4 / 5 / 6 Mar 23rd, 2009 |
| Replies: 3 Views: 610 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:
... |
Forum: Visual Basic 4 / 5 / 6 Mar 19th, 2009 |
| Replies: 5 Views: 1,951 good morning, i have successfully saved the picture together with the data by this code:
Private Sub cmdSave_Click()
Dim picsm As ADODB.Stream
Set picsm = New ADODB.Stream
... |
Forum: Visual Basic 4 / 5 / 6 Mar 19th, 2009 |
| Replies: 1 Views: 681 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 =... |
Forum: Visual Basic 4 / 5 / 6 Mar 19th, 2009 |
| Replies: 4 Views: 469 ok, thank you. already found it, its a reference, not a component. |
Forum: Visual Basic 4 / 5 / 6 Mar 19th, 2009 |
| Replies: 3 Views: 1,066 ah, it's a reference, not a component, i've found it.
anyway, thanks, thanks.... |
Forum: Visual Basic 4 / 5 / 6 Mar 19th, 2009 |
| Replies: 3 Views: 1,066 ah ok, the one i am using is Microsoft ADO Data Control 6.0 (OLEDB), i thought it is similar to the one you said. but how could I add these component? is it in VB 6.0? or not? thanks for the reply |
Forum: Visual Basic 4 / 5 / 6 Mar 19th, 2009 |
| Replies: 3 Views: 1,066 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 |
Forum: Visual Basic 4 / 5 / 6 Mar 19th, 2009 |
| Replies: 2 Views: 491 JUST TRY THIS.
sqlUpdateUserQuery = "SELECT * FROM tblUSERS WHERE UserName = '" & UserName & "' "
Set rsUpdateUserQuery = New ADODB.Recordset
rsUpdateUserQuery.Open sqlUpdateUserQuery,... |
Forum: Visual Basic 4 / 5 / 6 Mar 18th, 2009 |
| Replies: 4 Views: 469 ok, thanks.. what about ADODB.Stream.
how could I add ADODB.Stream in declaration? as far a I know, the ADODB library has only 4 objects:Command, Recordset, Connection & Parameter. |
Forum: Visual Basic 4 / 5 / 6 Mar 18th, 2009 |
| Replies: 1 Views: 501 try to add " & Text1.Text & " instead of " & Text1.Text |
Forum: Visual Basic 4 / 5 / 6 Mar 18th, 2009 |
| Replies: 5 Views: 1,951 good evening:
how could this code be fitted to the above code (to what i have posted)..
for example, in my form i have imgPhoto in the form, having UPLOAD Picture button, then after locating... |
Forum: Visual Basic 4 / 5 / 6 Mar 18th, 2009 |
| Replies: 4 Views: 469 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... |
Forum: Visual Basic 4 / 5 / 6 Mar 17th, 2009 |
| Replies: 1 Views: 690 try to insert report textbox on the data report then set its Data Field Property to the database field name |
Forum: Visual Basic 4 / 5 / 6 Mar 17th, 2009 |
| Replies: 3 Views: 393 as what you have said, on the SEARCH comman button. dgGrade is just name of the datagrid control. make some edit regarding the statement I have posted, try to edit, add/delete some statement,... |
Forum: Visual Basic 4 / 5 / 6 Mar 17th, 2009 |
| Replies: 3 Views: 393 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=" &... |
Forum: Visual Basic 4 / 5 / 6 Mar 16th, 2009 |
| Replies: 5 Views: 1,951 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 +... |
Forum: Visual Basic 4 / 5 / 6 Mar 3rd, 2009 |
| Replies: 4 Views: 934 thread closed. already found the solution. thanks... |
Forum: Visual Basic 4 / 5 / 6 Mar 3rd, 2009 |
| Replies: 4 Views: 934 but wait, .Edit is neither method nor data member of ADODB Recordset. |
Forum: Visual Basic 4 / 5 / 6 Mar 3rd, 2009 |
| Replies: 4 Views: 934 good morning.. thank you for the reply!
i just forgot the ".Edit" command.
i am using SQL UPDATE statement with this syntax:
UPDATE tblEmp SET LName=" & txtLast.Text & ",FName=" &... |
Forum: Visual Basic 4 / 5 / 6 Mar 3rd, 2009 |
| Replies: 4 Views: 934 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 =... |
Forum: Visual Basic 4 / 5 / 6 Feb 19th, 2009 |
| Replies: 2 Views: 814 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... |
Forum: Visual Basic 4 / 5 / 6 Feb 18th, 2009 |
| Replies: 9 Views: 670 Private Sub Form_Activate()
Form2.Label1.Caption = Form1.Text1.Text
End Sub |
Forum: Java Feb 13th, 2009 |
| Replies: 10 Views: 692 yes, i'll take it.. thanks. |
Forum: Java Feb 13th, 2009 |
| Replies: 10 Views: 692 ok, thank you for all your concerns. i'll be starting to learn about it with all by myself, what i really mean to say is that, if there's someone who can guide me as i walk through it.. but for the... |
Forum: Java Feb 13th, 2009 |
| Replies: 10 Views: 692 hi silly boy. can you help me through the process? from the start.. thanks |
Forum: Java Feb 12th, 2009 |
| Replies: 10 Views: 692 thank you for the response. do you have knowledge with JAVA? how it can be programmed? sample to complex programs? |
Forum: Java Feb 12th, 2009 |
| Replies: 10 Views: 692 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... |