-
Replied To a Post in Excel Workbooks are not being completely Closed via VB.net
Well, I am not on a network so I can't test if all instance of excel are going to be closed. However testing on my machine shows that: if you … -
Replied To a Post in Excel Workbooks are not being completely Closed via VB.net
The sledgehammer method would be to close all excel processes. This can be done with: Dim obj1(1) As Process obj1 = Process.GetProcessesByName("EXCEL") For Each p As Process In obj1 p.Kill() … -
Began Watching Excel Workbooks are not being completely Closed via VB.net
Hi group, I'm discovering that my Excel spreadsheets that are being created by a VB.net app I've written isn't completely closing them as they should be. I'm struggling to understand … -
Replied To a Post in calculating total
First thing to remark is your dim of gpa as Integer. It most likely is a decimal. -
Began Watching calculating total
Hello!!!! I am a novice programmer though, I am trying to code a vb 6.0 system that calculates total marks from the exams done and return the output. I only … -
Replied To a Post in vb6 lisbox alignment
Its properly much easier to work from the lefthand side of the list. You just roughly know the max length of the first string, give some space and add the … -
Began Watching vb6 lisbox alignment
is it possible to apply this kind of alignment in vb6 listbox? Ex. aaa bbfawdawd bbbb adwadwa cc dawdawda if it is possible. Please specify the solution. thank you -
Began Watching vb6 check if integer or string
How to check in **vb6 ** if variable value is a string(**except for special character**) or number? Thanks, - Jeff - -
Replied To a Post in vb6 check if integer or string
You can check for various types. This comes from stackoverflow: Private Sub Command1_Click() Dim x As Variant ''//These are all different types: x = "1" 'x = 1 'x = … -
Began Watching Please i need help: Does OpenFileDialog have any restrictions?
Hello Guys, please i need your help: does OpenFileDialog control have a restriction on the maximum number of files it can upload? i'm curreently working on an application that uploads … -
Replied To a Post in Please i need help: Does OpenFileDialog have any restrictions?
Did you check the rules for uploading files to the server. Most enforce some rules. Just google: "upload fiels restrictions" and you will find heaps of different entries to different … -
Began Watching Importing a Form from another Project
Hi Group, I've imported an existing form into a new project that I'm creating (using Visual Studio 2015 Express/VB.net). When displaying the "Design" version (the user interface), it looks like … -
Replied To a Post in Importing a Form from another Project
Thereare a few videos you can follow and see if it gives the required result: https://www.youtube.com/watch?v=FPBMoibAmU0 https://www.youtube.com/watch?v=vQhjnMxRuGs -
Began Watching Error CA2213: Change Dispose Method to call Close or Dispose on this field
Good Morning group! I've made some minor changes to my coding (to open a log file, write to it and then close it) and now I'm getting an error that … -
Replied To a Post in Error CA2213: Change Dispose Method to call Close or Dispose on this field
You need to show the code where the error happens. -
Began Watching How to break up the string into smaller strings in VB
How to break up the string into smaller strings. I am using VB I have the following string which I want to break it up on <br/> Dim s As … -
Replied To a Post in How to break up the string into smaller strings in VB
You can only split on a charcter I think. So you need to replace "<br/>" with say "," and then you split the string, like: Dim s As String = … -
Began Watching Auto complete question, having a hard time getting this to work
I have a problem that I am really having a hard time with. I have a textbox in my form that I am trying to add into autocomplete so when … -
Replied To a Post in Auto complete question, having a hard time getting this to work
There is good code here how this works. I think you need to rethink your saving of the file and how you load it. https://msdn.microsoft.com/en-us/library/system.windows.forms.textbox.autocompletemode(v=vs.110).aspx Here is a complete snippets … -
Replied To a Post in Split and assign each line to variables
O.K instead of textboxes you declare some strings. Instead of a listbox(see your line 20 in the original post) you use a list(T) of string and proceed(and I use my … -
Began Watching Split and assign each line to variables
Hi Dw. I'm trying to read a text file. This text file has a multiply lines and what I want is that I want to separate each line or should … -
Replied To a Post in Split and assign each line to variables
Here I have used only your string in a textbox to sort your conditions out. Also notice that string.trim only trims one character. So I successivly remove the parts you … -
Began Watching have a conflict with propercase and replace
Hi i have a conflict with a string i want some words of a string to make lowercase shal i have as string Valkenburg Aan De Geul But i want … -
Replied To a Post in have a conflict with propercase and replace
You are using your type cast wrongly. Sender is a callback function: http://stackoverflow.com/questions/11713250/vb-net-what-is-sender-used-for Leave this out and you may use: Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click … -
Began Watching Add button during runtime
Hello. I am trying to add new button during runtime. Here is the scenario: when I click 'Food' button, the fields from food column in MySQL database will appear as … -
Replied To a Post in Add button during runtime
Just assuming that you use datgridview to display data and also just assuning you mean cells in the datagridview have a look at: http://stackoverflow.com/questions/25302701/change-a-cell-into-a-button-in-datagridview If this is what you want … -
Began Watching Print Data in Data Grid View On vb.net
I'm currently using below code for print all things in data grid view in vb.net 2012. By all things I mean all columns. Try Dim mRow As Integer = 0 … -
Replied To a Post in Print Data in Data Grid View On vb.net
Well there are different ways of printing certain columns of a dataviewgrid, I think this is what you mean? Here are two links: http://stackoverflow.com/questions/24058180/how-to-print-selected-column-in-datagridview-in-vb-net http://www.codeproject.com/Articles/16670/DataGridView-Printing-by-Selecting-Columns-and-Row the second one displays c# … -
Marked Solved Status for BufferZone Pro
After reading all the hype about the random ware virus I installed BufferZone Pro 64 bit. Worked o.K the first day but after booting today all my visual styles in … -
Replied To a Post in BufferZone Pro
Well running a webbrouser in a virtual machine is as good a protection as you can get as nothing can change the settings or install. I am trying now sandboxie … -
Created BufferZone Pro
After reading all the hype about the random ware virus I installed BufferZone Pro 64 bit. Worked o.K the first day but after booting today all my visual styles in … -
Began Watching BufferZone Pro
After reading all the hype about the random ware virus I installed BufferZone Pro 64 bit. Worked o.K the first day but after booting today all my visual styles in … -
Began Watching Program to convert numbers into words in visual basic 2008
Hi... does someone know how to CONVERT NUMBERS INTO WORDS IN VISUAL BASIC 2008 until millions by using recursion??? if yes... can you please share to me the code??? thanks … -
Replied To a Post in Program to convert numbers into words in visual basic 2008
I hope the person who posted the question 7 years ago has waited all the time to get your answer. Just keep on doing the good work. -
Began Watching Printing ListViews
I have the following code which handles my Print Button but I'm getting my ListView contents all on 1 page only (overwriting). How can I loop through the ListView items … -
Replied To a Post in Printing ListViews
I would recommend to study the code found here: https://code.msdn.microsoft.com/windowsdesktop/ListView-Printer-7a9be0a7/sourcecode?fileId=75223&pathId=1512114835 This works out of the box and some modifications should lead to your required result. I use his other code … -
Replied To a Post in VB.net Published and Installed. But Where is the Executable File?
The publishing folder is where you put the setup.exe file. So a folder on the desktop will do. If you did read the links you will have found out that … -
Replied To a Post in VB.net Published and Installed. But Where is the Executable File?
O.K. I just tried this process with one of my small programs. Click once applications don't create an exe file and they install into the user profile directory. However, if … -
Began Watching DataGridView
i want to make a software of POS .. and i have problem in saving my inovice using datagridview any one plzz help me,,, -
Replied To a Post in DataGridView
How are we supposed to help you if you don't show any code and where the prorgam is not doing what you expect to happen? -
Began Watching VB.net Published and Installed. But Where is the Executable File?
Group, I've created and published a VB.net program. I've also installed this onto my computer. I want to set it up now to run via the Window Task Scheduler. However … -
Replied To a Post in VB.net Published and Installed. But Where is the Executable File?
Dear oh dear, why don't you go to control panel -> uninstall a program and check if the file actually installed. There you can also search for the date of … -
Began Watching Help
Public Class Form1 Private Sub cmdmark_Click(sender As Object, e As EventArgs) Handles cmdmark.Click Dim intsum As Integer, intnum As Integer Dim inthighest As Integer Dim intlowest As Integer intnum = … -
Replied To a Post in Help
And the question is? -
Began Watching How to set Icon for my Application
Hi Dw I have created a program to lock files and by default when a file is locked the file changes from being a folder to a lock. So what … -
Replied To a Post in How to set Icon for my Application
Have a look at this link. This might explain wgat you are looking for. http://www.sevenforums.com/tutorials/57455-file-extension-icon-change-default-icon.html -
Gave Reputation to nullptr in "Download Protect"
Have you tried running Malwarebytes Anti-Malware? There's usually an executable that auto starts with Windows that keeps installing the addon each time it's removed. -
Replied To a Post in "Download Protect"
No I haven't. I am sort of careful not to introduce more problems by not getting rid of another adon. I am looking at sysinternals from MS at the moment. … -
Created "Download Protect"
Had anyone else problems with this add on. Seems to be almost impossible to get rid of it -
Began Watching "Download Protect"
Had anyone else problems with this add on. Seems to be almost impossible to get rid of it
The End.