VS 2010 Way To Secure The Source Code?
Mar 3, 2010I don't want other ppl to steal my source cu code, and with reflector you can!Is there a way I can crypt it or wahtever. So ppl cannot see the source code in programs like reflector?
View 24 RepliesI don't want other ppl to steal my source cu code, and with reflector you can!Is there a way I can crypt it or wahtever. So ppl cannot see the source code in programs like reflector?
View 24 Repliestoday i have wanted to print some source code from VB 2010 and has been surprised by getting only black & white instead of color ( like in VS 2008 ).If you also like code printing in color then vote here:
[Code]...
Why does VS2010 only print the source in B&W? I have made sure my printer is set for color and everything else prints in color including (excuse me) VB6 code.
View 6 RepliesVS 2010 Source Code Printout
View 1 RepliesI want my form to navaigate into a link then open up the source code of that page it navigated to . Then get a link from the source code then display it on a textbox .Here's an example : i want this link in a source code :
http%3A%2F%2Fanime-omnibus.ning.com%2Fvideo%2Fvideo%2FshowPlayerConfig%3Fid%3D3382149%253AVideo%253A160429%26ck%3D-
This link is located just beside :
config=
That is:
config=http%3A%2F%2Fanime-omnibus.ning.com%2Fvideo%2Fvideo%2FshowPlayerConfig%3Fid%3D3382149%253AVideo%253A160429%26ck%3D-
How can i make my form to navigate into the source code and get the link beside config word . I know it is possible to do it , just don't know the function to do it .
I am trying to migrate a source code from BASIC to VB.NET 2010
Dim obj(4096)
Dim strng As String
obj$ = string$ + ".obj" -> Error: Value of type 'String' cannot be converted to '1-dimensional array of Object'I can get away with this in VB6 but i can't in VB.NET.I can't convert obj using CStr either. ToString won't work because it work on the left side of an assignment.
I wanna make a software that checks for copied source code.The input will be the source code files. and then the software should check for duplication.I want to make this software to improve code assignments submitted by students in colleges.
View 1 RepliesI'll be able to get some advice and help with regards to my question. Basically I am trying to achieve the task of downloading source code from a website say forum then using a simple parser technique remove the metadata from the uploaded data and store it into the database.
I know how to download information from a website by using the following code
[Code]...
Almost every site have to login to see more the pages of the sites Now my problem is I can not get the source code of sites require login... So my question is how can I connect to site and get the source code (link requires login)
View 8 Repliesedit: nvm solved it
View 2 RepliesI have AxSHDocVw.AxWebBrowser in my form. I want to get the source of the navigated webpage
View 3 Replieshow to replace the html code numbers with the correct ones? i would show you example of html output, but vbforum automatically converts the characters so no point. i wish the replace all the & #40; (without the space) and so on with their correct replacement eg, ( in this case. also would like a short way to do this as i will be using this multiple times. so basically i would like the source to be exactly as it would if you viewed source in firefox browser, not with all the special chars unformatted like visual studio does.
View 3 RepliesCan you please explain me and/or show some good tutorials how to do it?It seems pretty complicated because visual studio usually does it all for you and that made me stupid and not to do anything about it.Things I don't know to do in code but I know VS does it for me:
[Code]...
I'm sure there is a good tutorial somewhere on the internet. I'm okay with doing it with designer, but now when I have a situation where I can't use MDI container but tabcontrol.Other solution would be to make a MDI container out of tabcontrol. Is it posible or only other form can be MDI container.
i'm making a webbrowser, curectly in version 2. 6. But i need some codes before i can release it.
-Source Code
-Save page as
-Delete Cookies
And if you know some more properties for the webbrowser, like options.
How do I convert a VB4 source code to VB10 source code?
View 3 RepliesI've been trying to make a program which access the internet and takes the source code from the webpage. I've copied this code from the internet:
[Code]...
I don't know what this is called so I've struggled to find an answer from google but I have a vague memory of it from t'old days.I've sub-classed (* see below) about 8 framework controls, overriden some properties and added some functionality into each one.The changes I have made are identical in every case. If I make a change, I have to go through each class and apply the same change there.I was hoping there may be a keyword such as <IncludeSourcefile "common.vb> that I can put into each class.
(* note) I use the term sub-classed but I don't know if that's the correct terminology. I've also seen it used for call-backs. Is sub-classed the correct term to use?
Way to space out the source code of a web page, having each tag on one line, without having to search for each tag ending and then making a new line after.
My code for obtaining the source code is:
CODE:
Also if anyone knows a way to colour the tags.
I would like to create a secure login page for a pre-defined set of users (so no creating username/passwords by the users themselves). I've looked up a few sites and they all seem to suggest using Microsoft's Membership or something. I am not very sure as to why that's used, but all you need to know is that I will be creating the login details. I just need to make the login secure, ie, no duplicate logins, no logins from different browsers and cookies and sessions and encryption and all that. Any one have the code/links to where I can get all this?
View 1 RepliesI've never really used the SecureString class before but I've got a requirement in an app to have a user enter a password that will be used later in the application, and I figure SecureString is the most secure way to do this.
I have created a little dialog form where the user will enter their username and password and have set the UseSystemPasswordChar property of the password textbox to True. As I need to keep the password in memory for use later though, I have created a property in my main form that is of type SecureString and when the user enters their password into the dialog window I copy the string from the password box to the SecureString property like so:
vb.net
For i As Integer = 0 To LoginFrm.PasswordBox.TextLength - 1
Me.ConnectionPassword.AppendChar(LoginFrm.PasswordBox.Text(i))
Next
I figured out how to get the original string back when I need to (with only a slight hint from the documentation I might add ), which I do like this:
Dim OriginalString As String = Marshal.PtrToStringBSTR(Marshal.SecureStringToBSTR(Me.ConnectionPassword))
but the problem I have is that I want the user to have the option to edit the password they already entered if they want to. This is a problem because I want to avoid putting the real password back into the password box for security reasons, but then if I just put some random characters in there (just to show that their password has been remembered by the app) and then the user clicks OK on the login diaog form then it will update my ConnectionPassword property and set it to the random characters.
One option would be to set the passwordbox text to something specific each time and then test to see if that is what the text is set to when they click Ok (and if it is then obviously dont update the ConnectionPassword property) but this seems pretty rubbish because its possible (however unlikely) that the user could actually select that word as a password.
Any better suggestions? Perhaps its not worth doing anything at all and just use a normal string as the SecureString is going to have to get converted back to a normal string at some point to be used.
i am searching for gtalk open source code if anybody knows please let me know I need it urgently
View 1 Repliesi wanna generate an HTPASSWD file for my Server to secure a directory. For Crypt im using DesEncrypt Method , here is my Code :
[Code]...
A source code with the DirectInput code and yes i have been googling it and couldn't find one for vbnet yah that would be great to have it just Namespace blah blah function blah blah and this is how u use Directinput("0") or sumthn like that
View 10 Repliesi have previously build DLL file (VB 6.0) with me. Is there any possibility to get the source code from VB 6.0 DLL? I know that we can get code from a .NET assembly using Lutz royers .Net Reflector, but i have VB 6.0 DLL.
View 3 RepliesIs it possible to get source code from dll ? It's a vb.net web application.
View 6 RepliesI have a .exe which was created in VB.net about 4 years ago. Due to some upgrades the .exe doesn't work as it used to.I no longer have the source code and really need to get this program to work. Problem is my knowledge with coding is VERY basic. I was wondering if there was a way to extract the code from the source code from the .exe. I've done some googleing and from what i've gathered it's impossible to get the original source code. Is this true?
View 2 RepliesI completed my first college assignment using visual basic 2005 express (Their first lesson was same)
and in order to submit it to my my proffessor I have to change the source code from a .sln to a .c or .cpp,how do I do this?
I've been working on my A2 Computing project for the past few months - and was working on one form.My computer crashed (for some unknown reason) and subsequently the form no longer works.
I can open up the designer for it, and see all the declarations - but I can't open the source code.[code]...
Does anyone know how to retrieve the html source code of the webbrowser control after it has been modified.Specifically what I've been doing is this[code]...
View 3 RepliesI was wondering why this doesn't work:
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("http://jamesbwoii.fileave.com/hello.html")
Dim response As System.Net.HttpWebResponse = request.GetResponse()
[code]....
I've tired lots of different websites and not one has worked.