Forum: Visual Basic 4 / 5 / 6 Nov 1st, 2009 |
| Replies: 0 Views: 230 Hi,
How do i post data from windows form to a website.
Windows form is VB6 or VB.NET
Website is PHP site where incoming post data is processed.
Example: Command will send 'Hi' in a... |
Forum: Visual Basic 4 / 5 / 6 Jan 22nd, 2009 |
| Replies: 2 Views: 2,944 Hi,
Code below generates this error "Run-time error 424 Object required". What can i do? VB6.
thanks
Private Sub Command3_Click()
My.Computer.Registry.CurrentUser.CreateSubKey... |
Forum: Visual Basic 4 / 5 / 6 Jan 21st, 2009 |
| Replies: 5 Views: 454 There are 2 keys;
Default REG_SZ (Value not set)
Ctfmon.exe REG_SZ C:\WINDOWS\system32\ctfmon.exe
What do i do here? Do i right click somewhere to add new... |
Forum: Visual Basic 4 / 5 / 6 Jan 21st, 2009 |
| Replies: 5 Views: 454 Purpose is to make antivirus updates automatically when i local user start his/or PC every morning because if it is manual then they forget to run it. |
Forum: Visual Basic 4 / 5 / 6 Jan 21st, 2009 |
| Replies: 5 Views: 454 Hi,
I want to create a little program to run xxx.exe stored in my server from my local PC. It will be run automatically when i start my PC. How can i do it?
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jul 24th, 2008 |
| Replies: 3 Views: 709 I dont know. This is first time for me to create a report. |
Forum: Visual Basic 4 / 5 / 6 Jul 23rd, 2008 |
| Replies: 3 Views: 709 Hi,
I want to create a form for retoprt section in my VB6 project. What do i add into my form and from where?
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jul 18th, 2008 |
| Replies: 3 Views: 1,604 Done it. Example
Dim rst As ADODB.Recordset
Set rst = New ADODB.Recordset
rst.CursorLocation = adUseClient
rst.Open "Select * from u_translations", Adodc1.ConnectionString,... |
Forum: Visual Basic 4 / 5 / 6 Jul 18th, 2008 |
| Replies: 3 Views: 1,604 Hi,
Ok we have done it. Now, code below adds rows and columns but, they are all empty. I want to add "Hello" into all cells. How do i do that?
I just want to populate the msflix. That's all.
... |
Forum: Visual Basic 4 / 5 / 6 Jul 18th, 2008 |
| Replies: 3 Views: 1,604 Hi,
How can add 4 rows and 6 columns into MsFlexGrid1 with Command_click event in VB6?
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jul 17th, 2008 |
| Replies: 3 Views: 1,160 |
Forum: Visual Basic 4 / 5 / 6 Jul 17th, 2008 |
| Replies: 1 Views: 997 Hi,
I populate data from database to datagrid but, cursor focuses on last row. How can i make it focused on to first row?
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jul 17th, 2008 |
| Replies: 3 Views: 1,182 Yes Listview is solved my problem with Jx's SPECIFIC answer. Thanks |
Forum: Visual Basic 4 / 5 / 6 Jul 17th, 2008 |
| Replies: 3 Views: 1,160 Hi,
When i click on a datagrid, the selected row's id is added into a text or combo or listbox.
User will see and navigate through the added items but, can't change. What is the best way to do... |
Forum: Visual Basic 4 / 5 / 6 Jul 16th, 2008 |
| Replies: 3 Views: 1,182 Hi,
I fill the Dbgrid with information that come from database via adodc connection. Is there any chance to add checkbox across the each records listed in Dbgrid? I will check one or several... |
Forum: Visual Basic 4 / 5 / 6 Jul 15th, 2008 |
| Replies: 6 Views: 788 Thank you Jx,
I have done it with your solution and solved. In Insert clause encrypt text1 with "AES_ENCRYPT". After i used code below to check text1.
....WHERE AES_DECRYPT(psw, 'text_key') =... |
Forum: Visual Basic 4 / 5 / 6 Jul 14th, 2008 |
| Replies: 6 Views: 788 Sorry, this is wrong place for this post.
I do apologise |
Forum: Visual Basic 4 / 5 / 6 Jul 14th, 2008 |
| Replies: 6 Views: 788 Hi,
I have encripted password column in my table. I use VB6 code below to check password but it doesn't work. I think i have to call a function to decrypt it. Where and which function do i use in... |
Forum: Visual Basic 4 / 5 / 6 Jul 8th, 2008 |
| Replies: 1 Views: 632 Sorted.
I was refreshing the datagrid before i set those column values. |
Forum: Visual Basic 4 / 5 / 6 Jul 8th, 2008 |
| Replies: 1 Views: 632 Hi,
I set DataGrid1 column width as follows, but it doesn't effect when i run my program.
DataGrid1.Columns(0).Width = 3030.236
DataGrid1.Columns(1).Width = 1604.976
... |
Forum: Visual Basic 4 / 5 / 6 Jul 7th, 2008 |
| Replies: 2 Views: 786 Hi,
If any of enum value is not recorded ina column then, it doesn't return the enum value. This is what i have find out. Therefore, if table has no record then i can not populate enums into... |
Forum: Visual Basic 4 / 5 / 6 Jul 7th, 2008 |
| Replies: 4 Views: 2,412 Hi,
I have done it without adding "Public" word. Does it make any difference with or without it?
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jul 7th, 2008 |
| Replies: 4 Views: 2,412 Hi,
I have a subroutine(callMe) in Module1. I want to call "callMe" in other subroutine in Form1.
I cant do it. I cant call subroutine in other subroutine.
How do i do it.
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jul 6th, 2008 |
| Replies: 2 Views: 786 Hi,
Code below retrieves some of the enum values, not all.
Why?
Thanks
Dim RST As New ADODB.RecordSet
Combo1.Clear
RST.Open "Select Distinct Title From MyTable",Conn
If Not RST.EOF Then |
Forum: Visual Basic 4 / 5 / 6 Jul 3rd, 2008 |
| Replies: 1 Views: 823 Hi,
How do i select a particular value of a combobox?
Example combo1.selectvalue(rset.field("id"))
I believe you understand what i mean. I bring data from database and want select it in combo.... |
Forum: Visual Basic 4 / 5 / 6 Jun 30th, 2008 |
| Replies: 6 Views: 1,335 Hi,
I doesn't list all the values. Jumps on some values. Example; 1,2,3,4,5 this is listed as 1,3,5 or doesn't list one or two of them
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jun 29th, 2008 |
| Replies: 2 Views: 1,427 Thanks, you have done it. |
Forum: Visual Basic 4 / 5 / 6 Jun 29th, 2008 |
| Replies: 2 Views: 1,427 Hi,
I have created a project in VB6. How can make it SETUP / INSTALL kit? I have added some refferences and components as well.
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jun 29th, 2008 |
| Replies: 6 Views: 1,335 Hi,
I have a comboBox in my Form1. When Form1.Load then, comboBox must have those ENUM values from that Table. Because, some people always add new values. They don't tell me to add it in my VB6... |
Forum: Visual Basic 4 / 5 / 6 Jun 27th, 2008 |
| Replies: 6 Views: 1,335 I know your solution but, I have to bring ENUM ('Mr', 'Mrs', 'Miss') from table. |
Forum: Visual Basic 4 / 5 / 6 Jun 27th, 2008 |
| Replies: 6 Views: 1,335 Hi,
Create table myTable(
title ENUM ('Mr', 'Mrs', 'Miss') NOT NULL DEFAULT 'Mr'
); |
Forum: Visual Basic 4 / 5 / 6 Jun 3rd, 2008 |
| Replies: 1 Views: 553 Hi,
How do went SMS text message to a mobile phone in VB6? Does anyone have any example for it?
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jun 2nd, 2008 |
| Replies: 0 Views: 545 Hi,
How do i go to next paragraph to add additional note?
MAPIMessages1.MsgNoteText = "Dear" & " " & Adodc1.Recordset.Fields("cusname") & " " & Adodc1.Recordset.Fields("surname") & ","
... |
Forum: Visual Basic 4 / 5 / 6 Jun 2nd, 2008 |
| Replies: 2 Views: 744 Sorted.
...LIKE '%" + Text1.Text + "%'
Thanks |
Forum: Visual Basic 4 / 5 / 6 Jun 2nd, 2008 |
| Replies: 2 Views: 744 Hi,
I use VB6 with Oracle database. I also use Adodc and datagrid for retrieving data from database. If i do search with Select.....Where name IN(LIKE) '" & Text1.text & "' does return nothing. I... |
Forum: Visual Basic 4 / 5 / 6 May 27th, 2008 |
| Replies: 10 Views: 1,630 Thanks for all information Veena. |
Forum: Visual Basic 4 / 5 / 6 May 25th, 2008 |
| Replies: 10 Views: 1,630 Hi Veena,
Thanks for your replies.
What is the difference between codes below and in which cases which one is used?
Rs.Open strSQL, conn, adOpenDynamic, adLockOptimistic
Rs.Open strSQL,... |
Forum: Visual Basic 4 / 5 / 6 May 23rd, 2008 |
| Replies: 1 Views: 1,707 Solved.
sqlFran = " Begin StorPro ( '" & DataGrid1.Columns.Item(0)& "' , '" & DataGrid1.Columns.Item(1) & "', '" & Form6.DataGrid1.Columns.Item(1) & "', '" & xValue & "' , '" &... |
Forum: Visual Basic 4 / 5 / 6 May 22nd, 2008 |
| Replies: 1 Views: 1,707 Hi,
How can i call a Oracle Stored procedure in vb6?
Stored procedure : ADD_SP (1, '1', 1, 1, 'abc')
Thanks |
Forum: Visual Basic 4 / 5 / 6 May 22nd, 2008 |
| Replies: 10 Views: 1,630 Hi,
It is a "number" datatype which is automatically updated by a trigger and sequence.
Thanks |