25 Posted Topics
Re: Well, I have a piece of code to save items on any folder you have, it works on Outlook 2010, not tested it yet with 2013. If you still need it, just reply to this message or send me an IM. | |
Re: Well, If you plan to do backups when any change happens, you must consider that you will run out of space very fast. It is prefered to implement a mechanism to save or to track who makes changes, or something to save the previous and new values in order to … | |
Re: First advice, don't use MS Access. You can use something like SQL Server Express version. there are plenty of options, what exactly are you looking for? | |
Re: try this: [url]http://www.emoreau.com/Entries/Articles/2007/11/Adding-a-button-on-the-title-bar.aspx[/url] | |
Re: Take a look at this source: [url]http://www.vb6.us/tutorials/using-fso-file-system-object-vb6[/url] | |
Re: The best you can do here, is to write a Sub, call it from the form.Load AND when the subform is closed. In order to know when the subform closes, open the subform with subform.ShowDialog, right after that sentence, call the same sub you call when form.Load occurs. | |
Re: As far as I can see, is not a simple reverse, you are reversing the string in pairs so the code is not so straightforward. When the string is odd, the code is adding a non existent 0 in the original string. I came with this code, I hope this … | |
Re: If you need to understand how MP3 tagging works, take a look at this post: [url]http://www.codeproject.com/KB/vb/mp3id3v1.aspx[/url] Basically, MP3 tagging is implemented by adding this data to the final of the MP3 file, the last 128 bits of MP3 files represent this data. | |
Re: It's hard to do that because each item is not individual, in your example, Gallardo is by itself a subitem of Bull item. If you need to do that, the best attempt i can think about, is to create 2 listviews placed together with BorderStyle=None so they appear as the … | |
Re: Yes, it is possible, you need to design your database inside Access and then USE it within VB. The problem with database questions is they are hard to answer in a post with a complete solution. There are several methods to use a database in VB. I prefer to connect … | |
Re: Seems like this can help you with the alignment problem: [url]http://vbnet.mvps.org/index.html?code/listapi/listrightalignstylebits.htm[/url] In order to make your listbox already filled with data as the form appears, make a Sub that fills the data and call it in the Form.Load event, this way you can use it again only calling the same … | |
Re: What exactly you want to do?, the code posted is to select the first node in the TreeView. What is the program aiming to do with the treeview? | |
Re: Try to use the VBCrLf constant as the separator, or, use debugger to watch the values of the variables when they are read from the file. | |
Re: This will do the trick: [code] Dim TestNum As Integer txtTest1.Text = "IN" & Format(Now.Year,"0000") & Format(Now.Month,"00") & Format(TestNum+1,"0000") [/code] | |
Re: I think you want to print only the itmes checked within the listview. Is that correct?. | |
Re: Your request is not so clear, but i think you want to branch or delimit code execution after this function call. If that's what you need, you can conditionally execute the code after the connTest is called, or provide more details about what you really want to do. | |
Re: Please provide your code. Refresh method only redraws the user interface, but don't fetch new data from you database. If you provide your code, we can have a better idea of what you want to do. | |
Re: I think the problem is due to file permissions, are you opening the file with another program as you try to connect?. | |
Re: What DBMS are you using for your solution?. To deploy the solution, you need to add a Setup Wizard Project to your solution and configure the Output of the installer. | |
Re: [code] ' set the previous date/time here Dim theTime As Date = New Date(2011, 3, 29, 10, 38, 4, 0) ' check it If DateDiff(DateInterval.Minute, theTime, Now) < 2 Then MsgBox("less than 2 minutes") Else MsgBox("whatever") End If [/code] | |
Re: You need to add a Wizard Setup Project to your solution, customize installation parameters and Build the project. Remember to change the IDE to Release before building it and never attach source code to Setup. If you need more details let me know. | |
Re: Please provide more datails about the task to do. | |
Re: Hi, I was searching for an example about how to count lines, this was great but it's not completely useful when your application has nested folders with projects inside. I had to rewrite the code to be recursive and count all lines of code of my solution, the final solution … |
The End.