594 Posted Topics
Re: ADO is Active Data Objects a .NET class library that encompasses OleDB/ODBC and SqlClient you use the one depending on what DB your client has or you decide to implement. | |
Re: replace [INLINECODE]txt.Author.SetFocus[/INLINECODE] with [INLINECODE]txtAuthor.SetFocus[/INLINECODE] I imagine your textbox is called txtAuthor and not txt.Author | |
Re: You check for installed items in windows using the registry. You need to look into the .net Microsoft.W32 namespace for the classes to do this with. [URL="http://www.informit.com/guides/content.asp?g=dotnet&seqNum=258&rl=1"]http://www.informit.com/guides/content.asp?g=dotnet&seqNum=258&rl=1[/URL] | |
Re: Yes an ODBC driver : [URL="http://www.aspnet101.com/aspnet101/tutorials.aspx?id=39"]http://www.aspnet101.com/aspnet101/tutorials.aspx?id=39[/URL] | |
Re: A class generator. INPUT connection string and table name. OUTPUT a .vb class file with members, insert/update/delete methods for the given table so if you had in the db address line1 varchar(32) line2 varchar(32) your generator would produce: [CODE] class address private line1 as string private line2 as string public … | |
Re: Please search forums before you post, 99.9% of questions have been answered before. [URL="http://www.daniweb.com/techtalkforums/showthread.php?t=49872&highlight=set+focus"]http://www.daniweb.com/techtalkforums/showthread.php?t=49872&highlight=set+focus[/URL] | |
Re: Build Your Own ASP.NET Website Using C# & VB.NET By Zak Ruvalcaba Publisher: SitePoint Pub Date: April 2004 Print ISBN-10: 0-9579218-6-1 Print ISBN-13: 978-0-9579218-6-3 I recommend safari.informit.com 1000's of books and a 5 slot shelf for $5.99 a month. Sites I like are: [URL="http://aspnet.4guysfromrolla.com/"] http://aspnet.4guysfromrolla.com/[/URL] [URL="http://www.codeproject.com/index.asp?cat=4"]http://www.codeproject.com/index.asp?cat=4[/URL] Forum: [URL="http://www.developerfusion.co.uk/"]http://www.developerfusion.co.uk/[/URL] | |
Re: You havn't done anything with your definitions, try this: [CODE]#include <stdio.h> #define a_b int main(void) { #ifdef a_b int a = 20, b = 30; #endif #ifdef b_a int b = 20, a = 30; #endif printf("%d %d", a, b); }[/CODE] | |
Re: Clean your CD ROM Check ribbon cables properly seated betwixed CD and MOBO Oh hang on, can't boot ? or install ? Install: see above. Boot : reboot with a start up floppy to safe mode and then find the config.sys file in the root of C: open it with … | |
Re: Error 80020009 could be any of these can you be more specific please. [URL="http://www.aspfaq.com/show.asp?id=2421"]http://www.aspfaq.com/show.asp?id=2421[/URL] Also please use [ CODE] my code [ /CODE] tags around your code in posts so we can read it more easily. [CODE] DATA_SOURCE = "DBQ=" & Server.MapPath("../63-tele-data/Tele_DB.mdb") & ";DRIVER={Microsoft Access Driver (*.mdb)};" [/CODE] 1. your … | |
Re: You gotta get the degree or some well known diploma or other qualification that's a definite, cos you need to get to the interview room at a minimum. Agencies are a good source of knowledge about the industry but choose carefully, they should know what the employers are after so … | |
Re: See this thread. [URL="http://www.daniweb.com/techtalkforums/showthread.php?t=46155&highlight=rep+power"]http://www.daniweb.com/techtalkforums/showthread.php?t=46155&highlight=rep+power[/URL] And this one: [URL="http://www.daniweb.com/techtalkforums/showthread.php?t=36065&highlight=rep+power"] http://www.daniweb.com/techtalkforums/showthread.php?t=36065&highlight=rep+power[/URL] It works, but unless someone with plenty of there own rep power clicks the link you don;t get squat points. | |
Re: Try the UNION keyword, if the columns are all the same (inclusing datatype) it should work. [CODE]SELECT COUNT(*), sID1, sID2, sID3 FROM ITEM_T WHERE (sItemID = 760) OR (sItemID = 761) OR (sItemID = 762) GROUP BY sID1, sID2, sID3 HAVING COUNT(*)>1; UNION SELECT COUNT(*), sID1, sID2, sID3 FROM BANKITEM_T … | |
Re: [CODE] string script = "<script type=\"text\\javascript\">function(){alert('some data');};</script>"; Page.RegisterClientScriptBlock("myscript", script); [/CODE] That's an easy way. There are many others like AJAX google for that. | |
Re: [QUOTE]do you any suggestion tutorial site for visual studio 2003? Thanks in advance..[/QUOTE] VS 2003 is a travesty, it re-formats your HTML in a very annoying manner and the options to turn it off are a placebo. If you are starting out on .NET there is no need what-so-ever to … | |
Re: I can help you, see that link called 'the basics' in my signature ? I recommend you read that. | |
Re: Use INFORMATION_SCHEMA. Example: [CODE]SELECT TABLE_SCHEMA,TABLE_NAME, OBJECTPROPERTY(object_id(TABLE_NAME), N'IsUserTable') AS type FROM INFORMATION_SCHEMA.TABLES[/CODE] There are many others, search the index in Books On-lline (the manual you get with SQl Server) for all the others or search the SQLTeam.com forums where there are many posts and articles on getting metadata from MS SQL … | |
Re: Hmm a tricky one, how are you testing it in Enterprise Manager? I have only ever used Query Analyser. How are you connecting to the db from ASP ODBC, OLE DB or SQLSERVER? Maybe trying a different provider might sort it. | |
Re: Found this on Googlel; [URL="http://www.freevbcode.com/ShowCode.asp?ID=2066"]http://www.freevbcode.com/ShowCode.asp?ID=2066[/URL] any good ? | |
Re: [QUOTE]Tried to install it, it won't run[/QUOTE] What specifically is the error ? we can't help without specifics, note it down word for word and post it here. [QUOTE]so went to control panel (waited 6 mins) uninstalled it, rebooted[/QUOTE] You can't uninstall Windows from the control panel, you need to … | |
Re: It could be a lot of things, have you used netdiag to troubleshoot the problem? You need to install it from the support tools directory of your windows CD. When PC's can't find the DC it is usually name resolution that's the problem, check your DNS is all correct. | |
Re: Asp.Net AutoGenerateColumns attribute in datagrids is on by default, set the attribute to false in the aspx page. [INLINECODE]<asp:DataGrid AutoGenerateColumns="False" ...[/INLINECODE] | |
![]() | Re: You havn't told ADO where the server is, localhost/FQDN or IP address. try this: [CODE]Connection.Open "Data Source=localhost;Initial Catalog=Db_Testing;UID=;PWD=;"[/CODE] This is a great reference for connection strings: [URL="www.connectionstrings.com"]www.connectionstrings.com[/URL] ![]() |
Re: see here: [URL="http://www.daniweb.com/techtalkforums/thread51183.html"]http://www.daniweb.com/techtalkforums/thread51183.html[/URL] | |
Re: It doesn't matter what language, do as many as you can. Get a good "in 10 minutes" or "for beginners" book and get going. That's for starters just have fun. The different languages are for us (dumb ass humans) the computer don't care, all it knows about is the presence … | |
Re: You need DNS/WINS or some way for the PC's on the LAN to translate [url]www.name.com[/url] into a local IP address. The simplest way is on each PC to add www.name.com<tab>192.168.1.1 to the HOSTS file, I know this is in windows\system32\drivers\etc on Windows I'm not sure for Linux it could be … | |
Re: You should read my blog the answer was there all the time: [URL="http://www.daniweb.com/blogs/entry644.html"]http://www.daniweb.com/blogs/entry644.html[/URL] | |
Re: I've browsed experts exchange for the last 2 years and I never even noticed !!! Doh !:p | |
Re: [HTML]<script type="text/javascript"> function header_title_id_OnChange() { document.forms[0]["form_special_action"].value = "MODIFY_FEED_SELECTED"; this.forms[0].submit(); } </script> <SELECT onChange=\"header_title_id_OnChange();\" ID=\"header_title_id\" NAME=\"form_header_title_id\"> <OPTION VALUE = \"\"></OPTION>"; /*****options filled with info from db******/ </SELECT>[/HTML] | |
Re: [QUOTE]I think there are just way too many barriers for it to happen[/QUOTE] Already you can access the internet from your phone soon a wristwatch finally an implant , netbsd os has been installed on a [URL="http://www.embeddedarm.com/news/netbsd_toaster.htm"]toaster[/URL], anything can connect. The internet is always up, your local connection may be … | |
Re: This is the community introduction forum. Welcom to DaniWeb. I recommend you read 'the basics' link in my signature below. Then post your question in the most relevant forum and you should get some help. | |
Re: That's exactly what Outlook does, describe some of the features I'm sure you'll pass, don't forget to mention me in the bibliography. | |
Re: I think it might be that you can't have a DataGrid1 object variable AND a DataGrid1 property method. [CODE] Protected Overridable Property DataGrid1() As DataGrid Get Return Me._DataGrid1 End Get [/CODE] That smells to me, surely this should be something like GetDataGrid() Please use code tags, it's very hard to … | |
Re: Sigh no matter how we try to abstract it way HTTP is a stateless protocol. Why o why do we humans beat ourselves up trying to replace the desktop with the internet ? The only way I can think of would be to use AJAX for everysingle hyperlink to request … | |
Is it me or has Instant Email notification stopped for posts in subscribed threads ? I've checked my options and I'm set to automatically subscribe and receive instant emails. I have breifly checked that daniweb is not in my spam filters | |
Re: See here: [URL="http://www.daniweb.com/techtalkforums/thread51119.html"] http://www.daniweb.com/techtalkforums/thread51119.html[/URL] | |
Re: Please search the forum first before posting you will see 99.9% of requests have been asked and answered before: [URL="http://www.daniweb.com/techtalkforums/showthread.php?t=49884&highlight=dynamic+controls"]http://www.daniweb.com/techtalkforums/showthread.php?t=49884&highlight=dynamic+controls[/URL] Particularly post 6 in the above thread link by tgreer, which offers an article on this very (not so simple) subject. [URL="http://www.tgreer.com/aspnet_html_04.html"] http://www.tgreer.com/aspnet_html_04.html[/URL] | |
Re: Prime numbers comes up quite a lot, have you searched the forum ? [URL="http://www.daniweb.com/techtalkforums/showthread.php?t=43892&page=2&highlight=prime+number"]http://www.daniweb.com/techtalkforums/showthread.php?t=43892&page=2&highlight=prime+number[/URL] | |
![]() | Re: You cannot add .NET dlls into COM+, the .NET framework is a REPLACEMENT for COM. You put your .NET dll's in the GAC (Global Assembly Cache) using GacUtil.exe I'm vague on the details cos I've never had need to do it, because you don;t HAVE to put your .NET dll's … |
Re: We use this: [URL="http://www.telerik.com/asp-net-controls/drag-drop-ajax-treeview/overview.aspx"]http://www.telerik.com/asp-net-controls/drag-drop-ajax-treeview/overview.aspx[/URL] It does all you need. Submit ? what's that got to do with a tree control ? the web form is responsible for submission, I would not advise postback events for each check/uncheck in a tree view, better to iterate the checked collection once you are … | |
Re: Don't you just love it when the glass half full guy meets the glass half empty guy! I love threads like this :) Vicec64 the way you can reel off all those models and specs is impressive if not a little sad, but I liked it. | |
Re: A datagrid id rendered to the client as an HTML table <table><tr><td>... blah de blah So thats what javascript is seeing, javascript will never know diddley squat about what the hell a datagrid is Also you are using the ItemCreated event this happens before the ItemDataBound event so at that … | |
Re: [QUOTE]On my computer and one of my friends computer, it works perfectly; though there are some desktops machines that I receive that error.[/QUOTE] [QUOTE] when I log into the system, my program runs fine; when I sign in as my brother and run the same program, I get the div … | |
Re: Search for 'ADO.NET tutorials' in your favourit search engine, find links like this and work through them. [URL="http://www.csharp-station.com/Tutorials/AdoDotNet/Lesson01.aspx"]http://www.csharp-station.com/Tutorials/AdoDotNet/Lesson01.aspx[/URL] Once you have written some code, if you get stuck THEN post here and we will try to help. | |
Re: There are books written on this subject alone, it is very difficult to give an answer in single post in a volunteer forum. There are people @ £750 per day to do this work, so you won't get it free here. Also without intimate knowledge of your application and database … | |
Re: Take the first item in the array 0x08 we know from the 0x it's a hexidecimal number (base 8) 0x is how you identify a hexidecimal number the 08 represents the number in decimal thats 8 in binary it's 00001000 (I won't go into how to convert between binary and … | |
Re: You can use windows find to search for text in files in a directory. If you want to do it from ASP page and skip HTML tags that's difficut you will need to learn all about regular expressions first for searching text. If you downoad and install cygwin you can … | |
Re: i posted in your other thread [URL="http://www.daniweb.com/techtalkforums/showthread.php?t=50819&highlight=connect+to+self"]http://www.daniweb.com/techtalkforums/showthread.php?t=50819&highlight=connect+to+self[/URL] | |
Re: Check your BIOS, I had a similar experience only to find my HDD was set to read only in the BIOS. Mind you that's all you're trying to do. You didn't encrypt the drive at any time in the past did you with EFS or whatever it is? I take … |
The End.