473,748 Members | 2,891 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

flash graph not showing

2 New Member
i've put this page together using asp, html, javascript amd flash.

java passes a number of variables over to the flash file but the flash graph does not appear. The error which appears is SWFObject in undefined. The script tag contained <script type="text/javascript"> but after taking the "text/" out the, the pages shows not error but also not graph!!!!

at the end of my tether. PLEASE HELP!!!

code is list below

<%@LANGUAGE="VB SCRIPT" CODEPAGE="1252" %>
<%Option Explicit%>
<%Response.Buff er = false%>
<!--#include file="../../app_config/cc_config.asp"-->
<!--#include file="../../app_config/version.asp"-->
<!--#include file="../../app_config/db_config.asp" -->
<!--#include file="../../resources/includes/inc_client_bran d.asp" -->
<!--#include file="../../resources/includes/functions_sql.a sp" -->
<!--#include file="../../resources/includes/functions_datet ime.asp" -->


<%' ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~ SET PAGE NAV AND PERMISSIONS ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
' Restrict Access to page
Dim iAccessID
iAccessID = 4 ' Equal to the AA_SECURITYID for this page
%>
<!--#include file="../includes/inc_restrictacc ess.asp"-->
<%' ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~ %>

<%
' declare variables
Dim rsData, rsResults, rsLevel, ft_ID, clientID

Dim frmCompleted, completedByDisp lay
Dim frmPriority, priorityDisplay , chart, javaChart, profile, pro, profileSQL
Dim f_day, f_month, f_year, fromDate, fromDateFormatt ed
Dim t_day, t_month, t_year, toDate, toDateFormatted
Dim rsSelectedList, reportSelectLis t, rsProfile
Dim reportSQL, reportJoinSQL, reportOrderSQL
Dim formError
Dim urlQueryVars
Dim option1, option2, option3, option4, option5, option6, option7, option8, option9, option10
Dim n

Dim iRow, rowColor ' alternating row colours
iRow = 1
n = 1


' get search variables
if not isnowt (request.form(" clientID")) then
clientID = request.form("c lientID")
else
clientID = request.queryst ring("clid")
end if

if not isnowt (request.form(" frmFramework")) then
ft_id = request.form("f rmFramework")
else
ft_id = request.queryst ring("cfid")
end if

if not isnowt (request.form(" frmCompleted")) then
frmCompleted = request.form("f rmCompleted")
else
frmCompleted = request.queryst ring("compl")
end if

if not isnowt (request.form(" frmPriority")) then
frmPriority = request.form("f rmPriority")
else
frmPriority = request.queryst ring("priority" )
end if

if not isnowt (request.form(" frmChart")) then
chart = request.form("f rmChart")
else
chart = request.queryst ring("chart")
end if


if not isnowt (request.form(" frmJobProfile") ) then
profile = request.form("f rmJobProfile")
else
profile = request.queryst ring("profile")
end if


f_day = request.form("f _day")
f_month = request.form("f _month")
f_year = request.form("f _year")
t_day = request.form("t _day")
t_month = request.form("t _month")
t_year = request.form("t _year")

fromDate = request.QuerySt ring("fromD")
toDate = request.QuerySt ring("toD")

if frmPriority = 1 then
priorityDisplay = "Display the 10 lowest performing competencies"
reportSQL = " AND (BUSINESS_COMPS .BC_PRIORITY = 1) "
reportOrderSQL = "ASC"
elseif frmPriority = 2 then
priorityDisplay = "Display the 10 highest performing competencies"
reportSQL = ""
reportOrderSQL = "DESC"
end if

if isnowt(toDate) then
toDate = t_day & "-" & t_month & "-" & t_year
toDateFormatted = dateShortDispla y(toDate)
Else
toDateFormatted = dateShortDispla y(toDate)
If IsDate(toDate) Then
t_day = day(toDate)
t_month = monthname(month (toDate))
t_year = year(toDate)
End If
end if

if isnowt(fromDate ) then
fromDate = f_day & "-" & f_month & "-" & f_year
fromDateFormatt ed = dateShortDispla y(fromDate)
Else
fromDateFormatt ed = dateShortDispla y(fromDate)
If IsDate(fromDate ) Then
f_day = day(fromDate)
f_month = monthname(month (fromDate))
f_year = year(fromDate)
End If
end if

