473,785 Members | 2,882 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

search within a search within a search - looking for better way...my script times out

My code does what I want (works unless there is a lot of
volume...works for this month cause not a lot of items marked paid
yet...) but the page times out for last month because there is just
so many items. Is there a better way to do this?

my page gets all distinct Oganizations.
within each organization it gets each distinct Fund
within each fund it gets each distinct Program
then it lists each item that is paid for the month being
checked

So the end result is a list of each account that has been paid for
each Org/Fund/Program in order.

Oganization 000001
Fund 000001
Program 000001
Account 000001 MonthPd 0704 PdAmount 140.00
Account 000001 MonthPd 0704 PdAmount 370.66
Account 000001 MonthPd 0704 PdAmount 370.66

Oganization 000001
Fund 000001
Program 000001
Account 000002 MonthPd 0704 PdAmount 1.00
Account 000002 MonthPd 0704 PdAmount 880.60
..
..<snip> Went threw all accounts for Program One move to Program 2
..

Oganization 000001
Fund 000001
Program 000002
Account 000001 MonthPd 0704 PdAmount 1.00
Account 000001 MonthPd 0704 PdAmount 880.60
..
..<snip> Went threw all accounts/programs for fund 1 move on to fund 2
..

Oganization 000001
Fund 000002
Program 000001
Account 000001 MonthPd 0704 PdAmount 1.00
Account 000001 MonthPd 0704 PdAmount 880.60
..
..
..

My Code...sorry that I could not shorten it much more

+++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++++++++ ++++++++
[Next line is file telling where db is]
<!--#include file="include.a sp"-->

<%

Dim connect, rs
Dim sSQL
Dim connect2, rs2
Dim sSQL2
Dim connect3, rs3
Dim sSQL3
Dim ThePD 'Date Paid for monthly reconciling
Dim TheYear 'Table in the database - each year is in different table
'Hard codeded for testing
ThePD = "0704"
'Hard coded for testing
TheYear = "AllExpenses200 4"

Set connect = Server.CreateOb ject("ADODB.Con nection")
Set rs = Server.CreateOB ject("ADODB.Rec ordset")
connect.Connect ionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect.Open

Set connect2 = Server.CreateOb ject("ADODB.Con nection")
Set rs2 = Server.CreateOB ject("ADODB.Rec ordset")
connect2.Connec tionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect2.Open

Set connect3 = Server.CreateOb ject("ADODB.Con nection")
Set rs3 = Server.CreateOB ject("ADODB.Rec ordset")
connect3.Connec tionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect3.Open

Set connect4 = Server.CreateOb ject("ADODB.Con nection")
Set rs4 = Server.CreateOB ject("ADODB.Rec ordset")
connect4.Connec tionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect4.Open
%>

<html>
<head>
</head>
<body>
<table border="0">
<%
sSQL3 = "SELECT Distinct Organization" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Organization"
set rs3 = Connect.Execute (sSQL3)
%>
<% Do until rs3.eof %>

<%
sSQL2 = "SELECT Distinct Fund" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Fund"
set rs2 = Connect.Execute (sSQL2)
%>
<% Do until rs2.eof %>

<%
sSQL4 = "SELECT Distinct Fund, Organization, Program" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Organization, Fund, Program"
set rs4 = Connect.Execute (sSQL4)
%>
<% Do until rs4.eof %>

<tr>
<td>Organizatio n</td>
<td colspan="11"><% =rs4("Organizat ion")%></td>
</tr>
<tr>
<td>Fund</td>
<td colspan="11"><% =rs4("Fund")%></td>
</tr>
<tr>
<td>Program</td>
<td colspan="11"><% =rs4("Program") %></td>
</tr>
<tr>
<td>Account</td>
<td>Month PD</td>
<td>PD Amount</td>
</tr>

<%
TheFund = rs4("Fund")
TheOrg = rs4("Organizati on")
TheProg = rs4("Program")

sSQL = "SELECT *" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" and Fund = '" & TheFund & "'"
set rs = Connect.Execute (sSQL)

