Forum: Oracle 12 Days Ago |
| Replies: 7 Views: 537 Then you need to try this (http://www.toadsoft.com/lic_agree.html).
TOAD does not come in that price range. |
Forum: Visual Basic 4 / 5 / 6 12 Days Ago |
| Replies: 6 Views: 391 you need to copy the activex component also to the system and register that using REGSVR32 command. |
Forum: Oracle 13 Days Ago |
| Replies: 7 Views: 537 How much you are ready to invest for the tool ? |
Forum: Visual Basic 4 / 5 / 6 14 Days Ago |
| Replies: 6 Views: 376 What happens when you call the function / event in Form_Resize event ?
Is that not getting executed ? |
Forum: Database Design 14 Days Ago |
| Replies: 3 Views: 477 Relational modeling is the logical representation of the physical relation of the DB tables. |
Forum: Oracle 15 Days Ago |
| Replies: 7 Views: 537 if you are ready to pay use TOAD or PLSQL DEVELOPER, the best possible tools in market. |
Forum: Visual Basic 4 / 5 / 6 29 Days Ago |
| Replies: 16 Views: 872 try the following code, make changes as desired
Dim CN As New ADODB.Connection
Dim RS As ADODB.Recordset
Dim DataFile As Integer, Fl As Long, Chunks As Integer
Dim Fragment As Integer,... |
Forum: Visual Basic 4 / 5 / 6 Oct 12th, 2009 |
| Replies: 3 Views: 237 that has nothing to do with database connection . check your other code. |
Forum: Visual Basic 4 / 5 / 6 Oct 6th, 2009 |
| Replies: 4 Views: 292 you should get correct output with your code. there is nothing wrong with it. |
Forum: Visual Basic 4 / 5 / 6 Sep 26th, 2009 |
| Replies: 14 Views: 720 You can't disable the windows key. |
Forum: Visual Basic 4 / 5 / 6 Aug 26th, 2009 |
| Replies: 1 Views: 423 what is the source of data in the control ? is it getting populated from database ? |
Forum: Visual Basic 4 / 5 / 6 Aug 26th, 2009 |
| Replies: 3 Views: 467 * is not required in delete statement. use this
strSQL = "DELETE FROM Product WHERE Expiry_Date = '" & Text1.Text & "'" |
Forum: Oracle Aug 13th, 2009 |
| Replies: 3 Views: 659 Try the following sample code.
SELECT code,substr(code,instr(code,'-',1)+1,2) from table_name; |
Forum: Visual Basic 4 / 5 / 6 Aug 9th, 2009 |
| Replies: 8 Views: 575 but where is the loop in your code ? |
Forum: Visual Basic 4 / 5 / 6 Aug 7th, 2009 |
| Replies: 4 Views: 620 i don't see and disadvantages. |
Forum: Oracle Aug 1st, 2009 |
| Replies: 5 Views: 560 you nee to create a table with check constraint and default values.
try this
create TABLE table1
(ID INT,
status varchar2(10) DEFAULT 'Available',
CONSTRAINT con_chk1 CHECK (status IN... |
Forum: Oracle Jun 16th, 2009 |
| Replies: 5 Views: 1,970 the syntax that you are using is not Oracle syntax. |
Forum: Visual Basic 4 / 5 / 6 May 26th, 2009 |
| Replies: 10 Views: 754 You need to pass more information. |
Forum: Visual Basic 4 / 5 / 6 May 1st, 2009 |
| Replies: 3 Views: 599 What do you mean by when an exe is ended ? |
Forum: Visual Basic 4 / 5 / 6 Apr 22nd, 2009 |
| Replies: 5 Views: 1,974 There are many applications that can be finished in your time frame. Now it depends on you what you decide to develop. |
Forum: Visual Basic 4 / 5 / 6 Apr 15th, 2009 |
| Replies: 1 Views: 414 If you are looking for the connection string find it here (http://www.connectionstrings.com/).
from vb 6.0 you need to use ADO. |
Forum: Database Design Apr 14th, 2009 |
| Replies: 4 Views: 783 you do not need an intermediate table only defining the relationship by PK and FK will do that for you. But from your post i am not use what exactly you are looking for. I think you need to pass more... |
Forum: Visual Basic 4 / 5 / 6 Apr 13th, 2009 |
| Replies: 5 Views: 812 try this sample function for the job.
Code:
Public Function NumToWord(numstr As Variant) As String
Dim newstr As String
numstr = CDec(numstr) |
Forum: Visual Basic 4 / 5 / 6 Apr 6th, 2009 |
| Replies: 3 Views: 401 You need to work with CDO. |
Forum: Visual Basic 4 / 5 / 6 Mar 16th, 2009 |
| Replies: 4 Views: 337 i didn't understand your question .
What is a forum window ?
What do you mean by update without saving ? |
Forum: Geeks' Lounge Mar 11th, 2009 |
| Replies: 16 Views: 1,112 From your post i became a bit curious and tried to trace back my old days here.
My first post was in community introduction section here (http://www.daniweb.com/forums/thread80215.html), as i was... |
Forum: Visual Basic 4 / 5 / 6 Mar 11th, 2009 |
| Replies: 5 Views: 313 comment Unload Me in your code and i hope the rest wills tart working. use Me.Hide instead of unload Me. |
Forum: Visual Basic 4 / 5 / 6 Mar 11th, 2009 |
| Replies: 8 Views: 465 You need to format the date to proper format before pasing the same to database. |
Forum: Visual Basic 4 / 5 / 6 Mar 11th, 2009 |
| Replies: 18 Views: 2,426 what is that CON in your code ?
What type of object is that ? |
Forum: Visual Basic 4 / 5 / 6 Mar 10th, 2009 |
| Replies: 18 Views: 2,426 Are you using ADO to connect to the database ? |
Forum: Oracle Mar 9th, 2009 |
| Replies: 4 Views: 716 then you need to populate records from the source to a staging (intermediate) table before actually inserting them to your main table.
so with each load you need to truncate your table and load... |
Forum: Visual Basic 4 / 5 / 6 Mar 9th, 2009 |
| Replies: 18 Views: 2,426 i don't think that is VB 6.0 code.
if vb 6.0 then try this
Dim Sql As String = "insert into Customer_tbl (Custsql )values '" & txtFirstName.Text & "','" & txtLastName.Text & "')"
con.begintrans ... |
Forum: Oracle Mar 9th, 2009 |
| Replies: 4 Views: 716 The simplest method will be create a view based on the table with last five days record. That will be always refreshed every time you run any query on the view. |
Forum: Visual Basic 4 / 5 / 6 Mar 7th, 2009 |
| Replies: 10 Views: 972 then you need to push the power button on your computer. |
Forum: Visual Basic 4 / 5 / 6 Mar 4th, 2009 |
| Replies: 10 Views: 939 you need to convert the date and time to proper format before passing the same to database for processing through SQL statement. |
Forum: Visual Basic 4 / 5 / 6 Feb 27th, 2009 |
| Replies: 7 Views: 509 you need to use the function REPLACE. |
Forum: Visual Basic 4 / 5 / 6 Feb 27th, 2009 |
| Replies: 8 Views: 543 what exactly you mean by over internet ?
are you in the same network as the server ? |
Forum: Visual Basic 4 / 5 / 6 Feb 26th, 2009 |
| Replies: 1 Views: 1,301 try the simple code
con.begintrans 'con-----adodb connection object.
con.execute "your DML statement here"
con.committrans |
Forum: Visual Basic 4 / 5 / 6 Feb 26th, 2009 |
| Replies: 8 Views: 543 you must be connected to the database. |
Forum: Visual Basic 4 / 5 / 6 Feb 24th, 2009 |
| Replies: 2 Views: 393 if you are using oracle as database then can use external table for the best solution,but you need to extract the zip first. |