urlQueryVars = "clid=" & clientID & "&cfid=" & ft_id & "&compl=" & frmCompleted & "&toD=" & Server.URLEncod e(toDate) & "&fromD=" & Server.URLEncod e(fromDate) & "&priority= " & frmPriority & "&chart=" & chart & "&profile=" & profile



If not IsDate(toDate) Then
formError = 1
response.redire ct("mis_cs_dp_h ome.asp?error=1 &" & urlQueryVars )
End If

If not IsDate(fromDate ) Then
formError = 1
response.redire ct("mis_cs_dp_h ome.asp?error=1 &" & urlQueryVars )
End If

if isnowt(clientID ) then
response.redire ct("mis_cs_dp_h ome.asp?error=2 &" & urlQueryVars )
end if

if isnowt(frmCompl eted) then
if not isnowt(request. QueryString("co mpl")) then
frmCompleted=re quest.QueryStri ng("compl")
else
response.redire ct("mis_cs_dp_h ome.asp?error=3 &" & urlQueryVars )
end if
end if

if isnowt(frmPrior ity) then
frmPriority=req uest.QueryStrin g("priority")
end if

Set rsLevel = Server.CreateOb ject("ADODB.Rec ordset")
rsLevel.ActiveC onnection = connSTRING
rsLevel.Source = "SELECT LEV_NAME FROM LEVELS WHERE LEV_ID=" & SQLNumber(frmCo mpleted) &" AND LEV_STATUS='v'"
rsLevel.CursorT ype = 0
rsLevel.CursorL ocation = 2
rsLevel.LockTyp e = 1
rsLevel.Open()

If not(rsLevel.BOF and rsLevel.EOF) Then
completedByDisp lay = rsLevel("LEV_NA ME")
Else
completedByDisp lay = ""
End If

rsLevel.Close()
Set rsLevel = Nothing

Set rsProfile = Server.CreateOb ject("ADODB.Rec ordset")
rsProfile.Activ eConnection = connSTRING
rsProfile.Sourc e = "SELECT JP_NAME FROM JOB_PROFILES WHERE JP_ID=" & SQLNumber(profi le) &" AND JP_STATUS='v'"
rsProfile.Curso rType = 0
rsProfile.Curso rLocation = 2
rsProfile.LockT ype = 1
rsProfile.Open( )


if not(rsProfile.e of and rsProfile.bof) then
pro = rsProfile("JP_N AME")

profileSQL = "and (JOB_PROFILES.J P_ID ="&SQLNumber(pr ofile)&")"
else
pro = "All Job Profiles"
end if


rsProfile.Close ()
Set rsProfile = Nothing

reportJoinSQL = " INNER JOIN JOB_PROFILES ON USER_DNA.UDNA_J P_ID = JOB_PROFILES.JP _ID INNER JOIN LEVELS ON JOB_PROFILES.JP _LEV_ID = LEVELS.LEV_ID "
reportSQL = reportSQL & " AND (JOB_PROFILES.J P_LEV_ID = "&SQLNumber(frm Completed)&") "


' ADD DATES TO REPORT QUERY
reportSQL = reportSQL & " AND (USER_DNA.UDNA_ STARTED>=" & SQLDate(fromDat e) & ") AND (USER_DNA.UDNA_ STARTED<=" & SQLDate(toDate) & ")"

Set rsData = Server.CreateOb ject("ADODB.Rec ordset")
rsData.ActiveCo nnection = connSTRING
rsData.Source = " SELECT DISTINCT FRAMEWORK_TYPE. FT_NAME, FRAMEWORK_TYPE. FT_ID, CLIENTS.CL_NAME "&_
" FROM USERS INNER JOIN "&_
" CLIENTS ON USERS.U_CL_ID = CLIENTS.CL_ID INNER JOIN "&_
" JOB_PROFILES ON CLIENTS.CL_ID = JOB_PROFILES.JP _CL_ID INNER JOIN "&_
" LEVEL_COMPS ON JOB_PROFILES.JP _LEV_ID = LEVEL_COMPS.LC_ LEV_ID INNER JOIN "&_
" BUSINESS_COMPS ON LEVEL_COMPS.LC_ BC_ID = BUSINESS_COMPS. BC_ID INNER JOIN "&_
" SCOPES ON BUSINESS_COMPS. BC_SC_ID = SCOPES.SC_ID INNER JOIN "&_
" DEFINITIONS ON SCOPES.SC_DEF_I D = DEFINITIONS.DEF _ID INNER JOIN "&_
" FRAMEWORK_TYPE ON DEFINITIONS.DEF _FT_ID = FRAMEWORK_TYPE. FT_ID "&_
" WHERE (USERS.U_CL_ID = "&SQLNumber(cli entID)&")"
rsData.CursorTy pe = 0
rsData.CursorLo cation = 2
rsData.LockType = 1
rsData.Open()

ft_ID = rsData("FT_ID")

Set rsResults = Server.CreateOb ject("ADODB.Rec ordset")
rsResults.Activ eConnection = connSTRING
rsResults.Sourc e = " SELECT TOP 10 AVG(USER_ANSWER S.UAN_SCORE) AS COMPSCORE, BUSINESS_COMPS. BC_ID, BUSINESS_COMPS. BC_REF, BUSINESS_COMPS. BC_NAME, CLIENT_BENCHMAR KS.CBM_SCORE "&_
" FROM USER_ANSWERS INNER JOIN USER_DNA ON USER_ANSWERS.UA N_UDNA_ID = USER_DNA.UDNA_I D INNER JOIN QUESTIONS "&_
" ON USER_ANSWERS.UA N_QU_ID = QUESTIONS.QU_ID INNER JOIN BUSINESS_COMPS ON QUESTIONS.QU_BC _ID = BUSINESS_COMPS. BC_ID "_
&"INNER JOIN CLIENT_BENCHMAR KS ON BUSINESS_COMPS. BC_ID = CLIENT_BENCHMAR KS.CBM_BC_ID " & reportJoinSQL &_
" WHERE (USER_DNA.UDNA_ WORKFLOW = 'f') AND (CLIENT_BENCHMA RKS.CBM_CL_ID = "&SQLNumber(cli entID)&") "&reportSQL &" "& profileSQL &_
" GROUP BY BUSINESS_COMPS. BC_ID, BUSINESS_COMPS. BC_REF, BUSINESS_COMPS. BC_NAME, CLIENT_BENCHMAR KS.CBM_SCORE ORDER BY COMPSCORE "&reportOrderSQ L&""
rsResults.Curso rType = 0
rsResults.Curso rLocation = 2
rsResults.LockT ype = 1
rsResults.Open( )


%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><!-- InstanceBegin template="/Templates/management.dwt. asp" codeOutsideHTML IsLocked="false " -->
<head>
<!-- ~~~~~~~~~~~~~~~ ~~~~~~~ DNA Development Centre Platform ~~~~~~~~~~~~~~~ ~~~~~~~ -->
<!-- All code and content is copyright (c) DeltaNet International Ltd. -->
<!-- ~~~~~~~~~~~~~~~ ~~~~~~~~ www.delta-net.co.uk ~~~~~~~~~~~~~~~ ~~~~~~~~ -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!--#include file="../../resources/includes/mc_metadata.inc "-->
<title><%=cc_or g_name%> - <%=cc_app_name% ></title>
<link href="../../resources/styles/default_mc.css" rel="stylesheet " type="text/css">
<!-- InstanceBeginEd itable name="head" -->
<!-- InstanceEndEdit able -->
</head>

<body>
<!-- ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~
START SKIP NAV LINKS
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ -->
<div class="nopad red_bg"><a accesskey="s" href="#content" ><img src="../../media/images/spacer.gif" alt="Skip navigation jump to main content" width="1" height="1" border="0"></a></div>

<!-- ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~
START HEADER
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ -->
<div class="header_b g"><!--#include file="../../resources/includes/inc_header_mc.a sp" --></div>

