- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
31 Posted Topics
Hi Guys, I've just started learning the multithreading in vb.net; Needless to say I'm facing issues. Please check the code written below as its not giving any output, it just hangs. Public Class Form1 Private Delegate Sub _invokeUIControlDelegate(ByVal errMsg As String) Dim Thread1 As New System.Threading.Thread(AddressOf doSome1) Dim Thread2 As … | |
Hi All, I am trying to create an FTP application for file transfer in LAN. I want to list all available users with their IP's and user names, so that any persone can be found and FTP can be initiated. But I'm stuck at the start as i don't now … | |
Re: try using `FacilityAdvSearch.ShowDialog()` in place of `FacilityAdvSearch.Show()` | |
Hi!! Just started windows phone development. Need to know how to use beginInit() and endInit() functions i'm processing an animation, and want the control to show new page after the animation is over but the control switches before the animation is completed. How should i do that ?? Please let … | |
Re: try console.readline() or console.read() | |
Hi Guys!! I am creating an addin in Excel using VB.Net. I want to access the current worksheet using a ribbon designer. I have tried all sorts but to no avail. Also all the resources that I have checked are providing solutions by adding or opening new workbook. What I … | |
Re: DO you want to use Web browser control for this?? or you are creating ur own browsing logic. Well, it'd rather be good if you keep the same logic at the back end create a temporary styled dynamic HTML doc and render it on Web Browser control. | |
Re: Use regular expresions | |
Hi, I have this program that would upload files from the client to the server, Now I want to validate the filesize before uploading it into the server.. How can I create this kind of validation? Also I need to track the progress of the upload. Thanks. ![]() | |
Hi guys, I'm designing a form and trying to get different opacity values for different controls. How should i do it?? eg. clear visible text floating over 50% opaque form. | |
Re: it may be because of the processing needed before the form shows up or excessive designing or IO operations, gimme some details | |
Re: You've done it wrong that's all i can say with all the information you've provided atleast show us the main logic only than we can help you | |
Re: try this don't click press left click button and keep it pressed don't release now move it downwards you will see a lit of pages to go back to now select the one first one on the top and ur done. ![]() | |
Re: try document. invoke member("click") i don't remember the exact code but this should get u going | |
| |
Re: check the return type of oreader don't just rely on spoon feeding this problem can be solved easily use google | |
![]() | Re: i believe you can't possibly write back since the file you are using is read-only. It must be embedded into the exe(Check if I am right). You can embed files only before compiling or if you could find a way to manipulate an exe but that will just corrupt the … ![]() |
Re: simply close the project process in taskmanager and start debugging again it will run :) | |
Re: try regular expression better and sophisticated way | |
![]() | Re: Try this one 1. Add SaveFileDialog control 2. name it savefile (or any other name) [CODE] Dim getfile As String = String.Empty With savefile .AutoUpgradeEnabled = True 'gets or sets a value indication for dialog upgrade in case of windows vista .CheckPathExists = True 'check whether the selected path exists … |
Re: use streamreader simply and use .readline() function to read online and go to next one. do it twice in one round inside the loop first read gives you name second gives you code end point for loop is .eof() | |
Re: actually the bin folder is the best way since the files are stored at the same place as your binaries. but do never provide static path rether use [CODE] My.Application .Info .DirectoryPath & "\" & "<name of file/folder>" [/CODE] | |
Re: [QUOTE=codeorder;1638684]Also, check out [URL="http://www.daniweb.com/software-development/vbnet/threads/348154/1478546#post1478546"]this thread[/URL] in case you just need the FileNames, not FullPaths to display in ListBox.[/QUOTE] And to get the specific folder add openfiledialog control, or folderbrowser control and get the name of the folder. | |
Re: in every event of smaller picture boxes add one if condition checking the transparency state of the control first [CODE] if picturebox1.backcolor = color.transparent then (code....) else pictureboxBig.backroundimage = <the image you want to set end if[/CODE] | |
hi guys i've created a program in vb.net using vs2010 now i want to convert it to a complete PE (platform independent) for that purpose i've downloaded xenocode (Spoon studios) I was wandering if ne one could help me on how to virtualize a vb.net application completely, a step by … | |
Re: [CODE] Dim line As String = String.Empty Dim log_ctr As Integer = 0 Dim readData As New System.IO.StreamReader("\data\log.txt") While readData.Read log_ctr += 1 End While readData.Dispose() If last_log <> log_ctr Then For n = last_log To log_ctr - 1 text1.SelectionStart = text1.Text.Length Next End If [/CODE] Well this what I … | |
Can anyone tell me how to auto load data content from a file (primarily containing rtf) when the file is opened. I want to create a system like Microsoft word where you create docx/doc files and double clicking them opens word software and loads the files. I know file associations … | |
Re: use registry key class dim reg as registrykey import system.registry then open registry and create subvalues | |
Re: atleast provide the exception statement use try catch | |
Re: instead of creating a new thread i suggest that u should rather create a public variable on form2 and update its value( value might suggest the load_status) now create a new sub on form1 that can access the value of the variable. use a timer or new thread whichever u … |
The End.