- Strength to Increase Rep
- +10
- Strength to Decrease Rep
- -2
- Upvotes Received
- 176
- Posts with Upvotes
- 137
- Upvoting Members
- 77
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
Re: >I'm not sure if this product is even sold in the mid west or west coast. It's a Cargill product. http://www.shadybrookfarms.com/Contact.aspx Who knows where it originates from. Looks like the pink stuff that they were selling as hamburger meat. | |
Re: Hey, hey, hey — don't be mean. We don't have to be mean. 'Cause, remember: no matter where you go... there you are. --- Buckaroo Banzai | |
Re: Have you tried the example in the documentation? [Click Here](http://msdn.microsoft.com/en-us/library/system.windows.forms.cursor(v=VS.90).aspx) | |
Re: I may be mistaken here, but under VB2010 Express you can use the ReportViewer control, however you will not have design time support for either the control nor the Report. The only way I have been able to make this work is to add the control to the Form via … | |
Re: It's really pretty simple. Steps: 1. Goto your Report in design view and hit the F4 key to bring up the property window for the report. 2. You need to define a ReportParameter. Click on the elipsis next to the ReportParameters field in the property windows. This will bring up … | |
Re: The short answer to most of your questions is: Yes it can be done. I prefer to use a DataTable for the data source. Here is an example of how to set the needed properties to produce my interpretation of what you are looking to accomplish. If you have any … | |
I have just seen a resurrected thread about issues with loading images to a PictureBox and the inability to delete the file while the program is running. There was no clear explaination of the problem, only suggested hacks and apparent frustration. So I thought I would offer this explanation from … | |
I am posting this in response to those who ask about replacing the webbrowser (WB) control’s default browser. You cannot ask the WB control to use a different browser, it is hardwired to use the current version of Microsoft’s Internet Explorer that is installed on the target computer. It may … | |
Re: Granted. Now what are you going to do about that burning sensation south of the beltway. I wish for a cute friendly animal that will grant my every wish. | |
Re: Hi ddanbe, I'm glad you found a new toy to play with. :) You may find these examples useful: Samples Environment for Microsoft Chart Controls[Click Here](http://archive.msdn.microsoft.com/mschart) The chart control was also made available for .Net 3.5 as a separate library. Microsoft Chart Controls for Microsoft .NET Framework 3.5[Click Here](http://www.microsoft.com/en-us/download/details.aspx?id=14422) | |
Re: Let's see. You posted that two days ago, so the answer is because you were not born yesterday. :) If one is too big for their britches, does that mean they need to lose some weight? | |
Re: Beef. It makes tasty veggy soup. :) Who is Your favorite author? | |
Re: Here is an example that you can follow to read in the DBASE file. It is slightly different than the method you are using. Dim ofd As New OpenFileDialog With ofd .Filter = "DBASE File (*.dbf)|*.dbf" .Multiselect = False .CheckFileExists = True End With If ofd.ShowDialog() = Windows.Forms.DialogResult.OK Then Dim … | |
Re: Have you tried to use a timer to execute your turn-off code? | |
Re: > It's like if you take all your money out of the bank and start spending it. You might feel rich but in fact you are rapidly getting poorer. Is that along the lines of: it gives you that warming you get after wetting youself that ultimately turns into a … | |
Re: Try changing: `MainForm.WebBrowser1.DataBindings.Add("Url", ds.Tables("item"), "link")` To: `MainForm.WebBrowser1.DataBindings.Add("Url", ds.Tables("item"), "link", True)` This enables formatting of the value which invokes the property's TypeConverter. | |
Re: > What i had in mind was saving it as ini file, encrypting the file to another extension, and encrypt it to binary, but to do that i would use the special folder in the AppData, is there a better way for me to save the arrays and encrypt it … | |
Re: I wish you the best of luck with this. If MS does finally see the light and provide an update, I hope that they also will have the sense to draw the line on the .Net side of things and admit that it is not a natural progression from VB6 … | |
Re: Hi, Since you are a student, I wanted to show you two other methods for reading a text file as you have described. The second one is just for fun; I would not recommend it. For your needs the ReadAllLines method shown by Jim is fine, but if the file … | |
Re: So that is what they teach! Augh!!!!!!!!!!!!!! If you have a block of code that needs to be called by multiple event handlers, it is best to define that code block as a separate method (subroutine) and call it as needed. Something like this pattern. Private Sub RadioButton1_CheckedChanged(ByVal sender As … | |
Re: Hi ddanbe, Fun little program. It reminded me how much fun I had drawing geometric shapes back in the dinosaur days when PC's were a curiousity to most. It inspired me to see how much I have forgotten. :) It took a while but is finally gelled in my mind … | |
Re: Here is a novel concept to try. [9.1.3. Date and Time Literals](http://dev.mysql.com/doc/refman/5.0/en/date-and-time-literals.html) | |
Re: The newer office file formats such as "docx" and "xlsx" are in reality zip packages containing the files that define the contents in "XML" format. These can be created using: [Open XML SDK 2.0 for Microsoft Office](http://www.microsoft.com/en-us/download/details.aspx?id=5124). You can view the "XML" content of an office file by renaming it … | |
Re: E! (try and find a company that starts with !) :) ha ha | |
Re: In addition to rubberman's comment: you are summing in "coursesCount:, but comparing "courses". Is this the logic you intended? | |
Re: Really? The first search result link has it. http://www.bing.com/search?q=Porter+Stemming+Algorithm&form=IE8SRC&src=IE-SearchBox | |
Re: There is not much info here to offer advice on, but the basic pattern could be something like this: Dim strm As IO.Stream = IO.File.OpenRead("pdfText.txt") Dim sr As New IO.StreamReader(strm) Dim line As String Dim trimchars() As Char = {" "c} Do While sr.Peek <> -1 line = sr.ReadLine() If … | |
Would be possible to have a new category added to Software Development for MS Office macros (VBA)? Right now these types of questions often get asked in the VB.Net forum. The best match available is VB4/5/6, as VBA is a VB6 dialect, but this also not a good option as … | |
Re: I am going try to rephrase your question and ask that you confirm whether or not it matches your ultimate goal. You have two lists of of numbers. One of the lists is longer than other and it contains all the values in the shorter list. You need to create … |