<!-- ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~
START MAIN NAV
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~ -->
<div class="breadcru mb" align="right">< !-- InstanceBeginEd itable name="loggedin" -->Logged in as:&nbsp;<%=ses sion("fullName" )%>&nbsp;|&nbsp ;<a href="../help/help.asp" class="help">He lp</a>&nbsp;|&nbsp; <a href="../authentication/logout.asp" class="help">Lo gout</a><!-- InstanceEndEdit able --></div>
<!-- ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
START CONTENT
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~ -->




<table width="100%" border="0" cellpadding="0" summary="Main content layout table, Breadcrumb trail, side navigation and main content">
<tr>
<td class="bg_siden av_header"><img src="../media/images/spacer.gif" alt=" " width="160" height="15"></td>
<td width="100%" valign="middle" >
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="Breadc rumb navigation trail">
<tr>
<td valign="top"><i mg src="../media/images/interface/bllt_breadcrumb .gif" alt=" " width="28" height="12"></td>

<td width="100%" valign="top" class="breadcru mb"><a name="breadcrum b"></a><!-- InstanceBeginEd itable name="breadcrum b" --><a href="../home/home.asp" class="breadcru mb">Home</a>&nbsp;&gt;&nb sp;<a href="../home/mis_home.asp" class="breadcru mb">MIS
reports</a>&nbsp;&gt; <a href="mis_cs_ho me.asp" class="breadcru mb">Client
specific</a> &gt; <a href="mis_cs_bs _home.asp?<%=ur lQueryVars%>" class="breadcru mb">Benchmark
standards report</a> &gt; Summary &gt;<!-- InstanceEndEdit able --></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="bg_greyp ale"><img src="../../media/images/spacer.gif" alt=" " width="1" height="1"></td>
</tr>
<tr>
<td valign="top" class="bg_siden av">
<a name="mainnav"> </a>
<!--#include file="../includes/inc_sidenav.asp " -->
<!-- InstanceBeginEd itable name="sidenav" -->

<!-- InstanceEndEdit able --></td>
<td valign="top" class="maincont ent"><a name="content"> </a> <!-- InstanceBeginEd itable name="mainconte nt" -->
<h1><img src="../media/images/interface/bllt_title.gif" alt=" " width="20" height="14">Cli ent specific - Benchmark standards report</h1>
<p>Benchmark standards report.</p>
<table width="100%" border="1" cellspacing="0" cellpadding="3" summary="Report basis" class="tbl_bord er1">
<tr>
<th colspan="2" nowrap class="th_head" ><div align="left">Re port basis</div></th>
</tr>
<tr valign="top">
<td nowrap class="td_row2" >Client name:&nbsp;</td>
<td width="100%" class="td_row2" ><%=rsData("CL_ NAME")%>&nbsp;</td>
</tr>
<tr valign="top">
<td nowrap class="td_row1" >Assessment period from:&nbsp;</td>
<td width="100%" class="td_row1" ><%=fromDateFor matted%>&nbsp;</td>
</tr>
<tr valign="top">
<td nowrap class="td_row2" >Assessment period to:&nbsp;</td>
<td class="td_row2" ><%=toDateForma tted%>&nbsp;</td>
</tr>
<tr valign="top">
<td nowrap class="td_row1" >Completed by Job Level:&nbsp;</td>
<td class="td_row1" ><%=completedBy Display%>&nbsp; </td>
</tr>
<tr valign="top">
<td nowrap class="td_row2" >Completed by Job Profile:&nbsp;</td>
<td class="td_row2" ><%=pro%>&nbsp; </td>
</tr>
<tr valign="top">
<td nowrap class="td_row1" >Performance:&n bsp;</td>
<td class="td_row1" ><%=priorityDis play%>&nbsp;</td>
</tr>
</table>
<img src="../media/images/spacer.gif" alt=" " width="1" height="20">
<table width="100%" border="1" cellspacing="0" cellpadding="3" class="tbl_bord er1">
<tr>
<th nowrap class="th_head" >BC Ref:</th>
<th width="100%" nowrap class="th_head" ><div align="left">Bu siness competency
name</div></th>
<th nowrap class="th_head" >Benchmark scores</th>
<th nowrap class="th_head" >Average scores</th>
</tr>
<%
if rsResults.EOF and rsResults.BOF then
%>
<tr>
<td colspan="4" class="td_row1" ><span class="redtext" >There are no records for this selection.</span></td>
</tr>
<%
end if
%>
<%do while not rsResults.EOF
' alternating row colour code
if iRow = 1 then
rowColor = "td_row1"
iRow = 2
elseif iRow = 2 then
rowColor = "td_row2"
iRow = 1
end if
%>
<tr valign="top">
<td class="<%=rowCo lor%>"><%=rsRes ults("BC_REF")% >&nbsp;</td>
<td class="<%=rowCo lor%>"><a href="mis_cs_bs _pie.asp?bcid=< %=rsResults("BC _ID")%>&<%=urlQ ueryVars%>"><%= rsResults("BC_N AME")%></a>&nbsp;</td>
<td class="<%=rowCo lor%>"><%=rsRes ults("CBM_SCORE ")%>%&nbsp; </td>
<td class="<%=rowCo lor%>"><%=rsRes ults("COMPSCORE ")%>%&nbsp; </td>
</tr>
<%
' assign vars for flash movie
If n= 1 then
option1 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 2 Then
option2 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 3 Then
option3 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 4 Then
option4 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 5 Then
option5 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 6 Then
option6 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 7 Then
option7 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 8 Then
option8 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 9 Then
option9 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
ElseIf n = 10 Then
option10 = rsResults("BC_N AME") & "[,]" & rsResults("CBM_ SCORE") & "[,]" & rsResults("COMP SCORE")
End If

