|
-
Aug 28th, 2007, 05:00 AM
#1
Thread Starter
Hyperactive Member
Vb2005
Hi
When I create a new project in vb.net 2005, It will create a
"My Project" Folder.
How can I remove it.
While coding in vb.net I see color yellow / green in between Line Number and coding. what it means because it will change according to the coding..
thanks
-
Aug 28th, 2007, 06:37 AM
#2
Re: Vb2005
 Originally Posted by asm
While coding in vb.net I see color yellow / green in between Line Number and coding. what it means because it will change according to the coding
Can you post a screen shot?
-
Aug 28th, 2007, 07:26 AM
#3
Re: Vb2005
 Originally Posted by asm
Hi
When I create a new project in vb.net 2005, It will create a
"My Project" Folder.
How can I remove it.
What possible reason could you have for doing so?
 Originally Posted by asm
While coding in vb.net I see color yellow / green in between Line Number and coding. what it means because it will change according to the coding.
You look but you don't see. When you edit a line of code it turns yellow. When you save the code it turns green.
-
Aug 28th, 2007, 07:32 AM
#4
Re: Vb2005
 Originally Posted by jmcilhinney
When you edit a line of code it turns yellow. When you save the code it turns green.
When I edit a line of code it doesn't turn anything. Nor does it turn anything when I save it.
Is this some kind of IDE setting that I'm not using?
-
Aug 28th, 2007, 07:41 AM
#5
Re: Vb2005
 Originally Posted by Hack
When I edit a line of code it doesn't turn anything. Nor does it turn anything when I save it.
Is this some kind of IDE setting that I'm not using?
Note the code itself. It's a thin margin along the left-hand edge of the code window.
-
Aug 28th, 2007, 07:44 AM
#6
Re: Vb2005
 Originally Posted by jmcilhinney
Note the code itself. It's a thin margin along the left-hand edge of the code window.
I never noticed that before.
I rather imagine its purpose is to provide an unintrusive way of reminding you of where you are in the code window, right?
-
Aug 28th, 2007, 07:46 AM
#7
Re: Vb2005
 Originally Posted by Hack
 I never noticed that before.
I rather imagine its purpose is to provide an unintrusive way of reminding you of where you are in the code window, right?
It shows you what's changed since you opened the code file and what's changed since you last saved the code file.
-
Aug 29th, 2007, 02:21 AM
#8
Thread Starter
Hyperactive Member
Re: Vb2005
[IMG]C:\Documents and Settings\server\Desktop\Folder\GetSingle.bmp[/IMG]
In the image we can see the color in between code and line number.
And also guide about the error
thanks
-
Aug 29th, 2007, 02:28 AM
#9
Re: Vb2005
 Originally Posted by asm
In the image we can see the color in between code and line number.
And also guide about the error
thanks
You can't link to an image on your local machine. A link has to be to an image on a Web server. If you want to use a local image then you have to attach it to the post.
-
Aug 29th, 2007, 02:35 AM
#10
Thread Starter
Hyperactive Member
-
Aug 29th, 2007, 02:38 AM
#11
-
Aug 29th, 2007, 03:21 AM
#12
Thread Starter
Hyperactive Member
-
Aug 29th, 2007, 05:02 AM
#13
Re: Vb2005
What is the type of the object or value that that function is supposed to return? If it's supposed to return an Object then that's what you should be declaring:
Code:
Public Function GetSingleData(ByVal strQuery As String) As Object
If it's supposed to be some other type then specify that. You should ALWAYS specify the type of EVERY field, property and function.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|