No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
For some reason when i run this link statement I get this error not sure why am I getting it but it doesn't make any sense. I am not even doing a conversion. the field I am counting is a string field but the alias is a variable. Conversion failed … | |
Hi I was wondering what would be the best platform to start developing an internet radio site. Basic Needs Youtube Html video embedding Internet radio control for playing music Upload music for internet radio Member profiles | |
Re: This should work I believe. [CODE] dim pictureboxarray as list(of picturebox) [/CODE] | |
Re: The language really wouldn't matter since all languages compile to CLR so it's really a preference. | |
Re: I'm not good at c# so i wrote it in vb.net hope you can still understand this. [CODE] dim db as new you datacontext dim login as string dim password as string login = textbox1.text password = textbox.text try dim getlogin = (from alias in db.users where alias.username = login … | |
this should connect my datacontext to the new connection string but for some reason it does not work not sure is there a better was to do this. This is a WCF service also. [CODE] dim db as new theradatacontext Public Function connect_db(ByVal server As String) As Boolean Implements IKattservice.connect_db … | |
Re: set the forms visible property to false call the forms .focus method then use the send keys command it should allow you to send keys to an invisible form. or call the process using the process class and focus to the process example notepad.exe you might need to get the … | |
Re: use the string.replace() method look at this document it shows examples. [url]http://dotnetperls.com/replace-vbnet[/url] | |
Re: this should work. [CODE] dim i as decimal ctype(textbox.text, decimal) math.round(i,2) [/CODE] | |
Re: You might need to check your prerequisites the computer that its not running on might not have the correct .net framework or references that you reference in your project. Go to project properties and check your prerequisites and make sure the pc has the same software. | |
Re: You have to create the events for the control. here is an example from one of my outlook addins. the addressOF parameter can point to a sub procedure or function that can handle the event. [CODE] Dim mail As Outlook.MailItem AddHandler (mail.BeforeAttachmentAdd), AddressOf mail_BeforeAttachmentAdd AddHandler (mail.AttachmentAdd), AddressOf mail_AttachmentAdd [/CODE] |
The End.