200 Posted Topics
Re: There are a few methods by which this can be down. You can control a web broswer control if you are using a windows based application. If it's a web app, it's a little more difficult, but you can create a http request and read the stream back. The examples … | |
Re: Hey- Make it easy on yourself and easier on your database. Store the imagepath instead. | |
Re: You need to check the firewall settings. Where is the mail server? Can you authenticate? Does it allow relaying? | |
Re: Are you trying to interface with existing carriers or are you looking to reserve your own planes? | |
Re: Like, as in, Session.Add("WhatToSay","Hello") Label1.text = Session("WhatToSay") Something stupid like that? | |
Re: If your application is already running and working for your client, I would be weary about making major changes to the application. What I would do if I were you is when the program launches, I would have it download a new text file from a predefined path on the … | |
Re: Are you just looking for the sum of the comulms? Because you can write a SUM(XXXX) query and just let SQL return you the results. You could also write a SELECT MPT FROM DDDD WHERE MPT > 29... | |
Re: Hi Catherine - I see you are relatively new at posting to daniweb, so I want to offer some advice. Because, while I appreciate there is a legitimate question you want answered, the way you presented your question needs some improvement. I think I can speak for most of the … | |
Re: The issue is because a normal ASP.NET page executes server side. Timers are run client side. You can use a timer on a webpage, but you need to use AJAX. Go to [url]www.asp.net[/url] and download the AJAX extension for VS 2005. You will then see the timer control. Best/Eric | |
Re: It's more complicated that you would think, but it isn't obscenely complicated. You can control the web browser by code. It will also require you to use a timer (at least I would be using a timer to look at the browser at specific intervals and to progress it through … | |
Re: Put it in a table, leave a column to the left, give the column some width. | |
Re: You could make each case it's own function [code] Case mac(0) RT_Mac_0 Case mac(1) RT_Mac_1 End Sub.. Public Sub RT_Mac_0 Do whatever you want End Sub Public Sub RT_Mac_1 Do whatever you want End Sub [/code] Make sense? | |
Hi this works in IE6, IE7, but not in FireFox... any ideas? [code] (On PageLoad) ImageMap1.Attributes.Add("onMouseOver", ImageMap1.ClientID & ".src='images/addpatient1.jpg'; window.status='Mouse Over'; return true;") ImageMap1.Attributes.Add("onMouseOut", ImageMap1.ClientID & ".src='images/addpatient.jpg'; window.status=' '; return true;") [/code] The rollover effect just doesn't happen in FF.... grrrrr..... | |
Hi- So after recently having some trouble getting some things on my VoIP box working, I was thinking that it was a real pain to find help online. Useful help, that is. And I am a master of the google search. So I was thinking.... why not create a VoIP … | |
Re: I think you need Ordered Time in Brackets like this [Ordered Time] If this solves the issue, please mark this thead as solved and give me some reputation points. Thanks! | |
Re: Microsoft has an SDK platform. Google SDK and Microsoft.POS | |
Re: Are you looking to use a receipt printer like they have at a store? If so, use Microsoft.POS class. Google Microsoft POS SDK. | |
Re: You need AutoPostBack = True on the dropdownlist property so the dropdownlist tells the server the value has changed. Create a function (or use this for both) [code] lblResult.text = Val(ddlProduct.text) * (1 + Val(ddlCompany.text)) that's the vb.net. i am not a c# programmer, but the converter says: lblResult.text == … | |
Re: [code] Dim item1 As New ListItem item1.Text = "Hello" item1.Value = "Hi" listbox1.Items.Insert(INDEX#, item1) [/code] If this answers your question, please mark as solved and give me some reputation points! Thanks. | |
Re: r u kidding me? anyway, recommend microsoft office outlook to your boss. | |
Re: In your connection string to the database add Pooling=False; I caution you, however, there is something "seriously concerning" if you are exceeding 100 connections to your db at the same time. make sure you are closing out your connections! do you have background threads using the db???? | |
Re: Search this forum, you will see lots of discussion on this. There are 3 ways to do it, but check this out: [url]http://64.233.167.104/search?q=cache:PWfVFdOFWKwJ:www.developershome.com/sms/howToSendSMSFromPC.asp+GSM+modem+and+send+sms&hl=en&ct=clnk&cd=1&gl=us[/url] | |
Re: You need to use a panel control... put the content inside of it. There is a property called ScrollBars. If this helps, mark it as solved and add it to my reputation. | |
Re: Yes, your problem is that you are over complicating the problem. | |
Re: First, let's make sure we understand the parameters: sqrt(aa + bb) <= 30 and a <=30 and b <=30 right? so start by setting b to 1 and running a from 1 to N exit the loop when the equation result is > 30 that will give you each of … | |
![]() | |
| |
Re: There is no easy answer to your question, but large websites of any scale are expensive. Smaller sites are inexpensive. Google asp.net hosting to get an idea of cost. | |
Re: There is a property called enabled, set it to false. | |
Re: In your database, create a photoID column to identify to which photo the comment belongs. | |
Hi - This is really annoying. For some reason, the Find & Replace window no longer displays in VS2005. It seems to be locked in the toolbar. Any ideas on how to get the window back?! Thanks, Eric | |
Re: Please be more specific. Are you looking just to read the HTML of another website? | |
Re: You need to set the AutoPostBack property for RadioButton1 to TRUE. Double click on it (VB will set you up with the sub that handles a change), write the code [code] RadioButton1.enabled = False [/code] You will probably on pageload want to do a maintainscrollpositiononpostback = true | |
Re: [code] Protected Sub GridView1_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs) Handles GridView1.RowCommand If GridView1.Rows.Count - 1 > 0 Then If e.CommandName = "PDetails" Then Dim RecordID As String = GridView1.DataKeys(Convert.ToString(e.CommandArgument)).Item(0).ToString Session.Add("RecordID",RecordID) Response.Write("<script>") Response.Write("window.open(YOURPOPUPPAGE.aspx','_blank','toolbar=0,location=0,menubar=0,resizable=0,width=400,height=320')") Response.Write("</script>") end if end if end sub [/code] | |
Re: Google ASP.NET and Graph and component. There is some good stuff on the market that will let you do what you want. In terms of built-in functionality, not much. | |
Re: Your update comand, in a simple form is Update tblUser set Lastname = ABCDEFG How do you expect SQL to know what Lastname you want to update? You need to qualify it Update tblUser set Lastname = ABCDEFG WHERE USERID = 1234 that will only update the single record. Also … | |
Re: Use system.net.mail. There are lots of examples out there. If you are still having trouble, holler back and I will post. | |
Re: Password length probably hasn't changed, I think SQL just standardizes how it displays the ******* so people can't tell how long it realy is. Password (and correct me if I am wrong), I do not think is kept by SQL as plain text. With respect to the log-in, check the … | |
Re: Hi- I see this is your first post. When posting on DaniWeb, it is important to first search and see if your question has been answered. With a basic question like this, chances are much has been written about it. Spend a couple of minutes and conduct a search, I … | |
Re: Ask Al Gore, he invented it. | |
Re: Hi- This is supported, your user just needs to know how to use the control! Ok, obviously with a non-postback, you can just click down. With a auto post back, of course, if you click down it firest the control and reloads every time you go down one. So to … | |
Re: you need to do it like this: label1.text = val(textbox1.text) - val(textbox2.text) | |
Re: hi- are you saying like if something happens on 1 computer that causes button1 to go from green to red on the other 4 computers you want the button to go from green to red? i would suggest creating a record in the database that has the button color for … | |
Re: i would agree with the above, give them a commandname and handle that on pb. | |
Re: just create a db login. | |
Re: User server.transfer("~/webform2.apsx") | |
Re: Hi- If you wanted to do client side validation, you will need to do AJAX/Javascript. If you want to validate server-side isnumeric(textbox1.text). Go to asp.net for help doing client side validation with ajax. I think Microsoft has some tools for it. |
The End.