594 Posted Topics

Member Avatar for Embeza

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.

Member Avatar for hollystyles
0
83
Member Avatar for BillWebber

replace [INLINECODE]txt.Author.SetFocus[/INLINECODE] with [INLINECODE]txtAuthor.SetFocus[/INLINECODE] I imagine your textbox is called txtAuthor and not txt.Author

Member Avatar for BillWebber
0
187
Member Avatar for imran_mani

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]

Member Avatar for Lord Soth
0
234
Member Avatar for David Super

Yes an ODBC driver : [URL="http://www.aspnet101.com/aspnet101/tutorials.aspx?id=39"]http://www.aspnet101.com/aspnet101/tutorials.aspx?id=39[/URL]

Member Avatar for Bharati Krishna
0
291
Member Avatar for Vickyy

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 …

Member Avatar for Bharati Krishna
1
479
Member Avatar for unitechy
Member Avatar for Swapnil Palande

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]

Member Avatar for hollystyles
0
2K
Member Avatar for ~s.o.s~

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]

Member Avatar for ~s.o.s~
0
136
Member Avatar for dilip.mathews

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]

Member Avatar for WaltP
0
228
Member Avatar for goes12345

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 …

Member Avatar for hollystyles
0
93
Member Avatar for Tele-Guy

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 …

Member Avatar for hollystyles
0
174
Member Avatar for MrAdam

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 …

Member Avatar for hollystyles
0
142
Member Avatar for Ancient Dragon

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.

Member Avatar for Dave Sinkula
1
95
Member Avatar for lorraine1000

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 …

Member Avatar for lorraine1000
0
109
Member Avatar for sergiofmolina

[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.

Member Avatar for hollystyles
0
98
Member Avatar for pokahantos

[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 …

Member Avatar for hollystyles
0
140
Member Avatar for moe1983

I can help you, see that link called 'the basics' in my signature ? I recommend you read that.

Member Avatar for WolfPack
0
376
Member Avatar for Seba Sama

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 …

Member Avatar for Seba Sama
0
468
Member Avatar for bklurch

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.

Member Avatar for bklurch
0
418
Member Avatar for harish13

Found this on Googlel; [URL="http://www.freevbcode.com/ShowCode.asp?ID=2066"]http://www.freevbcode.com/ShowCode.asp?ID=2066[/URL] any good ?

Member Avatar for hollystyles
0
43
Member Avatar for Joe90

[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 …

Member Avatar for hollystyles
0
103
Member Avatar for ArtChess

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.

Member Avatar for hollystyles
0
75
Member Avatar for chepps

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]

Member Avatar for chepps
0
69
Member Avatar for kohkohkoh

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]

Member Avatar for kohkohkoh
0
131
Member Avatar for imran_mani

see here: [URL="http://www.daniweb.com/techtalkforums/thread51183.html"]http://www.daniweb.com/techtalkforums/thread51183.html[/URL]

Member Avatar for alc6379
0
80
Member Avatar for giles

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 …

Member Avatar for Covinus
0
363
Member Avatar for sam1

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 …

Member Avatar for hollystyles
0
34
Member Avatar for Griffon

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]

Member Avatar for goldeagle2005
0
152
Member Avatar for nizzy1115

I've browsed experts exchange for the last 2 years and I never even noticed !!! Doh !:p

Member Avatar for hollystyles
0
171
Member Avatar for donkey

[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]

Member Avatar for hollystyles
0
78
Member Avatar for ! !

[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 …

Member Avatar for hollystyles
0
311
Member Avatar for rohitrana2006

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.

Member Avatar for hollystyles
0
58
Member Avatar for Embeza

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.

Member Avatar for hollystyles
0
136
Member Avatar for adnan1888

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 …

Member Avatar for hollystyles
0
144
Member Avatar for AndrewSmith

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 …

Member Avatar for Puckdropper
0
89
Member Avatar for hollystyles

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

Member Avatar for Dani
0
126
Member Avatar for websyd

See here: [URL="http://www.daniweb.com/techtalkforums/thread51119.html"] http://www.daniweb.com/techtalkforums/thread51119.html[/URL]

Member Avatar for hollystyles
0
50
Member Avatar for websyd

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]

Member Avatar for hollystyles
0
230
Member Avatar for CJ_NOE

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]

Member Avatar for hollystyles
0
85
Member Avatar for kohkohkoh

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 …

Member Avatar for Lord Soth
0
124
Member Avatar for wowrang

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 …

Member Avatar for hollystyles
0
82
Member Avatar for yonne

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.

Member Avatar for vicec64
0
487
Member Avatar for ktum

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 …

Member Avatar for hollystyles
0
286
Member Avatar for INI

[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 …

Member Avatar for INI
0
178
Member Avatar for poonamkini

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.

Member Avatar for hollystyles
0
42
Member Avatar for sknagaraj

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 …

Member Avatar for hollystyles
0
75
Member Avatar for alvin_aldrich

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 …

Member Avatar for hollystyles
0
164
Member Avatar for umshere

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 …

Member Avatar for umshere
0
98
Member Avatar for christyjacob

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]

Member Avatar for christyjacob
0
163
Member Avatar for Timbo

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 …

Member Avatar for fry
0
129

The End.