Do until rs.eof
%>
<tr bgcolor="<%=sBa ckgroundColor%> ">
<td class="text"><% =rs("Account")% ></td>
<td class="text"><% =rs("MonthPd")% ></td>
<td class="text"><% =rs("PdAmount") %></td>
</tr>

<% End If
rs.MoveNext
Loop %>
</tr>
<tr><tdnbsp;</td></tr>

<% rs4.MoveNext
Loop %>
<% rs2.MoveNext
Loop %>
<% rs3.MoveNext
Loop %>
</table>
<p>&nbsp;</p>
</body>
</html>
Jul 19 '05 #1
5 1629
On 29 Jul 2004 12:26:29 -0700, ab*******@hotma il.com (Abby Lee) wrote:
My code does what I want (works unless there is a lot of
volume...wor ks for this month cause not a lot of items marked paid
yet...) but the page times out for last month because there is just
so many items. Is there a better way to do this?
Hard to tell. How about a database type/version, and your query?
Table structure and sample data might help as well.

Jeff

my page gets all distinct Oganizations.
within each organization it gets each distinct Fund
within each fund it gets each distinct Program
then it lists each item that is paid for the month being
checked

So the end result is a list of each account that has been paid for
each Org/Fund/Program in order.

Oganization 000001
Fund 000001
Program 000001
Account 000001 MonthPd 0704 PdAmount 140.00
Account 000001 MonthPd 0704 PdAmount 370.66
Account 000001 MonthPd 0704 PdAmount 370.66

Oganization 000001
Fund 000001
Program 000001
Account 000002 MonthPd 0704 PdAmount 1.00
Account 000002 MonthPd 0704 PdAmount 880.60
.
.<snip> Went threw all accounts for Program One move to Program 2
.

Oganization 000001
Fund 000001
Program 000002
Account 000001 MonthPd 0704 PdAmount 1.00
Account 000001 MonthPd 0704 PdAmount 880.60
.
.<snip> Went threw all accounts/programs for fund 1 move on to fund 2
.

Oganization 000001
Fund 000002
Program 000001
Account 000001 MonthPd 0704 PdAmount 1.00
Account 000001 MonthPd 0704 PdAmount 880.60
.
.
.

My Code...sorry that I could not shorten it much more

++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++
[Next line is file telling where db is]
<!--#include file="include.a sp"-->

<%

Dim connect, rs
Dim sSQL
Dim connect2, rs2
Dim sSQL2
Dim connect3, rs3
Dim sSQL3
Dim ThePD 'Date Paid for monthly reconciling
Dim TheYear 'Table in the database - each year is in different table
'Hard codeded for testing
ThePD = "0704"
'Hard coded for testing
TheYear = "AllExpenses200 4"

Set connect = Server.CreateOb ject("ADODB.Con nection")
Set rs = Server.CreateOB ject("ADODB.Rec ordset")
connect.Connec tionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect.Open

Set connect2 = Server.CreateOb ject("ADODB.Con nection")
Set rs2 = Server.CreateOB ject("ADODB.Rec ordset")
connect2.Conne ctionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect2.Ope n

Set connect3 = Server.CreateOb ject("ADODB.Con nection")
Set rs3 = Server.CreateOB ject("ADODB.Rec ordset")
connect3.Conne ctionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect3.Ope n

Set connect4 = Server.CreateOb ject("ADODB.Con nection")
Set rs4 = Server.CreateOB ject("ADODB.Rec ordset")
connect4.Conne ctionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect4.Ope n
%>

<html>
<head>
</head>
<body>
<table border="0">
<%
sSQL3 = "SELECT Distinct Organization" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Organization"
set rs3 = Connect.Execute (sSQL3)
%>
<% Do until rs3.eof %>

<%
sSQL2 = "SELECT Distinct Fund" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Fund"
set rs2 = Connect.Execute (sSQL2)
%>
<% Do until rs2.eof %>

<%
sSQL4 = "SELECT Distinct Fund, Organization, Program" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Organization, Fund, Program"
set rs4 = Connect.Execute (sSQL4)
%>
<% Do until rs4.eof %>

