Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
Ranked #2K

31 Posted Topics

Member Avatar for AnkitGuru

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 …

Member Avatar for AnkitGuru
0
139
Member Avatar for AnkitGuru

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 …

Member Avatar for AnkitGuru
0
114
Member Avatar for echo12

try using `FacilityAdvSearch.ShowDialog()` in place of `FacilityAdvSearch.Show()`

Member Avatar for AnkitGuru
0
246
Member Avatar for AnkitGuru

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 …

Member Avatar for AnkitGuru
0
152
Member Avatar for bluehangook629
Member Avatar for AnkitGuru

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 …

Member Avatar for G_Waddell
0
1K
Member Avatar for honeybee2090

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.

Member Avatar for honeybee2090
0
116
Member Avatar for doomhades666
Member Avatar for AnkitGuru

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.

Member Avatar for diafol
0
81
Member Avatar for AnkitGuru

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.

Member Avatar for codeorder
0
219
Member Avatar for sylvester3

it may be because of the processing needed before the form shows up or excessive designing or IO operations, gimme some details

Member Avatar for codeorder
0
109
Member Avatar for Contagious98

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

Member Avatar for Contagious98
0
187
Member Avatar for cbk

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.

Member Avatar for Johnbonono
0
99
Member Avatar for EliteCandyX

try document. invoke member("click") i don't remember the exact code but this should get u going

Member Avatar for codeorder
0
142
Member Avatar for raaif
Member Avatar for Ruchi224

check the return type of oreader don't just rely on spoon feeding this problem can be solved easily use google

Member Avatar for Netcode
0
124
Member Avatar for Bucher

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 …

Member Avatar for Bucher
0
218
Member Avatar for bettybarnes
Member Avatar for jonoman
Member Avatar for hueikar

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 …

Member Avatar for samson_zed
0
600
Member Avatar for 8mir

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()

Member Avatar for AnkitGuru
0
154
Member Avatar for khentz

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]

Member Avatar for AnkitGuru
0
189
Member Avatar for Oneryavuz

[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.

Member Avatar for Oneryavuz
0
191
Member Avatar for PurpleHeaven
Member Avatar for chowmein87

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]

Member Avatar for AnkitGuru
0
392
Member Avatar for AnkitGuru

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 …

0
142
Member Avatar for emg31

[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 …

Member Avatar for emg31
0
88
Member Avatar for AnkitGuru

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 …

Member Avatar for adam_k
0
145
Member Avatar for kosay

use registry key class dim reg as registrykey import system.registry then open registry and create subvalues

Member Avatar for kosay
0
70
Member Avatar for Weliaz
Member Avatar for ninjatalon

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 …

Member Avatar for AnkitGuru
0
139

The End.