Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~6K People Reached
About Me

Just trying to keep a brain active with Visual Studio

Interests
Programming, sports
PC Specs
Dell desktop 8GB mem, 1tb disk
Favorite Forums
Member Avatar for paul1145

In Visual Studio 2015, VB, in Windows 10, I have a small program where I use the arp -a command to pick up the mac and I/P addresses of connected devices on my lan. From everything I've read (and tried), the answer somehow comes back to DNS.getHostEntry which throws a …

Member Avatar for paul1145
0
346
Member Avatar for paul1145

In Visual Studio 2015, under Windows 7, I've created a VB application that fills a Checked Listbox with file names from one of my folders. Some of the file names contain an underscore character but when shown in the listbox, that character is replaced with a space. In the code, …

Member Avatar for rproffitt
0
3K
Member Avatar for paul1145

For the VB Studio 2010 software I developed, I'd like to include source code, a class maybe, written in VB (not c++) that allows me to get (and change) ID3 V1 and V2 tagging data from MP3 files. I've been looking for months and have found .exe's and someone else's …

Member Avatar for Reverend Jim
0
371
Member Avatar for paul1145

I would like to assign a CTRL Q shortcut to the Quit submenuitem (filesubitem1) but can't find the right syntax. Any assistance will be greatly appreciated. Thank you. If user_wants_file_menu = True Then Dim fileItem As ToolStripMenuItem = New ToolStripMenuItem("File") Dim filesubitem1 As ToolStripMenuItem = New ToolStripMenuItem("Quit") filesubitem1.ShowShortcutKeys = True …

Member Avatar for djjeavons
0
537
Member Avatar for paul1145

In the code below, I'm trying (works) to insert a mail message before the signature line. With each new email within a run, the email new window flashes on the user's desktop. I'd like to minimize to outlook window to reduce the 'flashing'. The email is sent correctly but I …

Member Avatar for paul1145
0
407
Member Avatar for paul1145

Public Function setEmailSend(ByVal sSubject As String, ByVal sBody As String, _ ByVal sTo As String) As Boolean Dim oApp As Outlook._Application Dim oMsg As Outlook._MailItem setEmailSend = False oApp = New Outlook.Application oMsg = CType(oApp.CreateItem(Outlook.OlItemType.olMailItem), Outlook._MailItem) oMsg.BodyFormat = Outlook.OlBodyFormat.olFormatRichText oMsg.Subject = sSubject oMsg.To = sTo 'here I need the current …

Member Avatar for paul1145
0
558
Member Avatar for paul1145

When kicking off an async job using backgroundworker, the process I tried is a My.Computer.FileSystem.CopyDirectory(a,b). The next step is to check the progress with bw.ReportProgress(x) but that statement doesn't get control until the copydirectory finishes. I'm not new to programming but to this backgroundworker. Any help would be appreciated. Thank …

Member Avatar for xrjf
0
317
Member Avatar for paul1145

When I use the Build option in VS2010 to create .exe files, I am able to move them from computer to computer without incident. These apps are generally mundane, small and of the utility variety. Last week, I added the Windows Media Player control to a form, with appropriate logic …

0
71
Member Avatar for paul1145

[code] Maybe it doesn't exist but any help would be greatly appreciated I'd like to simply save a current playlist to my own directory not WMP1's directory I don't want to mess with WMP1's default directories Private Sub Create_a_PlayList(ByRef songs() As String, ByVal name As String) Dim listCollection As IWMPPlaylistCollection …

Member Avatar for paul1145
0
211
Member Avatar for paul1145

[code] 'language = Visual Basic 6 Public Sub CreatePlayList(ByRef songs() As String, ByVal name As String) Dim i As Integer Set listCollection = frmMusic.wmplay.playlistCollection Set list = listCollection.newPlaylist(name) frmMusic.wmplay.currentPlaylist = list For i = 0 To UBound(songs) Set wmpMedia = frmMusic.wmplay.newMedia(songs(i)) frmMusic.wmplay.currentPlaylist.appendItem wmpMedia Next End Sub ' I believe the …

Member Avatar for paul1145
0
164