2,951 Posted Topics
Re: Hi Shahzad, Welcome to the forum. You are most welcome to participate in the subject of your interest. | |
Re: kindly post the underlying table structure and desired output for further analysis. | |
Re: [QUOTE=archanaj39;957420]I want class,ER,Activity,Sequence,Usecase Diagrams for job portal as soon as possible.[/QUOTE] How much you are ready to pay ? | |
Re: why you need to post this question in vb 6 forum ? | |
Re: If you are looking for the connection string find it [URL="http://www.connectionstrings.com/mysql"]here[/URL]. Can find a lot of pseudo code by hitting search engines. | |
Re: Please do not hijack others threads. Please start your own thread for a new question. | |
Re: You need to maintain a flag ,and based on the flag value do what ever you want. | |
Re: Hi Rynkadink, Welcome to the forum, hope you have a nice time here. | |
Re: Welcome to the forum. I think you are an asset for us, just jump into the forum and act savior. | |
Re: why not create a sub program and call in all the events you want it to execute. | |
Re: Your requirement seems quiet contradicting to me. Post requirement clearly, what exactly you want. | |
Re: try to use this [code=vb] conn.begintrans Conn.Execute "DELETE FROM <tablename> WHERE FIELD1 = '" & cmdField1.Text & "'" conn.committrans[/code] | |
Re: All the help that you want is [URL="http://www.daniweb.com/forums/forum8.html"]here[/URL] for you. | |
Re: So, [URL="http://www.daniweb.com/forums/forum8.html"]this is the place[/URL] to peep into. | |
Re: try this [code] Private Sub cmdremove_Click() For i = 0 To list1.ListCount - 1 If list1.Selected(i) = True Then list1.RemoveItem i End If Next i End Sub [/code] | |
Re: [code]SELECT First_Name FROM dbo.Names WHERE First_Name LIKE '%' +@letter+'%' [/code] should work for you. | |
Re: Hi Ben, Welcome to the forum. Hope you have a nice time learning new stuff and sharing that you know. | |
Re: try this [code] SQL> spool c:\test.txt SQL> SELECT * FROM test; SQL> spool off[/code] | |
Re: Programmer at free time -- thats really interesting. But i am a programmer with no free time :) | |
| |
Re: Hi Don Jones, Welcome to Daniweb. Hope you have a nice time here in the forum. | |
Re: Hi Elmer, I believe everything in computer science is interesting. Now what ever you want to learn our experts are there to share their knowledge with you. Happy learning. | |
Re: Hi Ben, See you [URL="http://www.daniweb.com/forums/forum58.html"]@.Net [/URL]section of the forum. | |
Re: Hi Jude, Welcome to the learning house. We all learn a lot here by sharing our knowledge. | |
Re: What makes you think that medical database and database of shopping mall will be available to unauthorised persons on net ? | |
Re: The [B]Integer[/B] data type is a 16-bit number which can range from -32768 to 32767. You need to use [B]Long[/B] data type which is a 32-bit number which can range from -2,147,483,648 to 2,147,483,647. Long variables can only contain non-fractional integer values. You need to use Long variables over Integers … | |
Re: That is exactly how DLL files (components) are created using VB. | |
Re: You need to call VScroll inside the desired event. | |
| |
Re: I would say YES to answer 1st part of your question(you can create a module of write a DLL for the purpose.). But i am not sure what exactly you are trying to do (as per 2nd part of your question). You can get more assistance from the forum if … | |
Re: What you are looking for is control array of text boxes. | |
Re: You need to use 2 filed form database 1-student name (to populate the check box caption) 2-attendance (yes/no) (to populate the check box value) | |
Re: try this session1 SELECT * FROM EMP FOR UPDATE;----it locks the table (do not commit) session2 update emp set empno = 1000;----it is trying to acquire the table to update Till session 1 commits session2 will remain in waiting state (deadlock). Off-course there are ways to avoid that. | |
Re: That depends on how much you can afford to spend on your server and database. Any standard database will that for you. | |
Re: you need to use the the conversion function TO_CHAR TO_NUMBER TO_DATE | |
Re: You need to capture that before deleting the items from the list view. | |
Re: If both the controls are using database as source then why you need to populate data from one control to another ? | |
Re: which line is creating problem for you ? |
The End.