• Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Bring back the move next page button on the top of a thread

    I use bookmarks in chrome to arrive vb.net etc. So here I quickly scan things I might be interested in. If nothing happened in a thread I was interested I …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Bring back the move next page button on the top of a thread

    Well it is just for really long threads. Like you got one just now with 48 replies. I know I read the first page, came back a while later and …
  • Member Avatar for Minimalist
    Minimalist

    Created Bring back the move next page button on the top of a thread

    I like to see a button to move to the next page in a thread on top of the thread. Now, if a thread spans more pages I have to …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Bring back the move next page button on the top of a thread

    I like to see a button to move to the next page in a thread on top of the thread. Now, if a thread spans more pages I have to …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Compress single large file

    Hello, I am trying to develop VB.NET application which it will compress files one by one but the problem is the size of each file is too large in size …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Compress single large file

    Or this directly off DaniWeb: https://www.daniweb.com/programming/software-development/code/485511/compress-files-into-zip-with-progress-and-updates
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Seperate the values in the textbox to show in different labels using button

    hello, i want to be able to separate the values in a textbox and display the separated values in different labels using a button this is what i want to …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Seperate the values in the textbox to show in different labels using button

    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button5.Click Dim str As String = Trim(TextBox1.Text) Label1.Text = Mid(str, 1, 2) Label2.Text = Mid(str, 3, 1) Label3.Text = Mid(str, 4, …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in trying to get data from a html file

    Assuming you added "Vehicle" to the list you can replace the lines between these ------------ two lines with this code snippet. '------------- Dim lineIndex As Integer = 0 For Each …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in trying to get data from a html file

    Since you got a few indexes: looklist.index, listbox1.index and from the string.split you need to be more specific which index is going out of range and show the code where …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Fast Efficient Way to Hide and Show Textboxes and Labels

    Every vb.net program has colections of the controls that are contained within. You can get all the controls with something like: For Each ctl As Control In Me.Controls 'do something …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Fast Efficient Way to Hide and Show Textboxes and Labels

    Well, he got already the controls array. As I said it depends just on the conditions. To get all labels with a condition from a textbox I would use something …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Fast Efficient Way to Hide and Show Textboxes and Labels

    Group, I've expanded a small app that started with 50 textboxes and labels to 200 of each. To hide and make these visable I use the codes lblProperty01.Visible = False …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Fast Efficient Way to Hide and Show Textboxes and Labels

    Could you elaborate at what the conditions are that make them visible or hide these?
  • Member Avatar for Minimalist
    Minimalist

    Began Watching find duplicates and retrive to that record set in access and vb6

    Hello every one. i am trying to catch duplicate values from a data. in the picture when i want to add new record, then if the record already exists then …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in find duplicates and retrive to that record set in access and vb6

    You shouldn't allow duplicate records in your database. To prevent this use a unique or primary key to avoid this. Anyway, here is a possible solution at stackoverflow: http://stackoverflow.com/questions/1840782/how-to-find-duplicates-in-recordset-using-vb6
  • Member Avatar for Minimalist
    Minimalist

    Began Watching trying to get data from a html file

    Hello everyone, what i am trying todo is get the following data from a html file.... Friday 31 - 1 - 2014 Created: 31/01/2014 2:32 PM Updated: 31/01/2014 7:03 PM …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in trying to get data from a html file

    Could also be done just using vb.net and regex. I create a lookup list first to filter the lines out that get used. Than clean it all up. Imports System.IO …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Urgent help on VB6 Datareport issue on other computers

    Hello I have created a installer package of my project build in Visual Basic 6.0. I have using Advance Installer for making package. every thing works perfectly on other systems …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Urgent help on VB6 Datareport issue on other computers

    I have been there before and ended up writing a .bat file to a) move some files to the correct directories and b) register some controls(before by hand via cmd). …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Active Directory Listing

    Hi Expert, would it be possible to list all the current active Domain equivalent Active Directory in a network? Hoping to here from you. Thanks.
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Active Directory Listing

    Well, maybe you like to try this link: https://social.msdn.microsoft.com/Forums/en-US/32031a1b-4b52-4bee-8a0c-9f1ecd8e83bf/get-list-of-computer-within-a-network?forum=Vsexpressvb
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Programatically creating multiple variables through a loop

    Here I mostly used your code but added a list to store your strings and a listbox to display these. Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Programatically creating multiple variables through a loop

    Group, 10 months ago I posed the same question as to how to programatically create the variable names via the loop. However I'm now in real need of doing this …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Programatically creating multiple variables through a loop

    I would use a list of string to create the variables. No need to use redim statements: Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Reading an Excel Spreadsheet via VB.net

    Hi group, I'm modifying a VB.net app where I need to loop through an Excel spreadsheet for data out of two column. In essence the code will need to read: …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Reading an Excel Spreadsheet via VB.net

    Hi Don, its not that hard. There is good example here: http://www.visual-basic-tutorials.com/WriteToExcel2007.php The most important thing is to follow the instructions in regard to add the reference.
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in How do I restrict the upload filesize

    Well, the deliminator depends on the region for which your computer's system or program is set. To only display the required digits use the math.round function: Math.Round(value, 1) https://msdn.microsoft.com/en-us/library/75ks3aby.aspx
  • Member Avatar for Minimalist
    Minimalist

    Began Watching How do I restrict the upload filesize

    Hi i am making an application in vb.net and i need help. The user will send me his issues or information through attachment. but i want a restriction on filesize …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in How do I restrict the upload filesize

    You need to apply some division to the file.length as this comes in bytes based on the charcters in your file. Here are some of the divisions: info.Length / 1024 …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Converting VB5 Application

    Hello, I have for a number of years supported a VB5 application which controls customers equipment. We are now going to do some major changes to software because hardware is …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Converting VB5 Application

    I moved straight to the newest version of vb.net. Especially the API calls were a headache foe me. Got rid of these now as they were always a problem (16 …
  • Member Avatar for Minimalist
    Minimalist

    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 …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Vb.net Calculator

    @Mr M In line5 you probably mean: Answer = Value1 - Value2 ? @Arun 1) I would use the read out (textbox ?) also as a variable to keep on …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Open new form without duplication

    In vb.net application , I open the form2 from form1 by btn event with following code. But if the user minimise it and again open it from the button event, …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Open new form without duplication

    You need to check if th form does exist and if it does set the window.state to normal. Something like this: Private Sub Button1_Click(sender As Object, e As EventArgs) Handles …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Understanding Regex

    Group, I need to insert an "If/Then" statement that will require the command to check the string for multiple variables. In other words it needs to say something like this: …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Understanding Regex

    Looks more like a select case statement where there are more than one clause. See a good example of it here: https://msdn.microsoft.com/de-de/library/cy37t14y.aspx
  • Member Avatar for Minimalist
    Minimalist

    Began Watching VBA Equivalent to CStr(getFolderNameGD()) (VB.net)

    Group, In VB.net, I use the following to return the actual name of a folder where data is kept. Is there an equivalent in VBA? I sure hope so. It …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in VBA Equivalent to CStr(getFolderNameGD()) (VB.net)

    Maybe the anser here helps? http://www.mrexcel.com/forum/excel-questions/717592-visual-basic-applications-get-folder-name.html
  • Member Avatar for Minimalist
    Minimalist

    Began Watching How to check if a file contains a file inside

    Hi Dw. How can I tell if a file contains any file within it? I mean suppose I have a picture and I want to check if its a pure …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in How to check if a file contains a file inside

    This link might give you some insight of how to check some common files for tempering. http://www.forensicprotection.com/Education_Authenticate.html
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Designer has been disabled

    Sorry, but this is all I could think of.
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Project transfer

    Well only you know which namespaces or libaries you need to import or refer too. Obviously you are using amethod and not referring to the namespace you would need. https://support.microsoft.com/en-us/kb/304260 …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Designer has been disabled

    O.K. so you did all the cleaning and rebuilding. Now, if I open your Breakage.Designer file I still can see references to the powerpacks. You need to remove these as …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Project transfer

    Hi, I have two computers (Desktop and laptop), The desktop is my office computer and I have been using it for my application development(Visual basic). I have Visual studio 2013 …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Project transfer

    In the formload event: Me.Width = Screen.Width Me.Height = Screen.Height However, that might not display all of the controls, depending on the layout of the form. You need to deal …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Designer has been disabled

    In the resx of your first zip file you still have a reference to the powerpack. Try to import the original resx file into your project and do a rebuild. …
  • Member Avatar for Minimalist
    Minimalist

    Replied To a Post in Image Grid Slice

    Well as I stated before, can create 9 small bitmaps and move these into the pictureboxes. That way you won't get any line and since it's always the same picture …
  • Member Avatar for Minimalist
    Minimalist

    Began Watching Display groupbox based on inputbox number

    Hi there I'm creating an invoice generator program, first the user must enter the number of products to diplay on a pdf file, below are my codes. My proble is, …

The End.