Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for x38class

I have the following code to connect to wi-fi, which works fine. Dim p = "netsh.exe" Dim wi-fi-name as string = "My-Wi-Fi-Connection" Dim sInfo As New ProcessStartInfo(p, "wlan connect " & wi-fi-name) sInfo.CreateNoWindow = True sInfo.WindowStyle = ProcessWindowStyle.Hidden Process.Start(sInfo) For i As Integer = 0 To 100 Application.DoEvents() System.Threading.Thread.Sleep(10) Next …

Member Avatar for xrjf
0
453
Member Avatar for x38class

I have found the following post re this issue does any body have any idea which is correct [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Comdlg32] "NoFileMru"=dword:00000001 2.HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Value Name: NoRecentDocsMenu Value Type: REG_DWORD Value Data: 0 or 1 0 = Yes, allow recent docs 1 = No, do not allow recent docs Value Name: ClearRecentDocsOnExit Value …

Member Avatar for x38class
0
843
Member Avatar for x38class

I have found the following post re this issue does any body have any idea which is correct 1. [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Comdlg32] "NoFileMru"=dword:00000001 2.HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Value Name: NoRecentDocsMenu Value Type: REG_DWORD Value Data: 0 or 1 0 = Yes, allow recent docs 1 = No, do not allow recent docs Value Name: ClearRecentDocsOnExit …

0
231
Member Avatar for x38class

I have an app that fails because mscorlib is not installed from Net Framework 2 SP2 Without it, I get the following error: Could not load type 'System.DateTimeOffset' from assembly 'mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. The error can not be trapped in the runtime of the application, it appears when app …

Member Avatar for x38class
0
213
Member Avatar for x38class

Is there an element of the treeview object that will hold the original path & can be recalled later without it being shown in the tree. If I only had one treeview I would not have a problem, I have several on the form & all use common sub/functions in …

Member Avatar for Teme64
0
481
Member Avatar for x38class

The child nodes are there when first populated but when drives are changed or re loaded a second time, that is when they are missing, so how do I reset the nodes to show child nodes every time This is my code, can anybody see a problem, any help much …

Member Avatar for x38class
0
226
Member Avatar for x38class

I appreciate getting daniweb emails, however the emails refer to an email address I do not have. My profile email address is correct, why is the email address on daniweb emails wrong?

Member Avatar for Dani
0
240
Member Avatar for x38class

I want to modify my app to include a list box of thumbnails say 3 or 4 across horizontal plane (depends on width of list box0 probaly add file name underneath as in explorer Any help much appreciated

Member Avatar for hollertrek
0
72
Member Avatar for x38class

I am developing an app on XP which uses a 3rd party ocx > imageviewer2.ocx In development it works fine but program does not run when insatlled on a vista machine I presume it is because the ocx is not registered I can register it with regsvr32 in xp but …

Member Avatar for Henry Schubel
-1
133
Member Avatar for x38class

I have the following code to re-create an image the program fails due to lack of memory even though I have 2gb memory How can I use disk space instead of memory which fails at this line: Dim BitMapObject As IntPtr = TargetBitMap.GetHbitmap is there another variable I can use …

0
63
Member Avatar for x38class

How do I find the code to add/update/retrieve text to exif data as comments Also what are limitations, eg number of characters and is it just plain text or control characters eg cr/lf etc for formatting when text is retrieved any help much appreciated Regards Bob

Member Avatar for x38class
0
92
Member Avatar for x38class

I have an old coputer which the c drive has failed it was partitioned to be c & d I have ghost 2003 backups on d (which can be moved elswhere) I now have the drive in a case which has usb connection can I use ghost to restore from …

Member Avatar for x38class
0
130
Member Avatar for x38class

I have an app designed on a standard screen, but now I have a 15.4 wide screen the images are distorted The ratio of width to height should be height / 0.75 for standard jpg files but setting the picture box width or form width to this ratio seems to …

0
71
Member Avatar for x38class

I have an app that print images from an arraylist with a corresponding arraylist for a text description of the image I am using the addhandler function to retreive the arraylist data, everything works fine. However, I now want to add an arraylist to correspond with those above which contains …

0
65
Member Avatar for x38class

I have an app that requires text which is typed into a text box which is then placed in an access database, later retrieved then printed in a defined area the problem is that on the screen near the end of the 1st line when the user types the word …

0
69
Member Avatar for x38class

Microsoft has the following example of how to use itemdata in .net It works fine if you are populating row by row from 0 to whatever I need to reset itemdata in a particular row that has been deleted, eg the microsoft example equates to the following lstBox.items.add("123",654) where 654 …

0
75
Member Avatar for x38class

I want to change the registry to enable user to save in a different folder, for all software that defaults to my documents, my music, my photos I know word has this option but I need to change it for all time thanks for any help Regards Bob

Member Avatar for DuncanIdaho
0
88
Member Avatar for x38class

I have a combo box I want to limit user input I have the following code on 'keypress' event dim keyascii as short = asc(e.keychar) dim s as string if keyascii = 45 then exit sub end if ' allow '-' key s=checkalphanumeric(s,"AN") ' My function to check keyascii 's …

Member Avatar for x38class
0
181