Showing results 1 to 40 of 287
Search took 0.02 seconds.
Posts Made By: ericstenson
Forum: IT Professionals' Lounge Jul 28th, 2008
Replies: 24
Views: 3,579
Posted By ericstenson
Re: Time Tracking software recommendation

www.14dayz.com seems pretty good. I used to use that when I worked for a web dev company in Boston. I think it was written for attorneys or something, but it scales REALLY nicely to software...
Forum: ASP.NET Jun 27th, 2008
Replies: 2
Views: 891
Posted By ericstenson
Re: HTML to PDF..

Itext (itextsharp) is free.
Forum: VB.NET Jun 14th, 2008
Replies: 5
Views: 1,322
Posted By ericstenson
Re: Booking system

Using your example above, the following reservation has been made:

A: 4/17/2009
D: 4/25/2009.

Now, a customer calls and says I want to book 04/16/09 to 04/27/09.

Let's go through my steps.

1. Do...
Forum: VB.NET Jun 14th, 2008
Replies: 5
Views: 1,322
Posted By ericstenson
Re: Booking system

In my example above BookDate means Arrival Date, sorry on the confusion
Forum: VB.NET Jun 12th, 2008
Replies: 5
Views: 1,322
Posted By ericstenson
Re: Booking system

What you need to do is the following:

