Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~2K People Reached
Favorite Tags

11 Posted Topics

Member Avatar for jdsurgeon

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 …

Member Avatar for jdsurgeon
0
107
Member Avatar for jdsurgeon

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

0
62
Member Avatar for killbill07

This should work I believe. [CODE] dim pictureboxarray as list(of picturebox) [/CODE]

Member Avatar for codeorder
0
344
Member Avatar for DanielWuVB

The language really wouldn't matter since all languages compile to CLR so it's really a preference.

Member Avatar for DanielWuVB
0
86
Member Avatar for JimOneill

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 …

Member Avatar for jdsurgeon
0
157
Member Avatar for jdsurgeon

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 …

0
65
Member Avatar for Smoogel

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 …

Member Avatar for marketingmaniac
0
196
Member Avatar for jcfans

use the string.replace() method look at this document it shows examples. [url]http://dotnetperls.com/replace-vbnet[/url]

Member Avatar for jcfans
0
149
Member Avatar for smileb4subu

this should work. [CODE] dim i as decimal ctype(textbox.text, decimal) math.round(i,2) [/CODE]

Member Avatar for jdsurgeon
0
108
Member Avatar for Kingcoder210

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.

Member Avatar for nore
0
356
Member Avatar for imolorhe

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]

Member Avatar for jdsurgeon
0
456

The End.