Implement A VIN Decoder Functionality In Website?
Jun 29, 2010
I want to implement a VIN decoder functionality in my website, where user will input the VIN number to get Vehicle information like, YEAR, MAKE, MODEL, BODY STYLE and etc.
But I don't want to subscribe to a service.
View 4 Replies
ADVERTISEMENT
May 28, 2010
I was asked to develop a simple application to handle car inventory. Each car has a LOT of properties (about 130, like license plate number, type, was it serviced, etc.). Some of these properties are represented by bit data type in a database some are varchar.
The problem is that I need to provide search functionality for any of all these properties and any combination of them. This results in a search form with about 130 controls. I certainly do not want to put the SQL query together manually by checking the state of each and every control. To propagate the problem further I need to be able to search for partial strings as well (i.e. if the user enters "porsc" into the car brand field then all Porsches should be found).
View 2 Replies
Oct 1, 2011
I want to implement drag and drop functionality in my program, but it isn't working. Here's the
vb.net
'I removed the code because it wasn't needed anymore ;)
I've set the AllowDrop property to true, and when I drag a file onto a program, the cursor changes to Unavailable, and I can't drop my file.
View 11 Replies
Apr 22, 2010
I'm trying to implement printing functionality into a simple program for my company. It's not necessary, but it would be a nice finishing touch for everyone. And really, in practice, my printing feature works. My problem is that each line is printed on a separate page of paper and I can't find a way to just like, print a page.
It doesn't have to be fancy. I know that I won't need word wrap, nor will anyone ever print more than one page. Here's my ginked & modified code thus far:
Private Sub PrintDocument1_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDocument1.PrintPage
Dim linesPerPage As Single = 0
[Code].....
View 1 Replies
May 5, 2009
I'm trying to implement cut, copy and paste functionality in my application. My menu is on the main form of my MDI application and I would like to cut copy or paste from any textbox from any mdichild.
View 5 Replies
Aug 4, 2010
I am using Visual Basic 2010 Express to develop my windows application.
I am developing an application wherein I need a functionality similar to the outlook email address.
In outlook, we are able to enter multiple email addresses in "To" address box. When typing first few chars of an email, the AutoComplete functionality displays the list of possible email addresses. Either we can select from the list or we can continue typing. As and when we type email addresses, the AutoComplete functionality shows the list of possible email addresses for every email address that we type in the textbox (if anything is there). I am trying to implement this functionality in my application
I found there is a AutoComplete functionality for textbox. below is the code
[Code]....
I know that the AutoComplete is only for one word and not for multiple.
But How to implement the AutoComplete functionality for multiple word in a textbox?
View 2 Replies
Dec 27, 2011
I have several asp.net website projects for various sites.Currently I want to add REST API's to these projects so I can start developing mobile apps (using HTML5/JavaScript/CSS3 and PhoneGap) that make use of these webservices.
Since WCF is far more powerful than regular asp.net webservices (among others with control over the service and authentication/authorization), I'd love to add these to my existing website project.
I did a Google search but cant find anywhere a step-by-step tutorial how this can be done. And also if there's any functionality I'd possibly loose when adding WCF functionality.I was also thinking of creating a new project specifically for WCF, but think I'd rather add it to an existing website project.
View 2 Replies
Jun 24, 2009
I downloaded nUnit and TestDriven.net. I have a legacy Web Site application and I would like to implement some unit testing. I created a class in the app_code folder and added Imports NUnit.Framework etc... After writing a basic test, I get the "Can't execute tests in 'Web Site' application." error. I guess the Web Site project is not supported. Converting to a Web Application is not an option at this time. I have Visual Studio Test Edition, so I tried that route. I created a test project, wrote a couple tests in my test class etc... only to find out I cannot reference the classes in the app_code folder of the Web Site project.
View 2 Replies
Jul 26, 2011
I'm writing a social networking application in VB.NET, with a target userbase of 1-2 million users. All user data will be in memory in a dictionary of 'User' objects with properties such as Country, Region, Age etc exposed. I need to perform search against multiple user properties in memory - I'm not using SQL.What's the most performant way to implement a 'user search' against multiple properties?
View 1 Replies
Dec 31, 2010
I'm going to start with a program, and give away bar codes, that they import, then unlocks something.
View 2 Replies
Jun 18, 2012
I have a website that has highly granulised access and hence requires many web.config files. The problem is I would like to trim the menu so that only certain users will have access to certain folders. I have enabled trimming and setup roles in the sitemap, however when I access the page the menu is not show, as I am authorized to view the default page which is not in a subfolder. When I type the url of a page in sub folder's I have access.
How should I handle this:
A site map for each web.config file - don't know how this will work Removing the sub web.config file to only use a single one
View 3 Replies
Aug 12, 2009
I have tried to find the sdk ('Windows Software Development Kit') mentioned in the 'GIF Encoder and Decoder Sample', but there are so many SDKs I can't find the one I need. I am using visual Studio 2005 Standard Edition on Windows XP. The language I program in is VB. Can someone point me to the right SDKs for the sample and OS and VS version?
View 3 Replies
May 18, 2010
I am trying to implement facebook like button on my website. The first four lines in the code is already there on my site after the end of the "" tag.
To implement the "Like button" i have added the second script (Line five to the end)and ran the application. Its giving me an error as
"Microsoft Jscript runtime error:'_onLoad' is null or not an object"
<script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php"></script>
<script type="text/javascript">
[Code].....
View 2 Replies
Feb 19, 2010
What Im making is like a face book and tagged login from my app
1. I have Combobox with 3 urls in there ( Facebook.com Tagged.com and Bebo.com )
2. I have a Form2 with webbrowser
3. I have a Button when clicked it should open up my form 2 and preview of the website which I selected in my combobox in form1
All I'm trying to do is when I select lets say facebook in my form 1 and click load it should open up my form 2 with facebook website in it.[code]Now when I click my button in form 1 it will load Form2 ( named Explorer1) but my form2 is not showing me facebook or tagged page for some reason
View 13 Replies
Feb 26, 2011
i'm creating a website that allows people to upload images to the website in a folder called images on the Site. But I don't know how to upload a file and I'v searched everywhere Please Note: In this Website were not Using the asp:fileupload, were developing our own interface
View 1 Replies
Apr 6, 2009
What I want is: To scan a website every 15 mins or so, (craigslist in this case), and email myself any new posts that come up. I know I need to use WebClient, but I never used that before. Another question would be how to only email when a new post is up and not receive the same email every 15 mins.
View 2 Replies
Dec 6, 2011
I have a form with nearly 20 Textbox and 5 Combobox and one control in dependent on the other,Now I want to write the code for the form in such a way that, Pressing Enter Key and Tab Key should have the same functionality.Like on pressing Tab Key the focus moves to next control should also be performed when I press the Enter Key.Similarly when I press the Enter Key, there is some process code written in key press event but this should also be performed when I press the Tab Key.
View 2 Replies
May 25, 2009
I'm a complete noob to VB.NET and have just made a tic-tac-to game and want to make it multiplayer over the the internet with direct conection via IP address (like CFS3 and the like).
The only thing is I have never used the this before and have searched loads on google and on this site, I just can't seem to find anything that I can understand so if anyone can help me out with where to start getting two machines talking, I have used the WINSOCK tool in VB6 before but didn't really understand it.
View 1 Replies
Feb 6, 2012
I have used sockets in VB6 before but cannot get the same functionality to work in VB.net. I have two machines running VB code and I want the applications to exchange information via a network connection. Using VB6 and socks it was easy but I just can't figure it out in VB.net.The data exchanged are string messages; there is no interaction between users it's just the applications exchanging info. The one machine will always be the server and is running a windows forms application which I'm writing in vb.net (it's actually a satellite antenna controller) the other machine is connected by an Ethernet connection (private network these are the only two devices) and is also running a windows forms application which I'm writing in VB.net (this is the remote controller for the satellite antenna controller) Can someone give me a pointer to some simple code that opens a connection and I can read and write between the two (both ways) using string messages. I' am assuming sockets are the right way to go? Everything I research keeps coming up with console applications
View 4 Replies
Jan 25, 2011
I have a ASP.NET 2.0 website created in C# that acts as a completely independent site and I am looking to integrate this into an existing ASP.NET 2.0 website created in VB.NET. Unfortunately I just don't know much about the server management side of ASP.NET yet so too much I'm unaware of when it comes to IIS configuration etc. Does anyone have any advice as to how I can go about integrating this? Basically I want to host it in a subdirectory from root so when you hit example.com/myindependantsite/ it will pull up my C# site.
One possible solution I came across mentioned just dropping the project folder into the root directory and setting up that directory as an application virtual directory in IIS? A few other random questions were small things like would my application relative links (~/for-example.aspx) stay relative to my root subdirectory if it's made into an application virtual directory? Just trying to get this running on their site but like I said it's completely independent so want to preserve my websites environment.
View 4 Replies
Jul 21, 2010
In the following code, the items master is displayed the user can select as many as needed to add to the budget grid. Now the need is to remove a line that was added if so desired or if by mistake they added the wrong line.[code]..
View 1 Replies
Mar 3, 2010
I want to statically define a mapped array of strings like:
var dict = {cat:50, bat:10, rat:30}
and lookup values within it like:
MessageBox.Show( dict["cat"] )
View 2 Replies
Mar 16, 2012
adding certain functionality to an existing ASP.NET application running on IIS 6.0 programmed in VB.NET.To aid in future development the client wants the additional functionality to be as future proof as possible. Ideally i have said that I would like to push for a solution using ASP.NET MVC3, running off IIs 7.5 and .NET 4, written in C#. This solution would act as a seemless addition to the current web-portal appearing probably just as an extra tabbed page.
But they will be completely seperate web-apps. Which is crucial.The main problems i can forsee are firstly sharing session particulars between the asp.net web app and the new application. Particularly with regard to maintaining session state (and not having IIS timing out on one of the apps). Also, conjoining the two "apps" appears problematic in my head, although this may be far simpler than i fear.
1) Embed the new fuctionality into the existing codebase (not a great option). This would mean losing any potential future upgrade-ability and also means not following better OO conventions by utilising the MVC framework.
2) Using an iFrame to link to the razor pages of a seperate MVC3 app (the one im favouring currently). Allows uses of all new technologies, however downside is sharing session data. Either through iFrame "attributes" through persisting a session state to a db? (slow?) or even some kind of web service interaction between the applications to push/pull user/session data?
View 2 Replies
Jul 14, 2011
I need my asp.net web app to enable users to select a folder from the file system and also from network, to copy the content files to another folder.
I am not going to use javascript activeX.
View 2 Replies
Nov 24, 2009
I need to add in mail merge functionality to my application. I don't have MS Office, but I do have MS Works (which does have mail merge functionality, in the word processor application). Can the MS Works Mail merge functionality be accessed from VB.NET code.
View 1 Replies
Dec 1, 2010
I have a treeview which has lots of files listed in it that it has downloaded so far in it & I want to make it faster/easier to save files in my program rather than clicking save 100 times, is there a way I can make it so they can physically drag the item out of the app to a desktop/folder & have it save there? I am willing to do whatever coding it takes but just need a basis for how it maybe done.
Like I have a lot of files listed under multiple treeview items too though so can I also make it so when I drag a certain item it will make a new directory with all the files under it included? For this all I need is the basis of where they dragged to & what item they dragged then I can make the code to actually put everything where it's meant to be but I don't know if this is possible. I don't want to keep using the slower method of clicking save on each individual file or even the whole tree of items, while pretty quick I just want to do drag+drop instead. I will keep both methods in the program but have drag+drop in it I think could be really useful, I don't need to drag files into the treeview though, just drag items from treeview out to make it save the file(s).
View 16 Replies
Sep 9, 2009
I am looking at adding in some bluetooth functionality to my vb.net application. I require it to couple with a specified mobile phone (that is found by the app) than to be able to retrieve contact information, phone calls (made and recevied) and images from the phone.
Can anyone tell me what my best approach will be for this? If there are any good third party solutions that will do it? If it is actually doable? Im thinking that it should because im basically mimic'ing what all the new fancy cars do with their bluetooth phone compatibility.
View 1 Replies
Apr 24, 2012
I have an asp.net website, and i have set 1 page "search.aspx" as start page,and when i type url like this:" http://localhost/websitename/subfolder/Search.aspx"
it opens properly.but i want it to open when i type : " http://localhost/websitename/" like this only,
and i have set the "search.aspx" as start page.
View 6 Replies
Nov 26, 2009
I need to extend the functionality of the ToolTip control...Problem: I need to show some introductionary instructions to my users the first time they see a new form based feature in my app. Something along the lines of: '...Welcome to the blah, blah, blah feature. To do this, click that, mouse here, press that so on and so forth...'
Then I want a 'Don't show this again' check box somewhere near the bottom so the 'welcome screen' can be supressed. Currently I'm thinking of loading an app wide form (Public Dim frmMyToolTip as frmToolTip) and using it's .TopMost property to ensure that when I show it, it appears over my modal form (I can Hide/Show at will.) Also without a caption or border, my users can't move it.
As it will be displayed on top of a Modal form, I need a Background worker component to run a timer which will hide the form after a set period. I can store the state of the CheckBox to stop the form from showing next time if user does not require it.
View 1 Replies
Sep 29, 2009
I have a combo box having multiple items and I want by typing the item should select automatically and combo box style should be "DropdownList" type.Let�s say I am typing "I" then country like "India", "Indonesia�,� Italy" should sort automatically. It is happening by default in VB.NET for one character.But I want If I type "India" this should select "India" instead of "a...." because my last character is a. in VB.Net it is selecting country like starts with "a�. But I want the full typing option should be present for the combo box.
View 1 Replies