-
Replied To a Post in how to provide textbox while uninstalling the .net application
You mean before or during the uninstallation process? -
Replied To a Post in Vb.net Calculator
@Minimalist, yes thanks didn't notice that error while typing. @Arun_14, I believe you can minimize the number of buttons by either placing your similar or relative codes on one button … -
Began Watching Vb.net Calculator
I have a problem with adding more than one number in calculator..the problem is while adding 1+2 answer is 3 and when i do 1+2+3 the answer is 5 and … -
Replied To a Post in Vb.net Calculator
For the error in conversion, that's means maybe the imputed data are taken as string or the problem is that you do not take care of the operations (signs {+,-,/,*}). … -
Marked Solved Status for How to Auto type and submit
Hi Dw. I would like to know how can i auto type and submit a form using vb.net, I'm not using Webbrowser or should I use it? I just saw … -
Replied To a Post in How to Auto type and submit
Yes. Thats true. Will try investigating code of doing this because I haven't done this. Is it also possible to it the condition was met to redirect the user from … -
Created How to Auto type and submit
Hi Dw. I would like to know how can i auto type and submit a form using vb.net, I'm not using Webbrowser or should I use it? I just saw … -
Began Watching How to Auto type and submit
Hi Dw. I would like to know how can i auto type and submit a form using vb.net, I'm not using Webbrowser or should I use it? I just saw … -
Began Watching an easy way to be a creative programmer ..
hi .. could you please give me an advice about an easy way to be a creative programmer ? thank you -
Replied To a Post in an easy way to be a creative programmer ..
Well for me I will say first of all, you need to have love, passion, of programming, then the term "Creative" is kinder broad in programming as there are many … -
Replied To a Post in Allow/Deny programs to run
@IPSWITCH how? -
Began Watching Automating Excel Formula For Multiple Columns
Good day! I just want a little help on how to loop from one cell to the end and set a sum Formula. I have Columns From **F to O … -
Replied To a Post in Automating Excel Formula For Multiple Columns
I think what you will need is something like this "For i As String = F To O" but not sure if it works with alphabets and a you can … -
Created A thought to Dani
Hi Dani. I was wondering is it possible to add a feature where when there is a watched article update(s) on top on the menus where it say (Watched) have … -
Began Watching A thought to Dani
Hi Dani. I was wondering is it possible to add a feature where when there is a watched article update(s) on top on the menus where it say (Watched) have … -
Replied To a Post in Print digital signature in vb.net form
Ok cool. -
Began Watching Print digital signature in vb.net form
I have put digital signature as picturebox in vb.net form To print the picturebox, i used following code. But the print of signature is very light in color. How can … -
Replied To a Post in Print digital signature in vb.net form
Try reading through this and see if there can be anything that might work on your case. http;:// www.dreamincode.net/forums/topic/77470-poor-quality-of-image/ -
Replied To a Post in how to do pagesetup during printing in vb.net
What I think you will need to do is add 2 textbox, one for "FromPage" and another for "ToPage" properties which indicates which pages to be printed, its uses a … -
Replied To a Post in Permanently place file on a media
Thanks. But I'm not clear where you said "burn the file without FINALIZING mode". Well the projects forces me to use CD/DVDs but I couldn't use +R, -R CD/DVDs because … -
Began Watching Considering learning VB.net and would be interested in learning
about current developers experiences. I had to learn vba for work, and since I am gaining familiarity with VBA, I was interested in getting active VB.net developers opinions on is … -
Replied To a Post in Considering learning VB.net and would be interested in learning
@SavedLema I think you should be more clear when saying (if you want to develop computer installed software then you can use VB.NET) I think its for Windows based OS … -
Replied To a Post in how to do pagesetup during printing in vb.net
What's the error? -
Replied To a Post in Mysql backup exposes my password
Yes that's achievable, you will have to make sure you have used an extension that is not used by any file, since the sample I did bellow only checks and … -
Replied To a Post in how to do pagesetup during printing in vb.net
www.vbdotnetforums.com/reporting-printing/7947-printing-range.html -
Created Allow/Deny programs to run
Hi Dw. I have a question of how can one detect a program attempting execute/run and also most importantly how to allow/deny programs to execute/run. I'm sure we all have … -
Began Watching Allow/Deny programs to run
Hi Dw. I have a question of how can one detect a program attempting execute/run and also most importantly how to allow/deny programs to execute/run. I'm sure we all have … -
Replied To a Post in Allow/Deny other programs execution
Oops I thought maybe java can have some support for this. I guess the language perfect for this is C++. Will start another thread there regarding this and when I … -
Replied To a Post in how can i retrieve image from database?
Check the below code. You need to pull the image. Dim connection As New SqlConnection("connection string here") Dim command As New SqlCommand("SELECT Picture FROM MyTable WHERE ID = 1", connection) … -
Replied To a Post in Permanently place file on a media
Meant While not White, also meant Line not like. -
Replied To a Post in Permanently place file on a media
Sorry to take so long. The very good example for this is HDD(Hard Drive Disk) they are re-writable disks and we can format them, but remember this, the root drive … -
Replied To a Post in how to do pagesetup during printing in vb.net
That's simple. You don't want to print all pages right? Your DGV is updated with new pages everyday right, now you have a code to print certain pages all that's … -
Created Allow/Deny other programs execution
Hi Dw. I have a question of how can one detect a program attempting execute/run and also most importantly how to allow/deny programs to execute/run. I'm sure we all have … -
Began Watching Allow/Deny other programs execution
Hi Dw. I have a question of how can one detect a program attempting execute/run and also most importantly how to allow/deny programs to execute/run. I'm sure we all have … -
Replied To a Post in Temporary block process
Well I guess VB.NET isn't capable of developing a sort of UAC to allow/deny execution of programs, I will ask Java or C++ but C++ is out of my understand. … -
Began Watching Mysql backup exposes my password
Greetings everyone! I have some codes in my application which makes a backup of mysql database and save the backup .sql file to a location on the hard disk. I … -
Replied To a Post in Mysql backup exposes my password
You can just hide the console instead. Use something like Proc.StartInfo.CreateNoWindow = True Or but I'm not sure if it will apply, just before your essential information try hiding it … -
Began Watching how can i retrieve image from database?
Private Sub RetrieveButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RetrieveButton.Click conn = New MySqlConnection conn.ConnectionString = "server=127.0.0.1; Port=3306; user id=root; password=; database=bsit3d" Dim READER As MySqlDataReader Dim Command … -
Replied To a Post in how can i retrieve image from database?
You haven't said where are you having difficulties. But check this for saving and retrieving image from SQL Server. http://www.codeproject.com/Articles/437937/Save-and-Retrieve-Image-from-a-SQL-Server-Database -
Began Watching Face detection software.
Recently Im trying to make a software who can detect multiple faces in the some time. but not only faces. Eyes, Nose, mouth. saw some vids in youtube but they … -
Replied To a Post in Face detection software.
Check this. But what you really want is to check every frame to see if it has some match. https://social.msdn.microsoft.com/Forums/vstudio/en-US/d80970b9-303a-4bf6-8b7f-7bdde93a2c00/how-to-make-comparison-between-pictures-in-vbnet?forum=vbgeneral -
Began Watching asking
HELLO, i want to ask,how to import a lot of csv file into mysql database using vb.net? -
Replied To a Post in asking
Use For Each Statement and under the "In" point to your directory (full path) where you have your csv files. -
Began Watching how to change default selected item in DropDownList?
 first take a look at attachment pic to get a idea. I have two dropDownLists.1st dropDownList ID is cboPrev(oPrev) and 2nd dropDownList ID is cboNext(oNext). These both DropDownList … -
Replied To a Post in how to change default selected item in DropDownList?
Mmm the dropdownlist I think has some indexes which you can play around with to get what you want. But since you didn't say whether the selected year should remain … -
Replied To a Post in Ho to show Msgbox in Form2 when user saves data from Form1
Ow you can do as ddanbe said or put a label in your Form1, your choice and if you want to display a message then you can just hide the … -
Began Watching how to do pagesetup during printing in vb.net
I have vb.net application. I have following code to print dgv. but when i print, all the page get printed. How can I print selected pages to be printed with … -
Replied To a Post in how to do pagesetup during printing in vb.net
Check this out. http://www.stackoverflow.com/questions/22661732/print-certain-pages-only -
Began Watching Ho to show Msgbox in Form2 when user saves data from Form1
In vb.net application I have Form1 & Form2. When user enter data and save it by btnsave event in form1, the Form2 should show msgbox "New entry" in form2 while … -
Replied To a Post in Ho to show Msgbox in Form2 when user saves data from Form1
On your code bellow the new entry add this Form2.MsgBox("Your Message Here") To you code.
The End.