- Strength to Increase Rep
- +11
- Strength to Decrease Rep
- -2
- Upvotes Received
- 31
- Posts with Upvotes
- 29
- Upvoting Members
- 21
- Downvotes Received
- 7
- Posts with Downvotes
- 5
- Downvoting Members
- 7
Medical Professional
- Interests
- Medicine/Programming
440 Posted Topics
Re: [QUOTE=daniel75]I have a DataGrid with a picture as link button in one of the columns. The linkbutton automatically gives me a blue linkframe around the picture. How do I get rid of that? Thanks! /Daniel[/QUOTE] Very easy in the img tag just set the border="0" :lol: | |
Re: Well Hello everyone, My name is Troy (aka Paladine - just incase you thought otherwise :mrgreen: ), and I am a licensed Pharmacist in Canada (working for Pharmx Rexall) who also has a diploma in Computer Systems Techonolgy. :cool: I put PL-SQL/T-SQL, Oracle, VBA, C++, and Java as my graduated … | |
Re: Well that is a tough one.... let me see. I have two actually. One is a program we had to write in school that simulate the different CPU alogorithms, and we had a choice of any language. Sounds like a dream...it wasn't. It was extremely tough, since we also had … | |
![]() | |
Here is the solution I found: [url=http://securityresponse.symantec.com/avcenter/venc/data/w32.blaster.worm.removal.tool.html] Removal Tool[/url] Viri and those who create them pee me right off :evil: | |
Re: Logic test eh? Hmm, well what about how would you code a program to do the following?; [code] ************* *********** ******** ***** ** [/code] Or what about Unions and Groupings of Logical pairs? I think I have some actual questions in a binder at home..I will check and post back! | |
This is sample code for a ASP.Net Login page (using Visual Basic.Net code behind) with OleDB connection to an Access Database using ADO.Net. The datebase used is the Access Northwind Database. With the connection string being placed in the [i]web.config[/i] file. [b]1. [u][i]Web Config[/i][/u] File code:[/b] [code] <?xml version="1.0" encoding="utf-8" … | |
Just got to playing around, and felt that the VB forum on here could use some posts. What I was playing around with forms in VB.NET and wanted to hard code centering a form. Here is what I found...and if anyone has an easier or slicker way...let me know. -in … | |
Re: Syntax as such: [i]-with one statement[/i] [code] INSERT INTO table2 (column1, column2, ...) SELECT column1, column2, ... FROM table1 WHERE ... [/code] Not sure if that is what you are asking for, or if you need the VB.NET pseudocode as well? :cool: | |
Re: [QUOTE=krackhead] CLS FOR Outer = 1 TO 5 STEP 1 FOR in = CHR$(65) TO CHR$(70) <------TYPE MISMATCH????? PRINT in; NEXT in PRINT NEXT Outer what am i doing wrong? any help on this would be greatly appreciated....thanks :confused:[/QUOTE] Well you are making it too difficult, the reason is write … | |
Re: Biggest noticeable difference: ASP (Classic ASP as it is known) is a Script Language (i.e VBScript), where as ASP.NET is a the web formulation of a Compiled Language (i.e. Visual Basic, C#, J#, C++.Net) | |
[url="http://../tutorials/tutorial6028.html"]Original thread [/url]- To see why this was Updated [i] Reason for new thread is to start with a clean slate and I will also be providing a tutorial for SQL and possibly Oracle DB connections to show how easy this code is to implement regardless of the DB you … | |
Re: Umm, ok. I will give you some sample code, but you should really consider checking out the tutorials here at Daniweb, or C# websites with tutorials. The principles are the same no matter what language, the syntax is the only thing that differs. And google searches are a really good … | |
Re: Ok, Well since you provided no information about what columns are in your table (excel spreadsheet) and what data you want from that table (i.e. DDL (Data Definition Language)) providing help on a query will be rather hard. So until you provide that information, help will be difficult to get. … | |
This a just a basic webform setup of a listbox being populated with data from a database, in this case the Northwind Access database, and then populating textboxes with data related to the item the user selects. [u]1. WebForm [/u] -Create an ASP.NET webform page -Add a [b]listbox server control[/b] … | |
Re: OK well the error is telling you exactly what is wrong. [b]ExecuteReader requires an open connection and available connection[/b] You need to add this line of code before you ExecuteReader. [b] conn.Open() [/b] Hope this helps | |
Re: I dunno folks, I have had some time to spend doing some reviewing of my Java knowledge on a W2k system I have build strickly for Java Development. And well, I found JCreator to rock for doing what I do at least. I use JavaWebServer 2.0 for my WebPage Server. … | |
Re: OK, when you boot up with the Windows XP CD, you should got through the normal process of F8 to accept some CULA or something agreement, and then be prescent with something like ENTER to install Windows or Esc to Cancel. Then once you hit enter, you should be presented … | |
Re: See [url="http://www.harding.edu/USER/fmccown/WWW/vbnet_csharp_comparison.html"]LINK[/url] [u]C#/C++[/u] short, ushort, int, uint, long, ulong [u]VB.NET[/u] Short, Integer, Long Or have it convert the code for you [url="http://www.developerfusion.com/utilities/convertcsharptovb.aspx"]Convert C# to VB.NET LINK[/url] | |
Re: Not sure what you are asking? Why can't you use this method? | |
Re: I am not aware of anyway that you would be able to do that. You can add some .NET functionality to your VBA (if you have Office 2003), but other than that I can't see why you would want to. VBA provides the functionality you need already. And it is … | |
Re: I tend to agree. I watch these people run these benchmarks, which sound all great, but numbers are numbers. Overclocking never seems to give me any noticeable boost in anything. In all honesty it does change the benchmarking numbers.... As a Pharmacist / Medical Professional we have a moto... "treat … | |
Re: If you are using a SELECT statement, which I would assume you are, just add an ORDER BY clause to that statement and voila. | |
Re: What do you mean...create a database? Do you have access? Do you have a set of tables already created? Are you meaning to connect to an access database? | |
Re: [quote=rajni11]Hi, :rolleyes: Can anyone send me or tell me the shortcut keys for .net framework(visualstuio.net). so that i can use it frequently Thanx.....:)[/quote] Two things: 1. Google is your Friend...I just typed your question into it and found the answer: 2. The answer: [URL="http://safari.oreilly.com/?XmlId=0-596-00360-9/mastvsnet-APP-C"]http://safari.oreilly.com/?XmlId=0-596-00360-9/mastvsnet-APP-C[/URL] Hope this helps... :cool: | |
Re: Well here is my point on this. Why not loop through the recordset (which is an abstraction of a table object, based on criteria you have specified) until p_id = txtPatientId.Text ? i.e. (pseudo-code) Do until .recordset.EOF if p_id = txtPatientid.Text then ' then do what you must end if … | |
Re: [b]tgreer[/b] has asked me to help you out, and I will, but not till tomorrow night. Migraine has hit. Night all | |
Re: It is coming that PHP will be accepted by .NET - or is it already? Anyway, it is making its own stand, and seems to be growing in popularity. In my experience! | |
Re: Well I recommend that you check out the following links at Microsoft. MSDN and Google are often overlooked too often as places to look for code/tutorials. I did a search on Video Tutorials and here is an excellent intro series to VB.NET: [URL]http://msdn.microsoft.com/vstudio/express/vb/learning/[/URL] It is with VBExpress, which is free, … | |
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 … |
The End.