2,951 Posted Topics
| |
Re: those are not characters but strings on data. On what basic / logic you want the output ? Is the format always same for all the records ? | |
Re: what exactly you need to implement ? | |
| |
Re: From your code i am not sure what are you inserting into the picture field ? Since you are using [B]Me.Picture_box1.Text[/B], i do not understand how that will store the picture in database. | |
Re: please post the code that you are working on. | |
Re: try this. [CODE]j = Convert.ToInt32(txtstaff_id.text.ToString())[/CODE] also change [CODE]select staff_id from staff [/CODE] to [CODE]select max(staff_id) from staff[/CODE] | |
Re: How you define [B]file is corrupt[/B] ? | |
Re: You need to handle null properly while reading from source. | |
Re: You need to store the database file in application path. | |
Re: Instead of doing that from another system and trying to synch the changes on target system. Create the changes as a script and apply the same on target system directly. | |
Re: I don't understand anything from your question either. | |
| |
Re: What exactly you want to encrypt and decrypt in the database ? Data in particular fields or the entire database ? | |
Re: you need to format the dates properly before passing the same into the database. | |
| |
Re: You need to read [URL="http://support.microsoft.com/kb/158140"]this[/URL] and [URL="http://www.vb6.us/tutorials/playsound-api"]this[/URL]. | |
Re: You need to join both the tables based on ItemNumber or Ponumber or both based on your database structure. | |
Re: you need to use [CODE]SELECT price into product_price FROM product WHERE produc_id=777;[/CODE] and then check the value of the variable [B]product_price[/B] in a IF...END IF block. | |
Re: try the sample code [code=oracle]select * from branch minus select * from branch where rownum < (select count(*) from branch)[/code] | |
Re: else if you want to run the program without installation (in the same system) ,you can simple compile an EXE from file menu---->Make exe. | |
Re: Try this. [CODE]select EmployeeID, sum(TransactionAmount) as TotalAmount from employee where EmployeeID IN ('E123','E234') group by EmployeeID;[/CODE] | |
| |
Re: are you storing login credentials in database ? | |
Re: May be you only understand what are you trying to do. | |
Re: Your question has nothing to do with VB.net application. The business logic needs to be implemented entirely at database level. | |
Re: [CODE]if val(text1.text) <> "0" or val(text1.text) <> "" then c = val(text1.text) * 1 + c end if[/CODE] | |
Re: I can't find any code where you are executing the [B]OleDbCommand[/B] object. | |
Re: You want to search for all hundred at once or in a loop ? | |
Re: are you getting any error with the code ? check for your DB field type and the data that you are passing in the SQL. | |
Re: The simplest thing to do is to check system date on start up. suppose you want for 30 days from today ---say 25_sep-2011. in the start up check if the date is less than the above date. if it is more display an error message. for a better and full … | |
Re: Please find more details [URL="http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html"]here[/URL] and [URL="http://www.quest.com/sql-navigator/"]here[/URL]. | |
Re: what software you want to make ? | |
Re: What happens when you execute the code ? Are you getting any error ? | |
Re: please try to use the sample code to store picture. this sample code uses ADO for database connection [code=vb] 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, Chunk() As Byte, i As Integer, FileName As … | |
Re: Try using [B]SHELL[/B]. | |
Re: Really difficult to guess anything without detailed information. | |
Re: Another approach (using database). If using oracle as database, compile [URL="http://bytes.com/topic/oracle/insights/771381-sending-mail-using-utl_smtp"]this[/URL] procedure in database. Call the same from VB 6.0 using ADO like [URL="http://bytes.com/topic/visual-basic/insights/739076-executing-oracle-stored-procedures-type-parameter"]this[/URL]. The second link is a sample only, to show how to call a oracle stored procedure from VB 6.0.. |
The End.