537 Posted Topics
| |
Re: Hi there. Try adding this to your connection string as follows: [COLOR="Red"]FROM [/COLOR] [CODE] Dim con As New SqlConnection(System.Configuration. ConfigurationManager.AppSettings("Zeedb")) [/CODE] [COLOR="Green"]TO[/COLOR] [CODE] string con = (string) ConfigurationSettings.AppSettings["Zeedb"]; SqlConnection con= new SqlConnection(ConnectionString); [/CODE] I hope this helps, however I can make no promises as VB is not a language I … | |
Re: I do not know the exact answer to your query (never used gwbasic) but I believe the answer may lie here: [QUOTE][url]http://www.o-bizz.de/qbtuts/gw-train/index.htm#6.3[/url][/QUOTE] Try searching the document for "line", I found lots of hits. Hope this helps you. | |
Re: What is the exact problem, does your laptop not turn on or will it not boot ? | |
Re: Well I am the guy who thought that the lead balloon would take off. [I]edit[/I] Sorry about that ^ lol | |
As the title suggests! Not being nosey just wondered what you all might say! I shall submit mine once I have decided ... | |
Re: I have to say I prefer it on the left although I do agree it will take some getting used to. | |
Re: Yeah really bad title etc123. Offensive to a lot of people I should expect. | |
Re: So what you need to do is read an XML file, and grab its contents ? [QUOTE][url]http://www.developer.com/net/csharp/article.php/3489611[/url][/QUOTE] There you go, hope this helps ! | |
Re: Do you mean update the backend database when data in the grid is changed? | |
Re: Do you mean a tooltip, where text is displayed over a "hovered " button ? | |
Re: Yes, a lot of these free tools are unworthy as you'll end up with a scrambled data restore. | |
Re: can you post your code and Ill take a look... | |
Re: Hi there Mani and welcome to DaniWeb. I didn't know the answer to your question so I have spent some time googling for it. I believe that you may find what you require here : [QUOTE][url]http://www.vbdotnetheaven.com/UploadFile/crausch/Assemblies04112005042234AM/Assemblies.aspx[/url][/QUOTE] Look at [B]Creating a Shared Assembly[/B] (almost halfway down the page) I believe your … | |
Re: Hi there Traicey :) Give this a try: [CODE]string x = ""; int parsex = Int32.Parse(x); [/CODE] Or [CODE]string x = ""; int ConvertedIx = Convert.ToInt32(x);[/CODE] Hope this helps! | |
Re: Hi there BrightLine here are a few suggestions: [QUOTE][url]http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=139178&SiteID=1[/url][/QUOTE] Also, ensure there is no firewall blocking the connection(port 80 normally). Are you trying to send out mail? Also make sure you use "localhost" instead of your ACTUAL machine name. Hope this is of help. | |
Re: Hi there Samjonz, I have been doing some research for you and found this page you will be interested in : [QUOTE][url]http://blogs.msdn.com/danmor/archive/2006/11/15/refresh-that-ad-without-refreshing-the-page-with-asp-net-ajax-and-adrotator-control.aspx[/url][/QUOTE] The key part is : [CODE]<asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Timer ID="TimerControl1" runat="server" Interval="5000"></asp:Timer> <asp:AdRotator ID="AdRotator1" runat="server" AdvertisementFile="~/ads.xml" /> </ContentTemplate> </asp:UpdatePanel> [/CODE] Hope this helps you | |
Re: I have found a link which may be of some use to you SelArom: [QUOTE][url]http://www.w3schools.com/ASPNET/aspnet_repeater.asp[/url][/QUOTE] Some of the W3Schools tutorials are very good and this is an example of such! Good luck and hope this helps! | |
Re: Hi Mythi and welcome! I have found some links that may assist you: [QUOTE][url]http://www.ondotnet.com/pub/a/dotnet/2003/01/06/formsauthp1.html[/url][/QUOTE] [QUOTE][url]http://weblogs.asp.net/scottgu/archive/2005/10/18/427754.aspx[/url][/QUOTE] These links detail 2 approaches to creating your login page. Arguably the second link's tutorial is simpler and provides a quicker solution. Hope this helps and good luck! | |
Re: Good advice again there Jerry, I fully recommend "head first c#" it is a very well written book and packed with problem solving techniques and walkthroughs. You also get to build a simple graphical game with what you have learnt (the code is not in the book-you have to build … | |
Re: As of yet no (to be honest have not heard of it) what is it? I know what a micronation is and presume that micronation simulation is similar to sim city but on a micronation scale. Am I correct in thinking this? | |
Re: Hi there Toton, what you require is a tutorial on state management. Try googling this as there are thousands out there. To get you started I have found one which I believe suits your problem well : [QUOTE][url]http://www.dotnetheaven.com/UploadFile/mahesh/BrowserCookies05102005031415AM/BrowserCookies.aspx?ArticleID=735604d7-71c6-41ab-a32e-d7169c3cce78[/url][/QUOTE] Hope this helps :) | |
Re: I have been there, absolutely wonderful. An awful lot of touristy things to do - excellent! Plus the pubs/restaurants are cheap but of high quality. I would recommend 2 week stay if possible, if you like to visit tourist attractions and culture you will need two weeks! As grimjack stated … | |
Re: Hmm, that is interesting. Can you post more code for me to look at ? | |
Re: I fully recommend that you visit : [QUOTE][url]http://www.learnvisualstudio.net/[/url][/QUOTE] It has some excellent tutorials on VB and ASP.NET 2.0 and visual studio. If you get stuck don't hesitate to post a new thread, we will be happy to help. Hope this helps! | |
Re: Hi there, you can try this: [CODE=C#]MyListbox.Attributes["onclick"] = "window.open(...);"[/CODE] or... [CODE=C#]<asp: listbox ID="MyListBox" runat="server" OnClientClick="window.open(...);" />[/CODE] hope that helps you. Here is a very useful site: [URL="http://www.gridviewguy.com/ArticleDetails.aspx?articleID=36_Asp.net_Frequently_asked_Questions"]http://www.gridviewguy.com/ArticleDetails.aspx?articleID=36_Asp.net_Frequently_asked_Questions[/URL] | |
Re: I am not entirely sure if this will work as I am not experienced in VB at all (or combo boxes for that matter!): Try changing this line: [CODE]combobox2.items.add(value)[/CODE] To this: [CODE]comboBox1.Items.Add(new Item(value));[/CODE] This idea came as a result of some searches on google I made. Here is the original … | |
Hi all hope you are well. I am interested in a quick method (besides cut 'n' paste) of extracting my command history from a putty session (Linux version Red Hat Enterprise Linux ES release 3 (Taroon Update 9)) to a windows text file. Any ideas on that? Thanks for your … | |
Re: Hi there Yaninea, and welcome to DaniWeb. I believe a valuable member has already provided a great solution to this problem a month back. Check this out : [URL="http://www.daniweb.com/forums/thread118395.html"]http://www.daniweb.com/forums/thread118395.html[/URL] Hope this helps you out. | |
Re: Hi there, here is an approach: [URL="http://www.daniweb.com/forums/thread73422.html"]http://www.daniweb.com/forums/thread73422.html[/URL] With regards to incrementing the ID - what is the ID an Integer? if so you could use a counter and increment that once a node is added. | |
Re: Can you post the output you are getting so I can try to help you ? | |
Re: I see you have got that from W3schools hehe I am not sure why it is not working will investigate and get back to you when I can... | |
Re: Hi there and welcome to DaniWeb! I think you may find the answer here: [URL="http://www.msnewsgroups.net/group/microsoft.public.dotnet.languages.csharp/topic34774.aspx"]http://www.msnewsgroups.net/group/microsoft.public.dotnet.languages.csharp/topic34774.aspx[/URL] Hope this helps you out! | |
Re: AOL and Microsoft.....a match made in heaven..... | |
Re: Sandip I have replied to your thread: [URL="http://www.daniweb.com/forums/thread123179.html"]http://www.daniweb.com/forums/thread123179.html[/URL] In the C# forum. | |
Re: Here is one approach: [CODE=C#]public void btnDownload_Click(object source, EventArgs e) { Response.Redirect("url_to_the_file_you_want"); } [/CODE] Although this will OPEN a file. | |
Re: I would be glad to help you but can you say that in other words - didn't quite get it lol what do you mean you want to use login page? do you mean you want to navigate to the login page ? | |
Re: I am not 100% sure about this (I havent read the whole article) but I believe this may help: [URL="http://asp.dotnetheaven.com/aspnet/doc/profile/default.aspx"]http://asp.dotnetheaven.com/aspnet/doc/profile/default.aspx[/URL] Read the article and focus on 'Migrating Anonymous Profiles to Authenticated Profiles'. I think thats where your answer lies... | |
Re: Are you creating an ASP.NET mobile application? Here is a useful link if so: [URL="http://msdn.microsoft.com/en-us/library/aa650535(VS.71).aspx"]http://msdn.microsoft.com/en-us/library/aa650535(VS.71).aspx[/URL] Hope that helps you. | |
Re: Hi there check this link: [URL="http://www.w3schools.com/aspnet/aspnet_xml.asp"]http://www.w3schools.com/aspnet/aspnet_xml.asp[/URL] First you have to import the XML into a dataset, then bind the control to that dataset.HTH | |
Re: Hi there, I have found a very good tutorial on data access that may interest you: [QUOTE][url]http://www.asp.net/Learn/data-access/tutorial-52-vb.aspx[/url][/QUOTE] I hope this helps! | |
Re: I cannot make much sense out of that code. Someone enlighten us lol! | |
Re: I believe that if you want to create objects at runtime you need the reflection api, although I am not certain of this. With regards to JME I am unsure of whether it uses the GC but my guess would be yes. A VM knows when an object is dead … | |
Re: Judging that you are from a java background I might recommend that you use C# as your code behind to an ASP.NET 2.0 web site. This is beacuse C# and java have very similar syntax and you can apply object oriented principles you may know in Java to C#. Here … | |
Re: Hi there and welcome to DaniWeb! Heres a link that has a tutorial on building a chat application using AJAX. Hope this helps! [URL="http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=252"]http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=252[/URL] | |
Re: Hi I think this may help: [QUOTE][I]TreeView1[/I].SelectedNode.Selected = false;[/QUOTE] I found this here:[URL="http://www.netnewsgroups.net/group/microsoft.public.dotnet.framework.aspnet/topic25282.aspx"]http://www.netnewsgroups.net/group/microsoft.public.dotnet.framework.aspnet/topic25282.aspx[/URL] |
The End.