1. Run a query to see if any bookings fall within your date range.
(Select * from Bookings where BookDate >= YourStartDate or BookDate <=YourEndDate

2. If...
Forum: ASP.NET Jun 12th, 2008
Replies: 3
Views: 438
Posted By ericstenson
Re: AJAX Execution

On quote from Microsoft: "All the server page life-cycle events occur, and view state and form data are preserved. However, in the rendering phase, only the contents of the UpdatePanel control are...
Forum: ASP.NET Jun 12th, 2008
Replies: 8
Views: 1,963
Posted By ericstenson
Re: The remote name could not be resolved: 'localhost'

Do you have an SMTP server on that machine? Could there be a firewall issue?
Forum: ASP.NET Jun 12th, 2008
Replies: 8
Views: 1,963
Posted By ericstenson
Forum: ASP.NET Jun 12th, 2008
Replies: 6
Views: 1,063
Posted By ericstenson
Re: Providing Popup reminders for events

No, the page is not always refreshing. The only time you get the page refreshing is when the pop-up appears.
Forum: VB.NET Jun 12th, 2008
Replies: 2
Views: 1,005
Posted By ericstenson
Re: String to Integer

Ah, it looks like you are running MySQL. This might be...
Forum: VB.NET Jun 12th, 2008
Replies: 2
Views: 1,005
Posted By ericstenson
Re: String to Integer

You might have to post this in the database forum, but why are you specifying INTEGER(50)? Shouldn't it just be a datatype INTEGER?

I mean, an Integer is a whole number. So "1" is just "1", not...
Forum: VB.NET Jun 12th, 2008
Replies: 3
Views: 408
Posted By ericstenson
Re: Error in line of code

Can you please post the class code?
Forum: ASP.NET Jun 12th, 2008
Replies: 3
Views: 871
Posted By ericstenson
Re: Web service Access from Remote machine

Are you using the development server or IIS?
Forum: VB.NET Jun 12th, 2008
Replies: 2
Views: 1,499
Posted By ericstenson
Re: Simple Inventory System

Try Quickbooks.
Forum: ASP.NET Jun 12th, 2008
Replies: 8
Views: 1,963
Posted By ericstenson
Re: The remote name could not be resolved: 'localhost'

sqlexpress is a named instance of an SQL server.

I would do it in code with the system.net.mail namespace...



Dim User_Password as String

'''''''' FIRST GET THE PASSWORD FROM THE DATABASE
Forum: ASP.NET Jun 12th, 2008
Replies: 5
Views: 1,255
Posted By ericstenson
Re: How to make this SQL SELECT statement work in ASP.NET

You are doing it all wrong. How much experience in this do you have?
Forum: VB.NET Jun 11th, 2008
Replies: 3
Views: 1,349
Posted By ericstenson
Re: Convert null from varchar to integer

or i think you can use .value.tostring
Forum: ASP.NET Jun 11th, 2008
Replies: 1
Views: 626
Posted By ericstenson
Re: Form Activate Event

What I would do is run a timer on the first form that checks a Session object like

If Session("SearchClosed") = 2 then

Timer1.enabled = False
DO WHATEVER YOU WANT BECAUSE IT IS BACK TO THE FIRST...
Forum: ASP.NET Jun 11th, 2008
Replies: 6
Views: 1,063
Posted By ericstenson
Re: Providing Popup reminders for events

It's doable. Here is how I would attack it....

1. Drop an ASP UpdatePanel somewhere on the page
2. Create a Session variable called "PopupEvent" (Session.Add("PopUpEvent", "1")
> Set this to...
Forum: ASP.NET Jun 11th, 2008
Replies: 3
Views: 871
Posted By ericstenson
Re: Web service Access from Remote machine

Too many possibilities. Firewall issue? Are you just trying to use the development server? Because the development server that runs when you test doesn't support remote connections. Did you configure...
Forum: ASP.NET Jun 11th, 2008
Replies: 5
Views: 1,255
Posted By ericstenson
Re: How to make this SQL SELECT statement work in ASP.NET

Dim conn1 as new data.sqlclient.sqlconnection(CONNECTIONSTRING)
Dim Select_String as String = WHAT YOU JUST WROTE
Dim Select_Adapter as new data.sqlclient.sqldataadapter(Select_String,conn1)
Dim...
Forum: ASP.NET Jun 11th, 2008
Replies: 2
Views: 646
Posted By ericstenson
Re: Pop-up window

Response.Write("<script>")

Response.Write("window.open('WHATEVERNEWPAGENAME.aspx','_blank','toolbar=0,location=0,menubar=0,resizable=0,width=400,height=320')")

...
Forum: Geeks' Lounge Jun 6th, 2008
Replies: 30
Views: 2,498
Posted By ericstenson
Re: Dating on Daniweb

What an insanely hypocritical post. You say this thread shouldn't be here, but you actually contribute to the thread! If you think it is "unrelated" to DW, then why would you read it, much less reply...
Forum: Geeks' Lounge Jun 5th, 2008
Replies: 30
Views: 2,498
Posted By ericstenson
Re: Dating on Daniweb

No, dating in the lounge. Not a whole new forum. More like a thread.
Forum: ASP.NET Jun 5th, 2008
Replies: 2
Views: 411
Posted By ericstenson
Re: how to Read a page in aspx page

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...
Forum: ASP.NET Jun 5th, 2008
Replies: 1
Views: 624
Posted By ericstenson
Re: The message could not be sent to the SMTP server. The transport error code was 0x800c

You need to check the firewall settings. Where is the mail server? Can you authenticate? Does it allow relaying?
Forum: Geeks' Lounge Jun 5th, 2008
Replies: 30
Views: 2,498
Posted By ericstenson
Re: Dating on Daniweb

Eventually I will sell you guys on it... :)
Forum: Geeks' Lounge Jun 5th, 2008
Replies: 30
Views: 2,498
Posted By ericstenson
Re: Dating on Daniweb

Come on, don't remove my thread. This is a good idea.
Forum: Geeks' Lounge Jun 5th, 2008
Replies: 30
Views: 2,498
Posted By ericstenson
Re: Dating on Daniweb

Starbucks is a coffee house, not a dating service, so if people meet at starbucks, should it just close down and people stop going there? Universities are for education, so if people meet in class...
Forum: ASP.NET Jun 5th, 2008
Replies: 6
Views: 551
Posted By ericstenson
Re: Please help me

I can only say one thing::::::: are you kidding me?
Forum: VB.NET Jun 5th, 2008
Replies: 3
Views: 325
Posted By ericstenson
Re: Newbie SQL question

Sure. You will need to create an SQL database and table with the product information. You will need to create a user account (most likely) within SQL to allow your program to access the...
Forum: Geeks' Lounge Jun 4th, 2008
Replies: 30
Views: 2,498
Posted By ericstenson
Re: Dating on Daniweb

? Who said anything about porno ?

I am talking social lounge... a place to meet.
Forum: Geeks' Lounge Jun 4th, 2008
Replies: 30
Views: 2,498
Posted By ericstenson
Re: Dating on Daniweb

In fact, under coffee house, I think we should have a "Singles Scene"
Forum: Geeks' Lounge Jun 4th, 2008
Replies: 30
Views: 2,498
Posted By ericstenson
Dating on Daniweb

Well, enough with match.com, jdate, eharmony (e-her-money), and the other so-called dating sites... who needs those with Daniweb.com? With over 200,000 active users, people *** should *** be able to...
Forum: VB.NET Jun 4th, 2008
Replies: 8
Views: 742
Posted By ericstenson
Re: tab control (easy question)

He is saying that you need to add the web browser control to the form...
Forum: VB.NET Jun 4th, 2008
Replies: 3
Views: 325
Posted By ericstenson
Re: Newbie SQL question

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...
Forum: VB.NET Jun 4th, 2008
Replies: 2
Views: 741
Posted By ericstenson
Re: dim x as timer

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 www.asp.net and download the AJAX...
Forum: VB.NET Jun 4th, 2008
Replies: 1
Views: 340
Posted By ericstenson
Re: web browser question

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...
Forum: ASP.NET Jun 4th, 2008
Replies: 1
Views: 377
Posted By ericstenson
Re: menu items

Put it in a table, leave a column to the left, give the column some width.
Forum: ASP.NET Jun 4th, 2008
Replies: 2
Views: 1,054
Posted By ericstenson
Re: session example in asp.net

Like, as in, Session.Add("WhatToSay","Hello")

Label1.text = Session("WhatToSay")

Something stupid like that?
Showing results 1 to 40 of 287

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 11:54 pm.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC