No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Re: I don't know if this is possible, If you can connect it through a USB cable you might possibly be able to use RAW USB data to program it. But what your talking about is some really high level programming. Your actually taking software on a computer and creating a … | |
Re: Is there any particular reason your using e.KeyData on your first If statement line rather than e.KeyCode? Did you try: If e.KeyCode = Keys.Alt + Keys.F1 Then MessageBox.Show("Nice Try, but did'nt work") e.Handled = True | |
Re: I would suggest creating some public class level variables that hold the properties of the RichTextBox's and then create a private sub that "resets" those properties that are changing after your do your text case change. | |
Re: As read on: [Microsoft Connect](http://connect.microsoft.com/SQLServer/feedback/details/731860/unable-to-create-a-sql-server-2012-projects-in-visual-studio-2010) "It looks like you're trying to use VS2010 Database Projects, which can't target SQL Server 2012 and have been replaced by SSDT. Please download SSDT at the [following location](http://msdn.microsoft.com/en-us/data/hh297027), then make sure to navigate to the SQL Server node when creating a new project. There … | |
Re: Check out my post [Here](http://www.daniweb.com/software-development/vbnet/threads/476641/what-do-you-think-of-my-code). This is how i connect to a database as well as use SQL commands like IMPORT and UPDATE. I don't know how it will work with an ASP app but it could be worth a shot. Let me know if you would need more information … | |
![]() | Re: Oussama is on the right path, you'll need to create 2 forms. One for your "screen dimming" and one for your dialog box. FORM ONE properties: "FormBorderStyle" = NONE "WindowState" = MAXIMIZED "Backcolor" = DESKTOP "StartPosition" = CENTERSCREEN "Opacity" = 85% (if setting property via code use a number between … |
I would like to know what you as a community think of my code in terms of database connection and SQL statements. How I do it physically. Let me know if there are any improvements I could make and if there are, point me in the direction on what i … | |
Re: Make sure you have the OleDb namespace! Imports System.Data.OleDb Plug that line in at the very top of your code above everything else (Including your class line!) See picture link [Here](http://bayimg.com/gaNmIAAFF). It sends you to bayimg.com a free anonymous uncensored picture uploader see info [Here](http://en.wikipedia.org/wiki/Bayimg) | |
Re: This method would be even simpler. All it does is run a simple FOR loop and you can call it whenever you want to. In the loading screen, you can make it it's own subroutine, however you want. For mylist As Decimal = 0.02 To 7 Step 0.01 ListBox1.Items.Add(mylist) Next |
The End.