<tr>
<td>Organizati on</td>
<td colspan="11"><% =rs4("Organizat ion")%></td>
</tr>
<tr>
<td>Fund</td>
<td colspan="11"><% =rs4("Fund")%></td>
</tr>
<tr>
<td>Program</td>
<td colspan="11"><% =rs4("Program") %></td>
</tr>
<tr>
<td>Account</td>
<td>Month PD</td>
<td>PD Amount</td>
</tr>

<%
TheFund = rs4("Fund")
TheOrg = rs4("Organizati on")
TheProg = rs4("Program")

sSQL = "SELECT *" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" and Fund = '" & TheFund & "'"
set rs = Connect.Execute (sSQL)

Do until rs.eof
%>
<tr bgcolor="<%=sBa ckgroundColor%> ">
<td class="text"><% =rs("Account")% ></td>
<td class="text"><% =rs("MonthPd")% ></td>
<td class="text"><% =rs("PdAmount") %></td>
</tr>

<% End If
rs.MoveNext
Loop %>
</tr>
<tr><tdnbsp; </td></tr>

<% rs4.MoveNext
Loop %>
<% rs2.MoveNext
Loop %>
<% rs3.MoveNext
Loop %>
</table>
<p>&nbsp;</p>
</body>
</html>


Jul 19 '05 #2
I don't know about a better way, but if the problem is that your page times
out, then perhaps Response.Flush can help?

Try to replace this:

<% rs3.MoveNext
Loop %>

With this:

<%
Response.Flush
rs3.MoveNext
Loop
%>

If it still times out, try to put Response.Flush before rs2.MoveNext
instead.

