- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
32 Posted Topics
Re: > No threading issues here. > Use the Profiler to determine where the bottleneck is. > Hint: it's not in the program logic. > I would question why 100,000+ characters are being loaded into a textbox. > I would also question why you are using Winforms & not WPF for … | |
I was just wondering, is there a way to change the colour of the squiggly line when a word is misspelled in a WPF TextBox? Here's what I mean: [Click Here](http://puu.sh/dwAdC/701c7f2c59.png) I have no idea as to where to start because I'm simply clueless. I tried editing the Textbox to … | |
Hello Everyone, Was just wondering if anyone here does Windows Phone Development? apart from Android and iOS are there are Windows Phone developers here that could help out? Thanks! | |
Hey Guys! I was just wondering if anyone here does Wp7 development? I'm new to C# and hoping if there are poeple who work with Windows Phone 7 Development. | |
## Hey Guys ## , I've recently stopped doing some of the projects which I wanted to do and took a look at SQL and came across Microsoft SQL and i was pretty pleased with wha tit can do so i downloaded the program and watched some basic MSSQL tutorials … | |
Hey Guys! So i've been thinking about how to make this program which involves a person Logging on and gettings certain information and statistics throught the website. A good example and also something i've been wanting to do is use this page: http://puu.sh/4IEkQ.jpg to get the information below. How can … | |
Hey guys! I've been working on this ping server project and I need some help rounding the numbers which appear. take a look at this picture : http://puu.sh/4Fqa5.png the label with the 00:00:00:0...:. Is there a way I can just make it show only 41? Thanks. | |
Is there a way to get online elements text and display that on to a form label or textbox or w.e? e.g. http://puu.sh/4xWQj.png in that how would i get "iTzSnD" to make it display in the form? same with any other webpage element? how can I get this done? | |
Hey guys I was just wondering how can I add all the folders which are in a directory to a listbox. e.g. all the folders in C:\ should appear in a listbox on the form load event. How can this be done? Thanks :D | |
Hey guys, I was just wondering how I can get a filebrowser to open folders and files and put the path depending whether its a file or folder. e.g. if the filebrowser selects a folder then in textbox1 the folderpath should appear and if the filebrowser is a file then … | |
Hey guys, I need some help with a combobox. basically I have items in my combobox and when the user types in a letter everything starting with that letter shoudl appear and keep going until the user has typed in the item text and that's the only item remaining. Here's … | |
Hey guys, I've been working on this program and basically I've debugged everything and it all works fine on my computer BUT! I tried to take it to another computer to run it and it says "Program has stopped working". I don't get it. I've got all the fiels in … | |
Hello! I was just wondering if there is a way to send an email to whoever you want with whatever the email account is. Right now i've got : Try Dim mail As New MailMessage() Dim SmtpServer As New SmtpClient SmtpServer.Credentials = New Net.NetworkCredential("user", "pass") SmtpServer.Port = 587 SmtpServer.Host = … | |
Re: Hey. This is really cool!!! But there is one thing I need to ask you. How do I decrypt a certain file. e.g. my program creates a file which stores a password. Once the file is saved it will add the encryption. So if the file is opend outside e.g. … | |
Hello. I've been working on this password manager and basically I want to encrpyt a saved file which contains password and account information. When the user clicks save then it should add an encryption and save it so that even if its opened in notepad or wordpad etc it will … | |
Hi guys. I just need help with something. Bascailly I've got a combobox which has all the colors e.g. color.black, color.blue etc and what I want to do is when the user selects the combobox item e.g. selected color.Blue it should change the labels forecolor to what ever the user … | |
Hi. I'm actually making this very basic password manager and it has 2 listboxes and when i click the Add button it adds the name on the 1st listbox and all the rest on the 2nd listbox. The problem is that when i make more items in the first listbox … | |
So i've been working on this little program which is meant to detect internal or external harddrives and show file sizes etc. All that is fine but the problem is that if i take the program to another computer and run it it shows "E:\" in the combobox when it's … | |
I'm creating a simple FTP client and i want this certain label to say "List refershed" after a certain action and then after 2 seconds i want the label to say "STATUS". How can i do this? | |
Hi. I was just wondering if there is a simple way to get the file size of a selected program. The thing is that if i select a word document or etc the file size should be 2.34MB not like 2355.2 in KB or B. If the file size is … | |
Hey.. I've been working on this small project and i just thought if i can get you guys to give some opinons on the design of my program? what can I improve, what should I do to fix etc... Here's the design : http://puu.sh/4a04g.png Thanks! | |
Hi. I've been working on this FTP client for a while and in it is Show selected image. I'm currently using this code: PictureBox1.Image = New System.Drawing.Bitmap(New IO.MemoryStream(New System.Net.WebClient().DownloadData(ToolStripLabel1.Text))) I added it to the Form load event. The picture I'm acquiring is from an FTP server but each time it … | |
Hi. I am working on this ftp client and i want a column of the listview to show the date modified. I've got the code but here's the problem: Private Sub RefreshList() FTPDownload.Hostname = LoginMenu.TextBox3.Text.Trim FTPDownload.Username = LoginMenu.TextBox1.Text FTPDownload.Password = LoginMenu.TextBox2.Text ListView1.Items.Clear() Try For Each File In FTPDownload.ListDirectory Dim ext … | |
Hello people.. I've been working with listviews and FTP clients and i was wondering if you could help me with getting listview to show the icon for the relevent type. So like i have a files in the listview which is music.mp3 and testdoc.txt etc and i need the list … | |
Hi. I was just wondering if there is a simple way to detect if the filetype is a sort of docuemnt which can be read and written. e.g. txt, docx, ini ect. I want to make it in s uch a way that when the listview selects and item it … | |
| |
I was just wondering if there is a possible way to get the last 4 characters from a label or textbox. If someone could please provide me with an example that would be great! Thanks.. | |
So I've been working on this FTP server client using Howard Richards FTP client library. After a while the program just stopped logging me into the FTP server and is giving me the "Object reference not set to an instance of an object." error each time i click the button … | |
Hi. So i was just wondering if there is a way to get the filepath only when a user selects a file using an openfiledialog. E.g. Rather than C:\Test.txt it should be C:\ Really would appreciate the help | |
Hi. I just wanted to know if there is anyway to make a textbox recognise if there is text or not. I don't want it to be textbox1.text = "". Is there a legitimate way? | |
So I've been working on this simple FTP Client and i've come across this problem. Basically when the user clicks on the folder, a label changes saying ftpserver.com/folder1 and then when a user clicks on the folder inside that it's meant to be ftpserver.com/folder1/folder2 but the label is only saying … | |
Hi. First Post... Just need some help with this program I'm doing.. I've been programming a FTP Client and i've got the base done but i just have one problem...I've added a listview with 3 columns. 1st column is File Name, 2nd column is File type and the 3rd column … |
The End.