n = n + 1
rsResults.MoveN ext
loop
%>
</table>
<img src="../media/images/spacer.gif" alt=" " width="1" height="20">
<%

if not rsResults.EOF and rsResults.BOF then
else
n = 1
rsResults.MoveF irst
%>
<table border="0">
<tr>
<td><img src="../../media/spacer.gif" alt=" " width="1" height="25">
<div id="flashconten t">
<strong>You may need to upgrade your Flash Player</strong><br>
<a target="_blank" href="http://www.adobe.com/">Download the latest flash player here</a>
</div>
</td>
<td width="75%">
<table border="0" class="tbl_bord er1">
<tr>
<th nowrap class="th_head" >Key</th>
<th nowrap class="th_head" ><div align="left">&n bsp;&nbsp;&nbsp ;&nbsp;Busine ss competency name</div></th>
</tr>
<%
do while not rsResults.EOF
%>
<tr>
<td width="20" bgcolor="#00000 0"><img src="../../media/spacer.gif" alt=" " width="1" height="1"><div align="center" class="whitetex t"><%=n%></div><img src="../../media/spacer.gif" alt=" " width="1" height="1"></td>
<td>&nbsp;&nbsp ;&nbsp;<%=rsRes ults("BC_NAME") %></td>
</tr>
<%
n = n + 1
rsResults.MoveN ext
loop

if chart = "1" then
javaChart = "multiple_bar_c hart.swf"
else
javaChart = "multiple_spide r_chart.swf"
end if

%>
<script type="javascrip t">
// <![CDATA[

var so = new SWFObject("../../media/flash/<%=javaChart%>" , "movie", "600", "600", "6", "#FFFFFF");
so.addVariable( "screenMode ", 2);
so.addVariable( "noTick", <%=n%>);
so.addVariable( "option1", "<%=replaceCRLF (option1)%>");
so.addVariable( "option2", "<%=replaceCRLF (option2)%>");
so.addVariable( "option3", "<%=replaceCRLF (option3)%>");
so.addVariable( "option4", "<%=replaceCRLF (option4)%>");
so.addVariable( "option5", "<%=replaceCRLF (option5)%>");
so.addVariable( "option6", "<%=replaceCRLF (option6)%>");
so.addVariable( "option7", "<%=replaceCRLF (option7)%>");
so.addVariable( "option8", "<%=replaceCRLF (option8)%>");
so.addVariable( "option9", "<%=replaceCRLF (option9)%>");
so.addVariable( "option10", "<%=replaceCRLF (option10)%>");
so.write("flash content");

// ]]>//
</script>
</table>
</td>
</tr>
</table>

