2,951 Posted Topics
| |
Re: That seems to be a million $ question :) for a hint you need to design a database and store questions of different level with multiple answer options. | |
Re: you need to refresh the report once before printing. | |
Re: Why you need to create the following tasbles ? 1. bookauthor 2. bookreview 3. bookreference why not have reference in the book table itself. | |
Re: fetch in a loop and keep concatenating till no more record is there. | |
I request every one who comes across this to post you feedback here on [URL="http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/355316"]this[/URL] thread. I just want to understand is it a crime to ask someone to show some effort / the code that s/he is working on before assisting them in solving their issue. I have been … | |
Re: I have also noticed the same in the past. Is there any restriction on how many up or down votes one can hit in a day ? | |
Re: You need to subtract 2 minutes from the time and then compare. | |
Re: this is the code you have ? but i can't see any code | |
Re: I think i have already provided that in the previous thread. Just check my 2nd post on that thread. :) | |
Re: i am sure it works on version 97 onwards. I have never worked on Access 2.0. | |
| |
Re: If decrypting cipher was so easy anyone would have done that. Basically CIPHER is an algorithm, and to break that you need to understand the same and find a reverse algorithm . And what about do your own assignment by yourself. | |
Re: Hit google and purchase it from the vendor. | |
Re: going to where from where ? Please post more information and show some effort . | |
Re: try this sample, may help. [code] myConnection.Open() cmd = New SqlCommand(Sql, myConnection) cmd.ExecuteNonQuery() cmd.Dispose() cnn.Close() myConnection.Close() [/code] | |
Re: You want to display an entire PDF file in a picture box ? | |
Re: try the following [code]SELECT FranchiseName INTO @FranciseId FROM franchise WHERE username=@username[/code] | |
Re: 1. Why not change the function signature and make it to return DECIMAL. or 2. Convert the value (after all your calculation) into string before returning. | |
Re: Please read more [URL="http://msdn.microsoft.com/en-us/library/3kz7fyks%28v=vs.80%29.aspx"]here[/URL]. | |
[B]Community Center[/B] link is not at its usual place on extreme right after [B]Business Exchange[/B]. It appears on the left below Hardware & Software link on a second line. And this problem seems to be only with Firefox 4. | |
Re: What you need to use is Custom [URL="http://msdn.microsoft.com/en-us/library/9eee01cx%28v=vs.80%29.aspx"]Validator[/URL]. also [URL="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.customvalidator.aspx"]read this[/URL]. | |
Re: Are you pulling data from database ? | |
Re: You can read more [URL="http://www.java2s.com/Code/VB/Database-ADO.net/DataSet-Update.htm"]here[/URL] , [URL="http://www.startvbdotnet.com/ado/sqlserver1.aspx"]here[/URL] and [URL="http://www.dotnetspider.com/forum/101-Update-Access-database-using-datasets.aspx"]here[/URL]. | |
Re: that should work for you. | |
Re: You need to go through [URL="http://www.daniweb.com/software-development/visual-basic-4-5-6/threads/214396"]this[/URL]. go through the links , try to understand the code and then comeback with the code that you are working on. Our experts are always there to lend a helping hand. | |
Re: Who do you think is going to read all these. You need to point to the exact line of code that is causing any error. | |
Re: Use any third party tool or do the entire process manually. yes, your code needs to be changed. | |
Re: I really do not understand the way this question is framed. What exactly you are trying to explain / ask ? | |
Re: More information required to reply with a solution. What exactly you are trying to do ? | |
Re: When you say 1st table, i assume that you are inserting into the Prent table and not into the child table. This error arises if you try to do the reverse. i.e.--trying to create a child record in the child table for which there is no parent record in the … | |
Re: I hope you are storing the path of the file. It is absolute path or relative path ? What happens when you select the file name and try to open / play ? | |
Re: 1. Need to ensure there is INDEX on search columns 2. Need to disable INDEX during data loading operation, and enable later on. 3. Need to check the SQL, may need to tuned. 4. Need to check for Hardware. 5. Need to check how loaded is your network. 6. May … | |
Re: You need to read [URL="http://coder000.com/store-retrieve-binary-data-blobs-audio-video-image-exe-etc-in-database-in-vb-net/"]this[/URL]. | |
Re: try the following code. this is used to retrieve picture from blob field. [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 String Private Const ChunkSize As … | |
Re: CheckState.Unchecked is not about the individual items. | |
Re: Is it because of the single quote. Just frame and print the query before executing, it will be easy to trace the error. | |
Re: workaround :- Use a label instead of a button to avoid all the lengthy windows API calls. and use RGB() to create color of your choice. | |
Re: you need to use REPLACE function to work around single quote. | |
Re: Hey shruti, Is that a task for me. Where is the effort ? What is the table structure ? trigger will execute, what exactly ? | |
Re: Kindly post the SQL part only. I am not sure from this code where is the INSERT statement . | |
Re: So you mean to say what ever you enter in text boxes needs to be added into list view, right ? and i think after 80 posts, you should understand that you need to show some effort to get any help here. | |
Re: @saddas if you use [B]rs.MoveLast[/B] you will always get only one (the last) record. | |
Re: lets see your code that you have so far. |
The End.