|
 |
asp_components thread: dll extensions
Message #1 by "Kelly Cote" <kelly_cote@h...> on Wed, 13 Sep 2000 08:31:37 EDT
|
|
Hi,
Im just starting out with ASP. Im developing a calendar for my company.
Can anyone tell me what a .dll extension is. Does it have to do with the
database and returning information.
Any help would be appreciated.
Thanks,
Kelly
Message #2 by Christian Cruz <chris_cruz1@y...> on Wed, 13 Sep 2000 06:04:02 -0700 (PDT)
|
|
Kelly,
Dll stands for dynamc link library. So, they are
libraries or collections of subroutines and/or
functions that can be called from anyplace in which
they are referenced.
Generally we create components with VB and make calls
to them from our asp pages.
Changing the subject, my question may be a little out
of topic, but here it goes:
Have you seen in Yahoo mail or Hotmail when you are
composing a mail message and want to insert an address
from your address book, how they open a new window
with your address book, you select an address and
close the window and that address is received on your
current page?
I would like to do this same thing, I am already
opening a new window with a special list, but I don't
know how to capture the data back on my original page.
Anyone know how to do this?
thanks
Chris C.
--- Kelly Cote <kelly_cote@h...> wrote:
> Hi,
>
> Im just starting out with ASP. Im developing a
> calendar for my company.
> Can anyone tell me what a .dll extension is. Does
> it have to do with the
> database and returning information.
>
> Any help would be appreciated.
>
> Thanks,
> Kelly
>
> chris_cruz1@y...
$subst('Email.Unsub')
__________________________________________________
Do You Yahoo!?
Yahoo! Mail - Free email you can access from anywhere!
http://mail.yahoo.com/
Message #3 by "Carvalho, Marcelo (M.A.)" <mcarval2@f...> on Wed, 13 Sep 2000 09:06:48 -0400
|
|
Hi, there is a calendar object that you can instance for your use, the
follow lines show the syntax:
PS:Excuse-me for my English
<%@ Language=VBScript %>
<% Option Explicit %>
<HTML>
<HEAD>
<SCRIPT ID=clientEventHandlersVBS LANGUAGE=vbscript>
<!--
Sub window_onload
document.thisForm.calendario.Value =date()
End Sub
-->
</SCRIPT>
</HEAD>
'this 2 line is very important for the functionally object
<% ' VI 6.0 Scripting Object Model Enabled %>
<!--#include file="../_ScriptLibrary/pm.asp"-->
<BODY>
<meta name="VI60_DefaultClientScript" Content="VBScript">
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<LINK href="../_Themes/clearday/THEME.CSS" rel=stylesheet type=text/css
VI6.0THEME="Clear Day">
<LINK href="../_Themes/clearday/GRAPH0.CSS" rel=stylesheet type=text/css
VI6.0THEME="Clear Day">
<LINK href="../_Themes/clearday/COLOR0.CSS" rel=stylesheet type=text/css
VI6.0THEME="Clear Day">
<LINK href="../_Themes/clearday/CUSTOM.CSS" rel=stylesheet type=text/css
VI6.0THEME="Clear Day">
<SCRIPT LANGUAGE=vbSCRIPT>
function calendario_AfterUpdate()
parent.frame2.location.href="dias uteis2.asp?dia=" &
thisForm.calendario.Day & "&mes=" & thisForm.calendario.Month& "&ano=" &
thisForm.calendario.Year
end function
</script>
<FORM name=thisForm METHOD=post>
<div STYLE="HEIGHT: 27px; LEFT: 134px; POSITION: absolute; TOP: 12px; WIDTH:
391px">
<p align="center"><font color="mediumblue" size="5"><strong><u>
Cadastro de dias Uteis </u></strong></font></p>
</div>
<div STYLE="HEIGHT: 16px; LEFT: 20px; POSITION: absolute; TOP: 44px; WIDTH:
688px">
<hr style="BACKGROUND-COLOR: steelblue; HEIGHT: 5px; WIDTH: 715px">
</div>
<DIV STYLE="HEIGHT: 30px; LEFT: 180px; POSITION: absolute; TOP: 66px; WIDTH:
30px">
'You will need make a reference for the OCX calendar
<OBJECT classid="clsid:8E27C92B-1264-101C-8A2F-040224009C02" id=calendario
style="HEIGHT: 192px; LEFT: -48px; TOP: 0px; WIDTH: 336px" VIEWASTEXT>
<PARAM NAME="_Version" VALUE="524288">
<PARAM NAME="_ExtentX" VALUE="8890">
<PARAM NAME="_ExtentY" VALUE="5080">
<PARAM NAME="_StockProps" VALUE="1">
<PARAM NAME="BackColor" VALUE="-2147483637">
<PARAM NAME="Year" VALUE="2000">
<PARAM NAME="Month" VALUE="8">
<PARAM NAME="Day" VALUE="14">
<PARAM NAME="DayLength" VALUE="1">
<PARAM NAME="MonthLength" VALUE="2">
<PARAM NAME="DayFontColor" VALUE="255">
<PARAM NAME="FirstDay" VALUE="1">
<PARAM NAME="GridCellEffect" VALUE="1">
<PARAM NAME="GridFontColor" VALUE="12582912">
<PARAM NAME="GridLinesColor" VALUE="255">
<PARAM NAME="ShowDateSelectors" VALUE="-1">
<PARAM NAME="ShowDays" VALUE="-1">
<PARAM NAME="ShowHorizontalGrid" VALUE="-1">
<PARAM NAME="ShowTitle" VALUE="-1">
<PARAM NAME="ShowVerticalGrid" VALUE="-1">
<PARAM NAME="TitleFontColor" VALUE="10485760">
<PARAM NAME="ValueIsNull" VALUE="0"></OBJECT>
</DIV>
</BODY>
</FORM>
<% ' VI 6.0 Scripting Object Model Enabled %>
<% EndPageProcessing() %>
</HTML>
-----Original Message-----
From: Kelly Cote [mailto:kelly_cote@h...]
Sent: Quarta-feira, 13 de Setembro de 2000 17:58
To: ASP components
Subject: [asp_components] dll extensions
Hi,
Im just starting out with ASP. Im developing a calendar for my company.
Can anyone tell me what a .dll extension is. Does it have to do with the
database and returning information.
Any help would be appreciated.
Thanks,
Kelly
Message #4 by "Daniel Walker" <danielw@w...> on Wed, 13 Sep 2000 14:32:25 +0100
|
|
Developmentor have a good tutorial on COM (Component Object Model)
programming here:
http://www.develop.com/dm/dev_resources.asp
It will require some knowledge of object-oriented programming, but I
commend it to the house ;-)
> Kelly,
>
> Dll stands for dynamc link library. So, they are
> libraries or collections of subroutines and/or
> functions that can be called from anyplace in which
> they are referenced.
> Generally we create components with VB and make calls
> to them from our asp pages.
>
> Changing the subject, my question may be a little out
> of topic, but here it goes:
>
> Have you seen in Yahoo mail or Hotmail when you are
> composing a mail message and want to insert an address
> from your address book, how they open a new window
> with your address book, you select an address and
> close the window and that address is received on your
> current page?
> I would like to do this same thing, I am already
> opening a new window with a special list, but I don't
> know how to capture the data back on my original page.
> Anyone know how to do this?
>
> thanks
>
> Chris C.
>
> --- Kelly Cote <kelly_cote@h...> wrote:
> > Hi,
> >
> > Im just starting out with ASP. Im developing a
> > calendar for my company.
> > Can anyone tell me what a .dll extension is. Does
> > it have to do with the
> > database and returning information.
> >
> > Any help would be appreciated.
> >
> > Thanks,
> > Kelly
> >
Message #5 by "William Milne" <wmilne01@e...> on Wed, 13 Sep 2000 19:16:27 +0100
|
|
Chris
To answer your question, you could use the document object model 'opener'
property with some javascript e.g. at the end of your pop-up window have
<SCRIPT LANGUAGE=javascript>
/* Now paint the text on the main form and close this window */
opener.document.all.MainFormControl.innerText
document.all.listControl.value;
self.close();
</SCRIPT>
MainFormControl and listControl are element id's
Hope this helps
William Milne
> Kelly,
>
> Dll stands for dynamc link library. So, they are
> libraries or collections of subroutines and/or
> functions that can be called from anyplace in which
> they are referenced.
> Generally we create components with VB and make calls
> to them from our asp pages.
>
> Changing the subject, my question may be a little out
> of topic, but here it goes:
>
> Have you seen in Yahoo mail or Hotmail when you are
> composing a mail message and want to insert an address
> from your address book, how they open a new window
> with your address book, you select an address and
> close the window and that address is received on your
> current page?
> I would like to do this same thing, I am already
> opening a new window with a special list, but I don't
> know how to capture the data back on my original page.
> Anyone know how to do this?
>
> thanks
>
> Chris C.
>
> --- Kelly Cote <kelly_cote@h...> wrote:
> > Hi,
> >
> > Im just starting out with ASP. Im developing a
> > calendar for my company.
> > Can anyone tell me what a .dll extension is. Does
> > it have to do with the
> > database and returning information.
> >
> > Any help would be appreciated.
> >
> > Thanks,
> > Kelly
> >
Message #6 by "Michael Angelo Libio" <malibio@h...> on Wed, 13 Sep 2000 11:36:09 -0700
|
|
Christian,
From the parent browser (the actual mail message form), you're gonna
have some kind of JavaScript code that opens a new window (pop-up). Within
that code, you should have a line that reads:
....
self.name = "some_name";
window.open(.....);
....
From the pop-up window you can refer to that window...maybe even go into
it's form, etc....I don't have the exact syntax, but you're gonna have to do
the research on the rest.
----- Original Message -----
From: "Christian Cruz" <chris_cruz1@y...>
To: "ASP components" <asp_components@p...>
Sent: Wednesday, September 13, 2000 6:04 AM
Subject: [asp_components] Re: dll extensions
>
> Kelly,
>
> Dll stands for dynamc link library. So, they are
> libraries or collections of subroutines and/or
> functions that can be called from anyplace in which
> they are referenced.
> Generally we create components with VB and make calls
> to them from our asp pages.
>
> Changing the subject, my question may be a little out
> of topic, but here it goes:
>
> Have you seen in Yahoo mail or Hotmail when you are
> composing a mail message and want to insert an address
> from your address book, how they open a new window
> with your address book, you select an address and
> close the window and that address is received on your
> current page?
> I would like to do this same thing, I am already
> opening a new window with a special list, but I don't
> know how to capture the data back on my original page.
> Anyone know how to do this?
>
> thanks
>
> Chris C.
>
> --- Kelly Cote <kelly_cote@h...> wrote:
> > Hi,
> >
> > Im just starting out with ASP. Im developing a
> > calendar for my company.
> > Can anyone tell me what a .dll extension is. Does
> > it have to do with the
> > database and returning information.
> >
> > Any help would be appreciated.
> >
> > Thanks,
> > Kelly
> >
Message #7 by "raman deep" <deep_raman@h...> on Thu, 14 Sep 2000 04:36:28 GMT
|
|
Dear Kelly,
dll means dynamic link library. It can b written in any
programming language...like VB, VC etc.
U can call dll in ur asp application using SErver.CreateObject.
The dll would do what u write in its code. Like it can b used to
calculate sum of the two numbers or it can fetch data from the databases,
it'll depend on the code.
Any further queries are more than welcome,
Take Care
Raman
deep_raman@h...
>From: "Kelly Cote" <kelly_cote@h...>
>Reply-To: "ASP components" <asp_components@p...>
>To: "ASP components" <asp_components@p...>
>Subject: [asp_components] dll extensions
>Date: Wed, 13 Sep 2000 13:58:09 -0700
>
>Hi,
>
>Im just starting out with ASP. Im developing a calendar for my company.
>Can anyone tell me what a .dll extension is. Does it have to do with the
>database and returning information.
>
>Any help would be appreciated.
>
>Thanks,
>Kelly
>
|
|
 |