- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 11
- Posts with Upvotes
- 10
- Upvoting Members
- 10
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
128 Posted Topics
![]() | Re: i watched Shallow Hal, it has a nice lesson to it, i recommend you guys to watch.. really worth watching and it's funny too.. and also i watched Arthur's Christmas.. well it's Christmas after all |
Re: yeah you're not, but you're so thin and weak and can be easily blown away by the wind.. whoooooosh~ i wish i could enter pictures or drawings like Blue then go back to real world .. | |
Re: because it's not a cow. why do people think? | |
Re: the last one will be '2' right ? it shouldn't be last letter, instead last character else the thread dies.. lol whatever XD then --21 Jump Street-- | |
it's as the title says .. mine was I'm Yours --Jason Mraz so what's yours ? | |
Re: simple, just an anagram of my crush's surname .. though i intend to change it anytime soon to a more meaningful name .. i just haven't think of something good yet. | |
Re: if you find it extremely annoying, then why don't you just disable them ? that's what i did, especially when i often visit daniweb | |
Re: used to have hamsters and dog .. until recently had a flowerhorn .. then flood came, ironically he drowned | |
Re: do the things that has less priority or later deadlines.. | |
![]() | |
hello it's been awhile .. it's my first time using ruby(on Rails), and i've downloaded what is needed(i think, based on my searches), Ruby, Rails and gem, but i'm not sure if they are properly installed because they don't seem to appear (?) Also it's my first time using Aptana, … | |
Re: the foundation of a relationship could be strong if there is honesty. **Brouhaha** | |
i just want to ask how do you prefer your code ? do you want it to be properly indented ? or maybe with a lot of comments.. anything just describe how you want your code to look like .. plus numerous lines affect the file size, that's why i'm … | |
Re: is [this](http://support.google.com/blogger/bin/answer.py?hl=en&answer=46870) what you're looking for? | |
Re: whenever i read "blood of a virgin", Supernatural always comes to my mind. that's an exaggerated meme on how your suppose to create a password and a reminder that you can't be so sure .. it's funny though, XD | |
Re: you can set it up in vb.net by following [this](http://support.microsoft.com/kb/821765) or follow [this](http://www.hscripts.com/tutorials/vbnet/databases-vb-net.html) example good luck, | |
Re: i think it's just like when you're opening a file using file stream that's why it prompts the message that it's being used.. try [this](http://support.microsoft.com/kb/309482) then after closing, delete the file hope this helps, | |
![]() | |
Re: i've tried doing this as well, but in the end i changed my approach into encrypting the file instead.. but what you're trying to do is different, anyway hope [this](http://msdn.microsoft.com/en-us/library/ms172831.aspx) helps | |
Re: how about trying [this](http://www.google.com/) first ? there are a lot of tutorials regarding vb.net and access so it won't take you long to find a good start.. good luck | |
Re: First you should know [this](http://www.daniweb.com/software-development/vbnet/threads/424836/please-read-this-before-posting) then show us some effort that you did your part, don't just expect that someone will do the work for you | |
Re: you can easily find decent and good php tutorials with just a few search by yourself and if there are some other things that you can't understand you're always welcome to post a thread here | |
![]() | Re: create a variable that will hold the text in texbox1 in Form1 `Dim x as String = TextBox1.Text` then on Form2 you can import `Imports ProjectName.Form1` with that you can `Label1.Text = Form2.x` or simply `Label1.Text = x` though i always include the form name as to not get confused … |
Re: > I then run a quick UPDATE WHERE query and it still alters the data. isnt't that the purpose of UPDATE?, to alter the data in the database. | |
Re: welcome Brian ! you've got an interesting introduction and site, i enjoyed the photos :) | |
I'm having this kind of error: *Could not find a part of the path.* For Each subfolder As String In Directory.GetDirectories(sourceDir) Dim destDir As String = Path.Combine(destinationDir, Path.GetFileName(subfolder)) If destDir = destinationDir & "\peanutButter" Then 'do nothing Else Directory.Move(subfolder, destDir) End If Next I suppose i get this error because … | |
Re: or you can use masktextbox so that you can set the inputs to numbers only so you dont have to worry about variable types or mismatch and edit the max value as Jim said >and you should limit the number of digits that can be entered to prevent overflow. just … | |
Re: you're not clear with your question >Is it possible to have string in a richtextbox checked for pronouns ... >... and I want to check for any person's names and i agree with Reverend_Jim, there can be tons of names and you'll never know if the name is just made … | |
Re: try [this](http://www.codeproject.com/Articles/204929/Getting-current-browser-URL-with-VB-NET) | |
this might sound dumb, but oh well i just want to ask what are the significance and important things to put in mind in deciding the form size of a project because i can't decide what dimensions i'll be using for the current project i'm working on. cheers, | |
Re: retrieve all the items, then store them in an array, insert a condition that if the retrieved item is equal to one of the array values then increment that array element. after all the items are retrieved just add a condition whether that particular item repeated 3 times. | |
![]() | Re: how about this string GetContentAsRTF(RichTextBox rtb) { var range = new TextRange(rtb.Document.ContentStart, rtb.Document.ContentEnd); using (var stream = new MemoryStream()) using (var reader = new StreamReader(stream)) { range.Save(stream, DataFormats.Rtf); stream.Position = 0; return reader.ReadToEnd(); } } though the file type is RTF |
Re: i hope this helps http://www.techusers.net/67/how-highlight-words-richtextbox-vbnet you know you could actually find your answer with a few searches.. | |
Re: how about `Dim i as integer = ListView1.Items.Count - 1` ? i think it's more appropriate to do that you might also want to read [this](http://visualbasic.about.com/b/2008/10/19/object-reference-not-set-to-an-instance-of-an-object.htm) | |
Re: how about this if RichTextBox1.Text = "yes" Then RichTextBox1.Select(RichTextBox1.TextLength - 3, 3) RichTextBox1.SelectionColor = Color.Red RichTextBox1.SelectedText = "no" End if | |
The End.