4,901 Posted Topics
Re: Try For r As Integer = dgvMyGrid.Rows.Count - 1 To 0 Step -1 Dim empty As Boolean = True For Each cell As DataGridViewCell In dgvMyGrid.Rows(r).Cells If Not IsNothing(cell.Value) Then empty = False Exit For End If Next If empty Then dgvMyGrid.Rows.RemoveAt(r) Next You want to delete from the bottom … | |
Re: Access is more suitable for small, single-user databases. For something of your scale, "thousands of client programs that will modify the database simultaneously" you need something more industrial strength. You need a full blown SQL server. You may be able to get away with the free version of MS SQL … | |
Re: Why not just use the free version if vb.net? You can create a form and drop all the controls on it. You don't have to write any code to create a mock-up of the GUI. | |
Re: I used the same technique as everything else. Practice. The only way to get good at something is to keep doing it. I also had some excellent instructors along the way (and a few really bad ones). | |
![]() | Re: >I think the moderators of that particular forum, should be allowed in the review process. As far as I know a moderator is not specific to any particular forum. I have moderator "powers" in all forums. I just choose to exercise them in forums that interest me or that I … |
Re: Here's one way For r As Integer = 1 To CInt(txtNumRows.Text) dgvMyGrid.Rows.Add(New DataGridViewRow) Next | |
Re: Sounds like homework questions to me. Try [here](http://goo.gl/XHAvvN). | |
Re: What have you got so far? | |
Re: 1. Since I was 18 in 1972 at University 1. Visual Basic since I retired in '08 because it is relatively straightforward but I've always had a thing for APL. Most of my programming over all has been in FORTRAN. 1. Not really, but programming wasn't as complex back then. | |
Re: My first personal computer was a Commodore 64, followed ASAP by an Amiga 1000. The first computer I ran a program on was an IBM 1620. | |
![]() | Re: How would the website determine if the user is in the appropriate forum? There are some posts that are general enough that they do not belong in a lower tiered forum. The forums are arranged in hierarchies. For example, you could put a post in Hardware and Software Microsoft Windows … ![]() |
Re: http://www.daniweb.com/ http://www.alternet.org/ http://www.imdb.com/ http://en.wikipedia.org/wiki/Main_Page and for s&g http://www.gocomics.com/arloandjanis http://www.bugmartini.com/ http://www.somethingpositive.net/index.html http://www.smbc-comics.com/ http://xkcd.com/ http://www.jesusandmo.net/ (unfortunately it updates only weekly) I frequently check out books at http://www.fantasticfiction.co.uk/ | |
Re: I'm not sure I understand what you are asking but if you want to do a case sensitive selection on the database you can do SELECT * FROM Userr WHERE [UserID] COLLATE Latin1_General_CS_AS = 'username' AND [User Password] COLLATE Latin1_General_CS_AS = 'password' If you are only interested in whether the … | |
Re: I'm also big on classical. My favourite at the moment is Krystian Zimerman playing Chopin's Ballade #1 in g minor. You can see/hear it [here](http://www.youtube.com/results?search_query=krystian+zimerman+chopin+ballade+1). The pianist is insanely good. | |
Re: I had a similar problem. I have lost some hearing in the higher frequencies and was looking for a way to adjust the sound over all applications. I found Equalizer EPO. You can download the 32 bit version [here](https://www.google.ca/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&ved=0CCYQFjAA&url=http%3A%2F%2Fsourceforge.net%2Fp%2Fequalizerapo%2Fwiki%2F&ei=h3bpUoOIJsiIqQGJ1IG4Cw&usg=AFQjCNHzL2Lv3vB0T9QXRBm6kYmXUVZfSg&bvm=bv.60444564,d.aWM). There is a 64 bit version available as well but you … | |
Re: If there is no difference between tags and content text when searching, what is the point in duplicating the text via tags? | |
Re: It wasn't me who downvoted but as a guess, I'd say it was an overly complex solution to a simple problem. In my opinion that didn't justify a downvote so I upvoted to cancel it. | |
Re: But Americans (and Canadians) eat a lot of beef which requires much more land per pound of protein to produce than other forms of protein so that skews the numbers. Also, what is the definition of "living requirements"? Is it bare minimum to keep alive or comfortably alive? Are we … | |
Re: You should be using TRY/CATCH rather than **On Error**. Also, because you haven't included the code for **ExecSQL** or the text of any error message there is no way to offer meaningful suggestions. | |
Re: Somehow I think we are getting lost in the explanation which is unclear. I can't make heads or tails out of your description. Can you perhaps just give us some sample input and what output you expect to get? I suggest you avoid terms such as "like" because what I … | |
I posted a rather lengthy tutorial a week or so ago on embedding Windows Media Player in a vb.net app to build a video library. I don't see it in the vb.net tutorial section anymore. Could somebody please look into this and put it back? I wanted to refer a … | |
Re: You might try rewriting it as a function without the global as in Private Function calculateFees (ByVal intDays As Integer, ByVal decFee As Decimal) As Decimal If intDays <= 3 Then return decFee Else return CDec((intDays - 3) * 1.5 + decFee) End If End Function I'm assuming decFee is … | |
Re: Who is to say how technology will impact your career. For example, I was a real-time programmer for a major electric utility (generation, transmission and distribution). You may recall a few years back when they had that cold fusion fiasco. As unlikely as it was to be real, *had* it … | |
In true Microsoft fashion they have made the download process so counterintuitive that your chances of getting what you want is near impossible. Fortunately someone has created a "simple" [12 step process](http://www.istartedsomething.com/20140616/the-12-step-process-to-download-microsoft-sql-server-express-2014/). For yuks, see also [here](http://www.istartedsomething.com/20121216/downloading-sql-express-2012-from-microsoft-com/). And to see how little things have improved see [Bill Gates Chews Out … | |
| |
Re: Please start a new thread for this question. | |
Re: You can replace text by setting the properties **SelectionStart** and **SelectionLength** then replacinig the selected text by assigning the replacement string to **SelectedText**. If you set **SelectionLength** to 0 then the text is inserted at the given point. For example, to insert a string at position 20, do RichTextBox1.SelectionStart = … | |
Re: If you have a specific question we'll try to answer it but your question is a little broad for this forum other than to answer in broad terms 1. learn vb.net 1. develop a GUI 1. write your own codecs 1. debug everything However, if all you want to do … | |
![]() | Re: >Do you think I have an obsession or a passion with tech and software? Yes. Yes, I do ;-P There is a fine line between technophilia and technomania. I had a friend who claimed to be a pyrophile. A nudge in the wrong direction however... |
Re: POST stands for Power On Self Test. If you are getting this message then you may have a hardware problem. Is there a boot option to boot into a diagnostic mode? If not then you may have to go to another computer and see if there is a stand-alone diagnostic … | |
Sometimes you want to add a little functionality to an existing class but you don't want to go to the trouble of sub-classing. A technique that you can use is known as **Extending**. For example, I frequently use regular expressions when working with strings. Wouldn't it be nice if strings … | |
Re: How about changing dblAvgTotal CalculateTotalAverage(dblMidTerm, dblFinal) to dblAvgTotal = CalculateTotalAverage(dblMidTerm, dblFinal) | |
Re: My guess is that 4k files would be around 4\*1024 bytes. Seriously though, the size of 8 minutes of 1080p could vary greatly depending on the bitrate, frequency of keyframes, motion, etc. A video with low motion should have higher compression. A video with lots of motion or frequent scene … | |
Re: Well, here in Canada the doctor does not get paid more for ordering more tests so I suppose the reasons for more tests would be more akin to 1, 2, & 3. | |
A [security audit](https://opencryptoaudit.org/reports/iSec_Final_Open_Crypto_Audit_Project_TrueCrypt_Security_Assessment.pdf) of the free and Open Source encryption utility, TrueCrypt >"found no evidence of backdoors or otherwise intentionally malicious code in the assessed areas," and that the found vulnerabilities "all appear to be unintentional, introduced as the result of bugs rather than malice." A summary of the results … | |
Re: Go to **Organize**, then **Folder and Search Options**. In the **Folder Options** dialog box, select the **View** tab. Scroll to the bottom and you will see When Typing into list view o Automatically type into the Search Box o Select the typed item in the view Make sure you have … | |
Re: Sounds like homework to me. You won't find anyone here to do it for you. | |
I created an app to view and tag all of my home movie files. To play back the video I embedded Windows Media Player in the form. It also allows me to add comments to videos and search based on the comments. While it is functional, I would prefer to … | |
Re: Are you looking for free or are you willing to pay? Before retiring I had to coordinate the scheduling of dozens of processes with varying types of triggers. Some were triggered on a time schedule and others were triggered by the appearance of files in folders. I found [adTempus](https://www.arcanadev.com/adtempus/) a … | |
Re: Can you be more specific? What is the trigger? Is it based on date/time? Is it based on some particular action in the database? Is the database on a local machine? What kind of database is it? Does it even matter? Do you know how to access the database? Are … | |
Re: Several times a day I browse the vb.net forum (and a few others) to see what's new and to check if there are any questions for which I can provide feedback. What happens to those questions that don't fit into an existing forum? If, for example, I had expertise in … | |
Re: Google [How to use the Windows 7 Task Scheduler](https://www.google.ca/search?q=how+to+use+the+windows+7+task+scheduler&oq=how+to+use+the+windows+7+task+scheduler&aqs=chrome..69i57.8684j0j8&sourceid=chrome&es_sm=93&ie=UTF-8) | |
Re: Free keyfinder at [url]http://download.cnet.com/3001-2094_4-10694022.html?spi=f34fce99a2880231b8f73c05a543996e[/url] or you can Right-Click on My Computer and select "Properties". The bottom section of the window should say "Windows Activation" followed by "Windows is activate", then "Product ID: #####-#####etc" | |
![]() | Re: My nephew had a tattoo done in 2009 that he said was extremely painful. The artist got halfway through and asked if he wanted to wait until the next day to complete it. The response was "If I get out of this chair there is no way you'll ever get … |
Re: Just add more clauses to the ORDER BY as in ORDER BY fld1 DESC, fld2 ASC, fld3 ASC | |
Cliven Bundy does not have the "ancestral rights," claimed because his family had worked the land since the 1870s, before the creation of the BLM. In fact, according to Clark County property records, his family purchased the land in 1948 from Raoul and Ruth Leavitt. The United States Bureau of … | |
Re: I like to have a mix. I like the adjustable fonts of an ebook reader but I need a paperback when I want to read in the hot tub. I don't have a dedicated ebook reader like Kindle or Nook. I just use Calibre on my laptop. | |
Re: Try downloading a linux livecd and booting off that. Copy the files to another folder/device then delete the bad folders. | |
Re: The problem is that you are leaving the control to ask the user to enter a value and when you get back to the textbox the got-focus event fires again. If the only valid response to "Do you want to define a value" is "Yes" then why do you ask … | |
Re: I've never personally had a problem with Dells and there have been five in my immediate family. On the rare occasions I've had to get service it was always easily arranged with a fast turnaround time. I was even able to get a replacement battery out at the cottage in … |
The End.