440 Posted Topics
Re: Hmm, I am curious, what version of Access are you trying to connect to? You say you are using Excel 97, but what version of Access? And why are you using DAO to connect via ODBC instead of ADO ? ADO would have made you life a whole lot simplier. | |
Re: One way is with a JScript function in the OnClick event for a button. [CODE] <form id="Form1"> <INPUT Type="button" OnClick="window.open('http://www.google.ca')" value="enter"> </form> [/CODE] That help? | |
Re: Ok, just to clarify? Replicate autonumber in SQL how? You mean within an SQL function/store procedure or in another coding lanuage (if so which one)? IDENTITY(x,y) is how you use autonumber in SQL ( x = starting point, and y = increment by) | |
Re: A [b]search[/b] is bascially a query in the most basic sense. i.e. SELECT title FROM books WHERE author = "King, Stephen" So the questions become; What are you wanting to do for the search? Do you want to search on one specifc criteria (i.e. Username or book title) ?? Do … | |
Re: [quote=nazeem2005]I want to send and receive email. Plz tell me how to create a Webmail for this[/quote] [URL="http://www.codeproject.com/aspnet/ASPNETwebmail.asp"]http://www.codeproject.com/aspnet/ASPNETwebmail.asp[/URL] | |
Re: I have seen it with a buddy once. He works in the industrial programming field. You know, programming forklift like machines, auto-maker plants, and stuff. Anyhow he uses it a lot from what I understand. | |
Re: Not quite sure of the issue here. Is it that you plug something into the USB ports and it is not being recognized? Are the ports even recognized (see the under device manager with no exclamation points?) by the system? | |
Re: Umm Wallace, are you refering to Internet Explorer asking you this on websites that prompt you for a login? | |
Re: [b]Client Side[/b]: This is code/routines that are not processed at all by the server. Code is written in scripts (javascript usually) - plain text commands that instruct the client to do something. Generally used for performing dynamic effects, such as image rollovers, or displaying message boxes, or even validation of … | |
I just thought I would post some names of some good old fashioned shareware/freeware software [url=http://www.jcreator.com/]JCreator LE[/url] - For Java Development [url=http://www.lancs.ac.uk/people/cpaap/pfe/]Programmer's File Editor[/url] - Nice little text editor with Line numbering! Allows MDI [url=http://www.lavasoft.de/software/adaware/]Adware 6.0[/url] -Removes some spyware [url=http://www.alzip.com/]AlZip[/url] - Alternative to Powerarvhiver or Winzip Enjoy Cheers! | |
Re: Dani, I am sorry to hear you got hurt, but glad to see from the posts you are feeling better. Pain medication being a pain with alertness? Being that I am a pharmacist by profession I can understand that. Well hope you recovery continues to go well.... best wishes to … | |
Re: [quote=ShahdaaD;289072][COLOR=#555555][B][I]hi guys, I am a Beginer Programmer.[/I][/B] :confused: [/COLOR] [COLOR=#555555][B][I]I Like to Learn about C# and i started from a week ago.[/I][/B][/COLOR] [COLOR=#555555][B][I]I Searched in google to find a froum to get some help about C#.[/I][/B][/COLOR] [COLOR=#555555][B][I]and i found this website.i hope i can find some friend to get help.[/I][/B][/COLOR] … | |
Re: What is the error you are getting? You could do a test for the number of records and only loop if it is greater than 0. And how are you looping through the table? [b]Pseudo-Code:[/b] [code] Dim dr As OleDbDataReader = cmd.ExecuteReader() Do While dr.Read ... ... Loop [/code] Hope … | |
Re: It is late and I am a little tired so reading code is getting hard at this hour.... but why not store this variable value in a Session variable? | |
Re: Yes! Yes! Finally someone is taking a stand! | |
This is a continuation of the [url="http://www.daniweb.com/tutorials/tutorial19303.html"]Updated: ASP.NET Login Page Tutorial[/url]. This tutorial will demonstrate how to create a registration page for new users to your site. This registration page will utilize the same principles used in the Login Page Tutorial, so this should be no more difficult to do … | |
Well I never would have imagined that this was that hard to find. But does anyone know how you would make a USB keyboard work on an old computer that only has ps/2 keyboard and mouse ports? I got the mouse to work with a USB to PS/2 converter that … | |
Re: I would have to see the function code. The function you are a not calling. I am at a loss as well. | |
Re: Hardware conflict somewhere. Radeon may be the culprit. But it is hard to say. new drivers didn't fix anything. Hmm... I would suggest Windows 2000. | |
[B]Simple ASP.NET Login Page using C# (ASP.NET 1.0 & 1.1 ONLY!!! [COLOR=Red]NOT 2.0[/COLOR])[/B] This is just a small demonstration to show how easy one can "port" the code from my previous tutorials ( [URL="http://www.daniweb.com/tutorials/tutorial19303.html"]Updated: Simple ASP.Net Login Page[/URL] & [URL="http://www.daniweb.com/techtalkforums/thread19303.html"]ASP.Net Login Page with SQL [/URL] & [URL="http://www.daniweb.com/tutorials/tutorial23605.html"]ASP.Net Registration Page[/URL]) over … | |
Re: [quote=varsha gupta;295033]plz help me sending a small project in c language for fulfilment of my 5 sem b tech course.... thanking u[/quote] [b]Varsha[/b] - We are here to assist and help, but not do the work for you. If you have some guidelines on the project requirements that can help … | |
Re: There is a New Junk Mail Patch on MS Office Update page! | |
An example of using the ToString() DateTime Strings to produce common date & time output formats in Visual Basic.Net | |
Clearing Controls & Forms in Access (VBA) | |
Re: Validate your login credentials have the proper privileges. | |
Re: As you wanting to store this in the Database? You could us an old CGI standard? Or you could do something like this website shows (writing to a text file). [URL="http://www.c-sharpcorner.com/Code/2002/Aug/HitCounterAspNet.asp"]http://www.c-sharpcorner.com/Code/2002/Aug/HitCounterAspNet.asp[/URL] or another example [URL="http://www.asp101.com/samples/counter_aspx.asp"]http://www.asp101.com/samples/counter_aspx.asp[/URL] | |
Re: Well ok, SQL 2005 Server Express is a good starting point. You could use Access, MySQL, or Oracle as other possible databases. Depends on your knowledge and experience. Knowing the differences between T-SQL and PL-SQL is also something to consider. For the size of the setup you are describing I … | |
Re: Basically it comes down to the difference between .Net 2.0 (2005) and .Net 3.5 (2008) Framework. Basically what you code in .Net 2.0 won't work the same if at all with .Net 3.5 framework. But fear not, with Visual Studio 2008 allows you to select .Net 2.0, .Net 3.0 or … | |
Re: ".[COLOR=DeepSkyBlue][I]. I don't mean to be critical of your style of coding, I know we all learn at different speeds and are all at different stages of development. One of the things i love about ASP and ASP.net is there are an almost unlimited number of ways to accomplish a … |
The End.