Possible To Convert Source To C++?
Jun 24, 2010
Are there any tools converting vb.net source to C++ eg gnu C++. I know that Mono can transfer the projects to different platforms but i would rather prefer to convert the source. Since all we know that .net uses its own binary libs not available to other complilers is there any tool at least converting vb.net to C++ .net
View 7 Replies
ADVERTISEMENT
Jun 5, 2012
How do I convert a VB4 source code to VB10 source code?
View 3 Replies
Jun 30, 2009
I was wondering if there was a way to convert an EXE file made in Visual Basic back into its project form?
View 1 Replies
Nov 25, 2010
I have a few projects developed in VS2010 but would like to share them with a fellow programmer who is using VS2008.
View 3 Replies
Dec 30, 2009
I found a nice source code for enumerating running application window and child window with several APIs in VB6. But when I convert this source code to vb2008 it doestn't work. Is there anybody to convert this source code attached to VB 2008 version.It will teach all of the newbies some nice ways to upgrade their other source codes to VB2008.
View 2 Replies
Sep 25, 2009
I have a program that belongs to vb windows form application and i want to make the program in vb class library[code]...
View 3 Replies
Jun 6, 2009
Would it be possible to convert strings to ASCII and subtract a number from each at the source, then add a number at the receiving end? I am sending messages on a LAN network (hopefully) and I know the packets may be monitored so I want to make sure they at least can't be read just by opening the data, something simple will do.
View 3 Replies
Jan 26, 2010
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?
View 6 Replies
Jan 6, 2011
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.
View 1 Replies
Oct 11, 2010
I have an Access database and I want to view on a datagridview specific rows. For that I used the following :
CasesBindingSource.Filter =
"OfferDate Between #1/1/1997# And #12/31/1997#"
Cases is the table, OfferDate a field of the table wich is DateTime type.
When I use Between operator I get the following error :The expression contains unsupported operator 'Between'.
View 2 Replies
Dec 12, 2009
I 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 .
View 15 Replies
Feb 10, 2012
I refreshed my data sources to include additional items from the SQL Server databases and it appears that my entire data source from my VB.NET project disappeared.I am using Entity Framework. I may have clicked on something wrong, not quite sure. Unfortunately I can't recreate the Data Source without creating a new Entity and Data Model.I can delete the entry in the App.Config file and recreated it, however things aren't quite right.Is there a way that I can recreate my Data Source from the entry that is in my App.Config file...since that appears to have remained intact.BTW, I can go to my Data Model and successfully refresh from there, however my project isn't connecting to the database so I have quite a number of errors until I can get reconnected.
View 4 Replies
Oct 29, 2011
is there any way that i could link/bind multiple binding source to only one binding source navigator?
View 4 Replies
Feb 22, 2010
See where my vb.net equivalent of a working c# assignment statement is not working?
bytes(i / 2) = Convert.ToByte(hex.Substring(i, 1), 16)
Here's the c# followed by the vb.net function.
private byte[] StringToByteArray(String hex)
{
int NumberChars = hex.Length;
byte[] bytes = new byte[NumberChars / 2];
[CODE]...
And the vb.net that is throwing the error within the for loop
Private Function StringToByteArray(ByVal hex As String) As Byte()
Dim NumberChars As Int16 = CShort(hex.Length)
[CODE]...
View 2 Replies
Dec 8, 2009
my project was intially mandated to be done in c#.however a large contributor to the project wrote much of the business logic, which he knows well, in vb.net.How difficult would it be to convert the following c# code into vb.net.
[Code]...
View 5 Replies
Jun 2, 2011
I am doing project in 2010...I am trying to add new data source.
[code]...
View 1 Replies
Dec 9, 2011
I have some code that calls to Active Directory and gets a list of users then adds them into a ComboBox.
I would like to extend this feature by allowing the combo box to autocomplete when a user starts to type.
Ive read a few articles but they seem to be based on data coming from SQL server but none on Active Directory. Could anyone assist by advising how i could go about this?
View 1 Replies
Jan 18, 2012
I have an unbound DataGridView
I want to be able to add just a few rows in one specific column, save this to My.Settings, and be able to load those words back into the DGV at the press of a button, make any changes, then re-save in My.Settings.
I don't want to have to bind my DGV to a source.
View 4 Replies
Apr 23, 2012
[code]i get the error: Invalid URI: The format of the URI could not be determined.
View 6 Replies
Aug 21, 2009
I want to know how to get source from an exe.i mean some one say its decompiling
View 3 Replies
Nov 2, 2009
After four attempts, it needs to login to a legitimate account - and it can then logout and carry on searching for other sources.[code]...
View 1 Replies
Mar 16, 2009
i 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 Replies
Aug 8, 2003
Is it possible to get source code from dll ? It's a vb.net web application.
View 6 Replies
May 12, 2009
I need to get the source of a webpage that my browser control has loaded.
Whenever i use browser.document.htmltext or anything like that dont get the proper source that i need.
The URL is masked so i can't use some sort of HTTP response request to get the page source.
The website only works with IE and does not behave normally like most sites.
The only way I've been able to get the source that i need is right clicking the webpage in my browser, and selecting "View Source".
How can i do this "View Source" programmicatally so i can work with the source code of the web page?
View 8 Replies
Dec 11, 2009
Well to get started on my program I'm working on a program that downloads info form World of Warcraft Armory website and then gives you statistics about random stuff. I'm having a little trouble with getting the XML. When you right click and click View Page Source you get the XML document. That is the exact text i want in my textbox of my form. So to recap: I want to get the "View Page Source" code of the website posted above. Iv tried the .documenttext and the .gethtml and .inner .outer ext ext but it all returns HTML and not the XML document from the right click and "View Page Source"
View 6 Replies
Aug 29, 2009
I use this code to get the source from a URL:
Public Function ScreenScrapeHtml(ByVal url As String) As String
Dim objRequest As WebRequest = System.Net.HttpWebRequest.Create(url)
Dim sr As New StreamReader(objRequest.GetResponse().GetResponseStream())[code]....
But what if the URL is[url].... or something else that doesn't exist, how do I handle the error? The program is crashing right now.
View 1 Replies
Sep 1, 2010
I have a datatable in memory (a flat file, no primary key or relation to other table) and I wish to make a pivot table in Excel out of it. I have been using the Excel COM, so I am hoping that there is a way to do it this way. I have seen code that will put data in a pivot cache via an SQL connection string, but I have yet to find anyway of using a datatable as is. url....The above link has everything I need to do, but I can't find exactly how to use a datatable as the source.
View 1 Replies
Mar 24, 2011
I 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 Replies
Aug 20, 2011
source is not declaredNever Fear Spartucus49 is here
View 7 Replies
Jul 20, 2011
how to get web source.
View 2 Replies