Let me know if it helps.
(Err, not that I have other ideas if it doesn't help...)

Best regards,
Rune
Jul 19 '05 #3
je*********@zin a.com (Jeff Cochran) wrote in message news:<41******* *********@msnew s.microsoft.com >...
On 29 Jul 2004 12:26:29 -0700, ab*******@hotma il.com (Abby Lee) wrote:
My code does what I want (works unless there is a lot of
volume...wor ks for this month cause not a lot of items marked paid
yet...) but the page times out for last month because there is just
so many items. Is there a better way to do this?
Hard to tell. How about a database type/version, and your query?
Table structure and sample data might help as well.

Jeff

Access 2000
13477 records
Fields: Chart=Number, Indexcode=Text, Fund=Text, Organization=Te xt,
Acount=Text, Program=Text, GrantIndex=Text , Activity=Text,
location=Text, Division=Text, Log=Text, Voucher=Text, Vendor=Text,
Item=Text, Vamount=Curreny , RecDate=Date/Time, Vdate=Date/Time
Discount=Curren cy, MonthPd=Text, PdAmount=Curren cy

I've included my queries between the body tags...the only place they
will work. Only thing I did not include was the file that tells my
query where to find my db ><!--#include file="include.a sp"-->

My include.asp file:
<%
Dim sDataSoure
sDataSource = "f:\dbs\Access_ Files\expense.m db"
%>

<%
Function fncStrConv(str)
fncStrConv = Replace(Replace (str, "'", "''"), CHR(34), "&quote;")
End Function
%>


my page gets all distinct Oganizations.
within each organization it gets each distinct Fund
within each fund it gets each distinct Program
then it lists each item that is paid for the month being
checked

So the end result is a list of each account that has been paid for
each Org/Fund/Program in order.

Oganization 000001
Fund 000001
Program 000001
Account 000001 MonthPd 0704 PdAmount 140.00
Account 000001 MonthPd 0704 PdAmount 370.66
Account 000001 MonthPd 0704 PdAmount 370.66

Oganization 000001
Fund 000001
Program 000001
Account 000002 MonthPd 0704 PdAmount 1.00
Account 000002 MonthPd 0704 PdAmount 880.60
.
.<snip> Went threw all accounts for Program One move to Program 2
.

Oganization 000001
Fund 000001
Program 000002
Account 000001 MonthPd 0704 PdAmount 1.00
Account 000001 MonthPd 0704 PdAmount 880.60
.
.<snip> Went threw all accounts/programs for fund 1 move on to fund 2
.

Oganization 000001
Fund 000002
Program 000001
Account 000001 MonthPd 0704 PdAmount 1.00
Account 000001 MonthPd 0704 PdAmount 880.60
.
.
.

My Code...sorry that I could not shorten it much more

++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++++++++ +++++++++
[Next line is file telling where db is]
<!--#include file="include.a sp"-->

<%

Dim connect, rs
Dim sSQL
Dim connect2, rs2
Dim sSQL2
Dim connect3, rs3
Dim sSQL3
Dim ThePD 'Date Paid for monthly reconciling
Dim TheYear 'Table in the database - each year is in different table
'Hard codeded for testing
ThePD = "0704"
'Hard coded for testing
TheYear = "AllExpenses200 4"

Set connect = Server.CreateOb ject("ADODB.Con nection")
Set rs = Server.CreateOB ject("ADODB.Rec ordset")
connect.Connec tionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect.Open

Set connect2 = Server.CreateOb ject("ADODB.Con nection")
Set rs2 = Server.CreateOB ject("ADODB.Rec ordset")
connect2.Conne ctionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect2.Ope n

Set connect3 = Server.CreateOb ject("ADODB.Con nection")
Set rs3 = Server.CreateOB ject("ADODB.Rec ordset")
connect3.Conne ctionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect3.Ope n

Set connect4 = Server.CreateOb ject("ADODB.Con nection")
Set rs4 = Server.CreateOB ject("ADODB.Rec ordset")
connect4.Conne ctionString = _
"Provider=Micro soft.Jet.OLEDB. 4.0;" & _
"Data Source=" & sDataSource
connect4.Ope n
%>

<html>
<head>
</head>
<body>
<table border="0">
<%
sSQL3 = "SELECT Distinct Organization" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Organization"
set rs3 = Connect.Execute (sSQL3)
%>
<% Do until rs3.eof %>

<%
sSQL2 = "SELECT Distinct Fund" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Fund"
set rs2 = Connect.Execute (sSQL2)
%>
<% Do until rs2.eof %>

<%
sSQL4 = "SELECT Distinct Fund, Organization, Program" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" ORDER BY Organization, Fund, Program"
set rs4 = Connect.Execute (sSQL4)
%>
<% Do until rs4.eof %>

<tr>
<td>Organizati on</td>
<td colspan="11"><% =rs4("Organizat ion")%></td>
</tr>
<tr>
<td>Fund</td>
<td colspan="11"><% =rs4("Fund")%></td>
</tr>
<tr>
<td>Program</td>
<td colspan="11"><% =rs4("Program") %></td>
</tr>
<tr>
<td>Account</td>
<td>Month PD</td>
<td>PD Amount</td>
</tr>

<%
TheFund = rs4("Fund")
TheOrg = rs4("Organizati on")
TheProg = rs4("Program")

sSQL = "SELECT *" & _
" FROM " & TheYear & _
" WHERE MonthPD = '" & ThePD & "'" & _
" and Fund = '" & TheFund & "'"
set rs = Connect.Execute (sSQL)

Do until rs.eof
%>
<tr bgcolor="<%=sBa ckgroundColor%> ">
<td class="text"><% =rs("Account")% ></td>
<td class="text"><% =rs("MonthPd")% ></td>
<td class="text"><% =rs("PdAmount") %></td>
</tr>

<% End If
rs.MoveNext
Loop %>
</tr>
<tr><tdnbsp; </td></tr>

<% rs4.MoveNext
Loop %>
<% rs2.MoveNext
Loop %>
<% rs3.MoveNext
Loop %>
</table>
<p>&nbsp;</p>
</body>
</html>

Jul 19 '05 #4
"Rune" <rune[insert current year]@runevision.com > wrote in message news:<O1******* *******@TK2MSFT NGP09.phx.gbl>. ..
I don't know about a better way, but if the problem is that your page times
out, then perhaps Response.Flush can help?

Try to replace this:

<% rs3.MoveNext
Loop %>

With this:

<%
Response.Flush
rs3.MoveNext
Loop
%>

If it still times out, try to put Response.Flush before rs2.MoveNext
instead.

Let me know if it helps.
(Err, not that I have other ideas if it doesn't help...)

Best regards,
Rune


Thanks Rune, I will try this on Monday.
Jul 19 '05 #5
"Rune" <rune[insert current year]@runevision.com > wrote in message news:<O1******* *******@TK2MSFT NGP09.phx.gbl>. ..
I don't know about a better way, but if the problem is that your page times
out, then perhaps Response.Flush can help?

Try to replace this:

<% rs3.MoveNext
Loop %>

With this:

<%
Response.Flush
rs3.MoveNext
Loop
%>

If it still times out, try to put Response.Flush before rs2.MoveNext
instead.

Let me know if it helps.
(Err, not that I have other ideas if it doesn't help...)

Best regards,
Rune


Ok this gets me closer...I put a Response.Flush before each
rs#.MoveNext
However I still get timed out after only part of the data is printed.
Any other ideas?
Active Server Pages error 'ASP 0113'
Script timed out

/eforms/reconcile/reconcile.asp

The maximum amount of time for a script to execute was exceeded. You
can change this limit by specifying a new value for the property
Server.ScriptTi meout or by changing the value in the IIS
administration tools.
Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2679
by: Ken Fine | last post by:
I'm looking to find or create an ASP script that will take a string, examine it for a search term, and if it finds the search term in the string, return the highlighted search term along with the words that surround it. In other words, I want the search term highlighted and shown in an excerpt of the context in which it appears. Any suggestions or pointers? This behavior is most often seen as part of a search engine. In my case, I want...
10
2736
by: Craig Keightley | last post by:
I have the following array: function showCPUs(){ //name brandID dualCore dualProcessor var cpuItem=; var cpuItem=; var cpuItem=; var cpuItem=; var cpuItem=; var cpuItem=; var cpuItem=;
6
3038
by: richard.pasco | last post by:
Hey all I am trying to write a script that allows users to search through a database of names. But rather than give a search string and then return all those that match, I would like it to search each time the user types a new letter in the text box. That's badly explained - this example might help! The user types "r" and I displays all the names with r in them. The
28
3179
by: joshc | last post by:
If I have an array of data that I know to be sorted in increasing order, and the array is less than 50 elements, and I want to find the first element greater than a certain value, is a simple linear search the best here(for loop from beginning to end of array)? It seems like some other search algorithm like binary or whatever would be of no benefit on this data set.
60
49196
by: Julie | last post by:
What is the *fastest* way in .NET to search large on-disk text files (100+ MB) for a given string. The files are unindexed and unsorted, and for the purposes of my immediate requirements, can't be indexed/sorted. I don't want to load the entire file into physical memory, memory-mapped files are ok (and preferred). Speed/performance is a requirement -- the target is to locate the string in 10 seconds or less for a 100 MB file. The...
32
14899
by: tshad | last post by:
Can you do a search for more that one string in another string? Something like: someString.IndexOf("something1","something2","something3",0) or would you have to do something like: if ((someString.IndexOf("something1",0) >= 0) || ((someString.IndexOf("something2",0) >= 0) ||
0
1244
by: EC | last post by:
There are times when I use the Search utility of windows explorer to find ASPX file(s) that contains a specific word. The Search utility however skips the <script ..> </script> block in the ASPX files when it searches for a word or phrase in a file or folder. The Search utility works fine when I change the file's extension to TXT. I am using Windows server 2003. Is this behavior of the Search utility expected when searching for a word...
4
12768
by: Claudio Calboni | last post by:
Hello folks, I'm having some performance issues with the client-side part of my application. Basically, it renders a huge HTML table (about 20'000 cells in my testing scenario), without content. Content is "pushed" from the back via some JS, for the only displayed portion of table. Once the user scrolls, JS updates visible cells with data. It's quite the philosophy behind GMaps and similars. So, the server says to JS "update this group...
1
1065
by: Andrew Poulos | last post by:
I'm doing some work with various different Learning Management Systems (LMS) and they each expose an object called "API". The problem is I can't know beforehand how the user may decide to configure the LMS. The LMS might open my page in a new window, in a frame, in a frame in a new window... From my page I'm doing this search: var fGetAPI = function(){ var numOfTries, lwindow, theAPI, i, j; numOfTries = 20; // an arbitrary number
0
9645
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
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10151
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
10092
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
8973
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7499
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
6740
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
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3647
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.