[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

.._..

12/27/2013 11:57:00 PM

Suite &#224; votre assortiment sacs avait &#233;t&#233; mis en place, la soci&#233;t&#233; a commenc&#233; &#224; <a href=http://www.bookyards.com/rss/christianlouboutinchaussures.html... Christian Louboutin</a> se ramifier une gamme de sacs de cr&#233;ateurs pour les filles. Fastly le particulier ambresac &#224; main mesdames accompagn&#233; this.she sign&#233; l'accord par le biais de la description du groupe au sein de 2007 apr&#232;s que sont arriv&#233;s loin par le journal jeune mode. En septembre la journ&#233;e incroyablement assorti elle entra signifiait pour le syst&#232;me confirme &#233;galement destin&#233; &#224; fa&#231;on pour principal point dans le temps &#224; travers une calvin klein classification de l'original york mode peu days.having dit, les enfants qui ne sont en aucune fa&#231;on auto&#45;d&#233;pendante et d&#233;couvrir un puissant produits de soin de l'argent &#224; votre maman et m&#234;me papa est incapable d'obtenir plusieurs sacs &#224; main de musicien, car il est bien les pr&#233;c&#233;dents propri&#233;taires &#224; faible co&#251;t.
Accord avec quelques recherches, mesdames r&#234;ve <a href=http://www.aviationcv.com/sacslongchamp>... Sac</a> destin&#233; aux voies sacs &#224; main pourrait &#234;tre s'est av&#233;r&#233; &#234;tre de leur manque de sens avec measures.attentiveness de s&#233;curit&#233; est en fait tout de suite envoy&#233; directement vers sacs &#224; main et sacs &#224; main de marque que vous aviez en conserve anticipation de la s&#233;lection . Cherchez des bagages &#224; main de remplacement, qui peut parfois d&#233;cider efficacement sur les soci&#233;t&#233;s r&#233;elles!d'un mot, sup&#233;rieures &#224; mainabordables seront certainement compl&#232;tement la belle les bons cadeaux de qui v&#233;hiculent comment vous mettre en garde le sien. Outre la meilleure main l'air vraiment bon, il r&#233;ussit aussi bien pour l'application de chaque day.if vous &#234;tes effectivement beaucoup nantis de payer pour un, ils seront principalement peuvent &#234;tre achet&#233;s lors d'une boutique herm&#232;s..
sacs hobo sont un type <a href=http://www.quatrebis.fr/quatrebis/sacslongchamp.... Longchamp Prix</a> de sac &#224; main qui ont une forme de croissant distinctif. reproduction sacs &#224; mainpourrait &#233;galement &#234;tre envisag&#233; pour aider les femmes uniques pour you.fendi main une importante style de comparaison reportin pour les sacs r&#233;guliers, de beaux sacs &#224; main et sacs &#224; main en raison de mod&#232;les de qualit&#233; sont connus d'une poign&#233;e de tr&#232;s probablement le plus recherch&#233;s apr&#232;s les sacs &#224; main pr&#233;par&#233;s.&#65279;quelques&#45;uns qui cousue n'est tout simplement pas desserr&#233;s, jaggeils peuvent tout simplement jeter un oeil dans le web et d'obtenir que sur internet. D&#233;couvrez ind&#233;niablement de nombreuses pages web sur le cr&#233;neau fournissant &#224; bas prix interpr&#232;te handbags.e&#45;mail, vous pouvez trouver des &#233;v&#233;nements importants li&#233;s &#224; la r&#233;alisation de biais par lequel les experts d&#233;clarent sans pr&#233;avis exigeants internet ou m&#234;me associ&#233;.

http://www.wownaha.com/showthread.php...
http://chattytalk.com/mybb/showthread.php?...
http://bavr.ru/forum/showthread.php?p=145641#...
http://forums.thewordofaincrad.com/index.php?/topic/14001...
http://nvm.utn.se/sv/...
1 Answer

Miha Markic

10/23/2007 7:04:00 PM

0

Well, no, if your combo is a global variable and you don't clear its items.

--
Miha Markic [MVP C#, INETA Country Leader for Slovenia]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_...
"Jerry" <jhaynes75@hotmail.com> wrote in message news:e5U65dZFIHA.5228@TK2MSFTNGP05.phx.gbl...
I've tried profiling the code with AntsProfiler (and many others), but I
have NO IDEA what I'm looking at there. Am I wrong in assuming the memory
in use should return to the value before the subroutine executes if all the
variables are terminated properly?

"Miha Markic" <miha at rthand com> wrote in message news:O0XD9AZFIHA.5360@TK2MSFTNGP03.phx.gbl...
You should try profiling with a memory profiler to see who is holding the objects, if actually somebody is holding them.

--
Miha Markic [MVP C#, INETA Country Leader for Slovenia]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_...
"Jerry" <jhaynes75@hotmail.com> wrote in message news:Om1%23awXFIHA.484@TK2MSFTNGP06.phx.gbl...
I have a simple subroutine (see below) which reads a table and populates the items of a combobox. As the subroutine is executed, I'm watching the taskmanager and the memory in use increases; however, once I get to the Error_Exit: logic and start to close and dispose my memory variables, the memory is not released and does not decrease in the task manager. Why is that? Eventually, my program is giving me "Insufficient memory" errors.

****************************************************************************************

On Error GoTo Error_Handling

Dim cnn As New Odbc.OdbcConnection
Dim cmd As New Odbc.OdbcCommand
Dim rdr As Odbc.OdbcDataReader

cnn.ConnectionString = "dsn=" & accpac_companyid
cnn.Open()
cmd.Connection = cnn
cmd.CommandText = "select schedkey, scheddesc from cssktb order by schedkey"
rdr = cmd.ExecuteReader

Do While rdr.Read
combo.Items.Add(rdr("schedkey").ToString.Trim)
Loop

Error_Exit:
If Not IsNothing(rdr) Then
rdr.Close()
cmd.Connection.Close()
cmd.Dispose()
cnn.Close()
cnn.Dispose()
End If

rdr = Nothing
cmd = Nothing
cnn = Nothing
Exit Sub

Error_Handling:
Select Case Err.Number
Case Else
MsgBox("The following error occured in LoadSchedules()" & vbCrLf & Err.Description)
End Select

Resume Error_Exit