Search results for query: *

  • Users: jcardana
  • Content: Threads
  • Order by date
  1. jcardana

    Question Put New Code Block at Cursor

    I have my code broken down into Regions... Form Events, Form Controls(Menus, Buttons, FileLists) and Routines and Functions. When I click on a control or use the pulldown menus, the new code block is placed either in the middle of my Functions block or at the end of the entire file. Isn't...
  2. jcardana

    Resolved Option Strict vs Option Explicit

    I'm watching THIS tutorial about Drag and Drop. I'm using the following... Private Sub tvwCompDir_DragDrop(sender As Object, e As DragEventArgs) Handles tvwCompDir.DragDrop ' GET [SINGLE] FILE PATH FROM DROPPED FILE Dim PathFileNames() As String = e.Data.GetData(DataFormats.FileDrop)()...
  3. jcardana

    Resolved Variable Naming Convention

    I've been watching videos about cleaning up my code. I'm using a Boolean to determine if another variable represents a file from the Computer or the USB drive. I initially named it "CompOrUSB", with False being Computer and True being USB. My thought process is False is first and True is second...
  4. jcardana

    Question How do I determine which framework I need to target?

    I'm making a simple file manager for the files created by my Lowrey organ. I "think" I know that selecting a newest version, in my case 4.8, would require everyone who uses this to install .NET ver 4.8. but, since this is just using FileStream, StringBuilder, TreeView and Listbox, shall I...
  5. jcardana

    Resolved BinaryReader.ReadByte

    First of all, is the BinaryReader the way to read a specific section of data in a file? Here's what I'm doing... I'm making a File Manager for the Preset and Music files created by a Lowrey organ. I need to read "Preset" information from a data file. First I'm getting the "Preset Filename"...
  6. jcardana

    Resolved Creating Textbox Array: System.NullReferenceException

    I'm attempting to create an array of textboxes. I need 55 of them (5 banks of 11). After searching the internet , I came across two examples @ How to create Control Arrays in VB .NET I was able to make it work successfully once but I couldn't figure out how to make the Events work, so I...
  7. jcardana

    Resolved Is there a Class with a Method that provides access to MP3 file data?

    Specifically, I'm hoping to get the length of the file in TIME and a BitRate. I'm still learning how all these frameworks, classes and such are structured and I have no clue about how to find what I'm looking for. I found nothing in the File OI class. Thanks for your time, Joe
  8. jcardana

    Resolved How to Expand RootNode

    It's been over an hour and I'm sure it's the simplest of fixes, but I'm just not understanding the structures and relationships. I have a treeview... it's populated with folders and files. When population is complete, I would like the (root, toplevel, first folder) to be expanded. Thank you for...
  9. jcardana

    Resolved Cross-thread operation not valid

    I have a Listbox "lbxUSBFiles" that I'm trying to populate from within an Arrived Event when a USB drive is attached. It's my uneducated conclusion, I don't have access to a control on my form???
  10. jcardana

    Resolved Is there a Required Installation Sequence?

    ANSWERED The reason I'm asking is, years ago in the Flight Simming community there were many add-ons and plug-ins that would conflict with each other if they were not installed in a certain sequence. One plug-in would overwrite newer files of a previously installed plug-in. If you look at my...
  11. jcardana

    Making ASP.NET Web Forms Site, need Media Player

    I hate being a bother. I don't understand why I have to jump through so many hoops. When I made my Windows Forms Application, I had no trouble getting WMP in there. I'm trying to add a media player to my webpage "Default.aspx". I've tried adding to my toolbox... won't show up. I've tinkered...
  12. jcardana

    Resolved Duplicate Windows Form Application as ASP.NET Web Forms Site?

    I made a Windows Form Application demonstrating some of my video editing skills, a "video portfolio". Am I correct to believe I can make the same thing on my website using ASP.NET Web Forms Site? Thank you for your time, Joe
  13. jcardana

    Resolved Debugging: Step Into (F8) Not Working

    I'm from the VB6 generation so yes, I'm a total nubie to VB.NET. I have searched the internet and found a couple "solutions" that didn't work. I made a new project, added the SplashScreen form and added a module I've previously made. In the module, I have a SetupGlobals subroutine which is...
  14. jcardana

    Resolved Unhandled Exception in the Designer

    I'm using Microsoft Visual Studio Community 2015 v14.0.25431.01 Update 3 with Microsoft .NET Framework v4.6.01590 I have the AxWindowsMediaPlayer on a form. While in design mode I changed the uimode from "full" to "none" Got the following error dialog... I'm not finding any information other...
  15. jcardana

    Resolved AxWinsowsMediaPlayer mouse and keyboard input problem

    I'm working on a video portfolio to demonstrate my video editing abilities. I have the program starting with frmBlank and opening wmpBlank with fullscreen playing a little production title. Keyboard events don't get trapped, but mouse events do, so I can get the video to terminate and...
  16. jcardana

    I need to reboot

    I've been programming in vb4 & 6 for 20 years. Any suggestions on how to unlearn what I have learned so I can start over in VB.net. All I do is complain about the differences. Thank you for your time, Joe
Back
Top