200 Posted Topics

Member Avatar for FaridMasood

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 …

Member Avatar for FaridMasood
0
112
Member Avatar for Techbee

Hey- Make it easy on yourself and easier on your database. Store the imagepath instead.

Member Avatar for sebastian3
0
230
Member Avatar for anitha joe
Member Avatar for ericstenson
0
100
Member Avatar for tsqaure

Are you trying to interface with existing carriers or are you looking to reserve your own planes?

Member Avatar for tsqaure
0
79
Member Avatar for pranav_jog

Like, as in, Session.Add("WhatToSay","Hello") Label1.text = Session("WhatToSay") Something stupid like that?

Member Avatar for JackyGZ
0
125
Member Avatar for santhanalakshmi
Member Avatar for KillerOfDN

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 …

Member Avatar for ericstenson
0
97
Member Avatar for eparse

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

Member Avatar for selvaganapathy
0
95
Member Avatar for Catherinedally

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 …

Member Avatar for Catherinedally
0
209
Member Avatar for ToHa57

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

Member Avatar for ericstenson
0
280
Member Avatar for strictlyit

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 …

Member Avatar for ericstenson
0
96
Member Avatar for plusplus

Put it in a table, leave a column to the left, give the column some width.

Member Avatar for ericstenson
0
84
Member Avatar for evios

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?

Member Avatar for ericstenson
0
137
Member Avatar for ericstenson

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

Member Avatar for a496761
0
130
Member Avatar for ericstenson

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 …

Member Avatar for peter_budo
0
106
Member Avatar for DATABASE

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!

Member Avatar for ericstenson
0
96
Member Avatar for ptaylor965
Member Avatar for wednesday

Are you looking to use a receipt printer like they have at a store? If so, use Microsoft.POS class. Google Microsoft POS SDK.

Member Avatar for ericstenson
0
216
Member Avatar for ckehrer

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

Member Avatar for ckehrer
0
95
Member Avatar for geetajlo
Member Avatar for guest11

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

Member Avatar for ericstenson
0
105
Member Avatar for darcee
Member Avatar for ericstenson
0
83
Member Avatar for themailsian

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????

Member Avatar for ericstenson
0
289
Member Avatar for sheshaji

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]

Member Avatar for ericstenson
0
55
Member Avatar for menelaussa

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.

Member Avatar for ericstenson
0
64
Member Avatar for bhavna_816
Member Avatar for ericstenson
0
164
Member Avatar for Alaskaaa

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 …

Member Avatar for ericstenson
0
84
Member Avatar for mcgarry101
Member Avatar for cmdolcet69
Member Avatar for icarium

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.

Member Avatar for ericstenson
0
83
Member Avatar for Dell XPS
Member Avatar for nandhinijp

In your database, create a photoID column to identify to which photo the comment belongs.

Member Avatar for nandhinijp
0
66
Member Avatar for ericstenson

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

Member Avatar for majestic0110
0
118
Member Avatar for soniataneja

Please be more specific. Are you looking just to read the HTML of another website?

Member Avatar for soniataneja
0
86
Member Avatar for fujilec

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

Member Avatar for ericstenson
0
63
Member Avatar for brightline

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

Member Avatar for ericstenson
0
82
Member Avatar for evios

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.

Member Avatar for ericstenson
0
69
Member Avatar for migsyandoc

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 …

Member Avatar for ericstenson
0
88
Member Avatar for vishakha_ate

Use system.net.mail. There are lots of examples out there. If you are still having trouble, holler back and I will post.

Member Avatar for vishakha_ate
0
108
Member Avatar for Jihad

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 …

Member Avatar for majestic0110
0
87
Member Avatar for thymothey

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 …

Member Avatar for majestic0110
0
95
Member Avatar for quecoder
Member Avatar for dacoon

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 …

Member Avatar for ericstenson
0
97
Member Avatar for staysolid3

you need to do it like this: label1.text = val(textbox1.text) - val(textbox2.text)

Member Avatar for ericstenson
0
64
Member Avatar for charitha_sharma

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 …

Member Avatar for ericstenson
0
86
Member Avatar for mukund_avhad
Member Avatar for lbob
Member Avatar for ericstenson
0
103
Member Avatar for Jihad
Member Avatar for kaptham
Member Avatar for MaseYo

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.

Member Avatar for srikanthkadem
0
76

The End.