<%
end if
%>




<!-- InstanceEndEdit able --></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="Footer content layout table">
<tr>
<td colspan="2" class="bg_white "><img src="../media/images/spacer.gif" alt=" " width="1" height="1"></td>
</tr>
<tr>
<td colspan="2" class="bg_greyp ale"><img src="../media/images/spacer.gif" alt=" " width="1" height="1"></td>
</tr>
<tr>
<td class="footer"> <%=cc_version%> </td>
<td class="footer"> <div align="right">& copy; DeltaNet International Ltd</div>
</td>
</tr>
<tr>
<td colspan="2" class="bg_greyp ale"><img src="../media/images/spacer.gif" alt=" " width="1" height="1"></td>
</tr>
</table>
<p>&nbsp;</p>
</body>
<!-- InstanceEnd --></html>
Mar 12 '08 #1
1 2297
dosingh
2 New Member
SORTED!!!! :o)
missed out <script type="text/javascript" src="../../resources/scripts/swfobject.js"></script> from the headed. silly me
Mar 12 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

6
3572
by: Cliff R. | last post by:
Hi, I use a handy little Javascript Flash detection script on a number of sites (copied below). Usually works great, but I just started trying Firefox and it's not working. A few browsers are referenced in the script so I presume that Firefox needs to be added somewhere -- does anyone know how I could update this to be supported by Firefox? Thanks! <SCRIPT TYPE="text/JavaScript">
0
1209
by: P. Ter Horst | last post by:
The company I work for runs applications in batch. At midnight we have a deadline for a certain application. The End-Time of that application is exported to Access. The data in the table looks something like this: DATE: END-TIME: 04-05-2003 23:12 05-05-2003 00:14 06-05-2003 23:45
0
1342
by: cprestino | last post by:
I am creating a graph in ChartFX using .net. I have the graphs working correctly when it is defined as an image. However when I change this graph to use Flashwriter, The graph is outputted as a flash file, but the x-axis labels no longer show up; see code Dim myFlash As New SoftwareFX.ChartFX.Flash.FlashWriter cfxChart.OutputWriter = myFlash myFlash.Version = SoftwareFX.ChartFX.Flash.FlashVersion.V6 myFlash.Tooltips = True
2
2082
by: savas_karaduman | last post by:
I supposed that creating graph with access would be as easy as how I could with Excel. But it seems to me that there is some tricky point here. What i am trying to do and what i got is as follow: Suppose that there is a table named (TPerson) in which field names are "Name"<text>", "Age"<number-byte>. I would like to get a simple graph, X-axis stands for "Name", Y-axis stands for "Age". I follow procedure by using wizard but result is...
3
2613
by: pankajit09 | last post by:
Hello, I am generating a graph using flash. I want to print the graph. For that I am thinking to convert the flash's last instance to a image file. How to do this ?
2
4137
by: Maddy | last post by:
I manage a small organisation of around 100 employees, with different specialisations. It becomes difficult to check how many persons of each specialisation are available at any time, based on their vacation period. So I have made a ms-acces database as follows - A table EMPL with details of employees. A table SPEC with the various specialisations. The EMPL table has a specialisation field linked to the SPEC table. Finally a VACATION...
1
1803
by: srinivasreddypn | last post by:
Hi everyone, is it possible to generate a line graph in flash by calling xml data into flash. m seeking for any reference. please help me thank u, srinvas
8
2964
by: Adrian | last post by:
Having plotted a graph from x,y co-ordinate to x,y co-ordinate, the graph disappears immediately (after the last plot). Writing " " to a label, in between subsequent plots, solves this problem. Could someone please shed some light on the cause of this? Thank you, Adrian.
0
2353
by: mylog | last post by:
I have downloaded a GLEE(Graph Layout Execution Engine) and written the following code to display a windows form from a web page but i am encountering with a small problem on displaying the graph into the display and I am getting the following error when I run the web page.Can anybody solve this problem. I would be very grateful. Thanks Error: System.InvalidOperationException: Showing a modal dialog box or form when the application is not...
0
8987
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9366
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9316
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9241
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6793
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6073
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4597
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4867
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2777
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.