Toon posts:

Outlook Today DLL werkt niet meer in Outlook XP

Pagina: 1
Acties:

Verwijderd

Topicstarter
Ik heb ooit een aangepaste DLL gemaakt (outlwvw.dll) die Outlook vandaag (Outlook Today) aanpaste, de agenda op dat scherm verwees daarmee naar een Openbare map ipv de lokale agenda. Werkte perfect.
Ik heb nu een upgrade uitgevoerd naar Outlook XP (2002), en deze DLL weer teruggezet. De kleuren enzo van Outlook Vandaag zijn nu weer net zo als ze waren in 2000, in dat opzicht werkt mijn DLL ook weer goed in XP alleen de link naar de Openbare map Agenda werkt niet meer, hij laat dus geen agendaitems meer zien in Outlook Vandaag.

Wie weet hoe ik deze DLL zo verbouw zodat hij ook in Outlook XP weer werkt?

Alvast mijn dank.

  • robjanssen
  • Registratie: September 2001
  • Laatst online: 02-08 16:10

robjanssen

Software Developer

Dan zul je toch ook de code van je DLL moeten plaatsen.

  • Flake
  • Registratie: Februari 2001
  • Laatst online: 01-11-2024
Ik sluit me aan bij Rob. Als je een game code en je wilt het compatible maken met XP kom je ook niet verder zonder source.

  • DizzyWeb
  • Registratie: Februari 2001
  • Laatst online: 04-09 13:46

DizzyWeb

Ondertiteld

Ander idee... Bekijk wat je verbouwd hebt en pas de originele XP dll aan... :)

  • whoami
  • Registratie: December 2000
  • Laatst online: 17:40
Vergelijk de functies in de XP dll met de functies van uw aangepaste DLL. Bekijk hoe de functies daar noemen en hoe ze bij u heetten.
Er zullen hoogst waarschijnlijk een aantal functies bijgekomen zijn ook in die XP dll.

https://fgheysels.github.io/


  • yodax
  • Registratie: Januari 2000
  • Laatst online: 28-04 08:47
Microsoft geeft in dit artikel al aan dat je de aanpassing opnieuw zou moeten doen in de XP versie van de dll.
WORKAROUND
To work around this behavior, modify the updated Outlwvw.dll as desired.

Verwijderd

Topicstarter
OK bedankt, zal dus toch moeten editen ben ik bang. Vreemd want de link bovenaan naar de agenda werkt nog wel goed, die verwijst nog steeds goed naar de publieke map Agenda.

Dat MS KB artikel had ik ook gelezen maar ik was benieuwd wat voor wijzigingen er in Outlook zijn waardoor dit niet meer werkt, dus hoe de verwijzigen naar die publieke map dan wel moeten, en in hoeverre die verwijzingen dus anders zijn in XP dan in 2000. :?

Verwijderd

Topicstarter
De inhoud van mijn DLL (de outlook.htm pagina in de DLL)
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">

<html>
<head>
    <!-- OLKBASEHREF -->

<style>

a               {color:windowtext;}

body            {background-color:white; margin-top:0px;margin-right:0px;margin-left:0px;}


.CalendarSubjectLocation          {margin-bottom:6px; } 

.CalendarStartEnd         {margin-bottom:6px; margin-right:8px; } 

.InboxCount              {font-weight:bold;}     
                
.InboxCountZero              {font-weight:normal;}

.options            {color:darkblue;font-family:Tahoma;font-size:8pt;text-decoration:none;}

.date               {color:#FFE400; font-family:Tahoma;
                    font-size:8pt; }

.itemNormal      {font-size:8pt;    font-family:Tahoma; text-decoration:none;color:windowtext; } 

.times              {font-size:7pt; line-height:11pt; font-family:Tahoma; text-decoration:none; cursor:hand; color:gray;}

.PastTimes          {color:silver; line-height:11pt; font-size:7pt; 
                        text-decoration:none; cursor:hand; }
.SplitDayTimes         {color:#FFE400; font-size:7pt; line-height:11pt;  
                        text-decoration:none; cursor:hand; }
.allDayEventTimes      {color:#FFE400; line-height:11pt; font-size:7pt;
                        text-decoration:none; cursor:hand; }
.TskDone            {font-size:8pt;color:silver; text-decoration:line-through;} 

.itemImportant   {color:red} 

.dayHeaders      {font-family:Tahoma;font-size:8pt;font-weight:bold; letter-spacing:0.1em; text-transform:lowercase;
                   width:100%; 
                border-color:#211C31;
                   border-width:1px;
                border-bottom-style:solid;
                border-top-style:none;              border-right-style:none;
                border-left-style:none;
               color:#211C31;
               }

.SplitDay          {font-size:8pt; font-family:Tahoma; text-decoration:none;color:#211C31;}

.allDayEvent         {font-size:8pt;    font-family:Tahoma; text-decoration:none;color:#211C31;} 

.ApptPast          {color:silver; }   .InboxCount          {margin-left:13px;}

.Folder            {color:windowtext; font-family:Tahoma;font-size:8pt;text-decoration:none; }

.NextAppt           {font-family:Marlett;font-size:10pt;line-height:12pt;font-weight:bold;
                       text-decoration:none;color:indigo; }
                
.OnGoing            {font-family:Marlett;font-size:10pt;line-height:12pt;font-weight:bold;
                       text-decoration:none;color:indigo; }
                
.ImportanceIcon  {font-family:Symbol;font-size:11pt;font-weight:bold;
                       text-decoration:none;color:red; }

.LowPrioIcon         {font-family:Symbol;font-size:8pt; text-decoration:none;color:blue; }

TD          {font-family:tahoma; font-size:8pt;}

.component    {}
.componentLink    { color:#FFE400; font-size:12pt; font-family:arial; font-weight:bold; text-decoration:none; text-transform:lowercase; letter-spacing:0.3em; }
.borderBottom     {
                   border-color:#211C31;
                   border-width:.1em;
                   border-bottom-style:solid;
                   border-top-style:none;
                   border-right-style:none;
                   border-left-style:none;
            }
.borderRight         { border-color:#211C31; border-width:1px; border-right-style:solid; }

.button2       {
       
               position:relative;
            height:100%;
            text-decoration:none;
            color: white;
            font-weight: normal;
               font-size: 8pt;
            font-family:tahoma;
              border-width:.1em;
            border-style:solid;
            border-bottom-color:window;
            border-top-color:window;
            border-right-color:window;
            border-left-color:window;
        }
.button2over     {
            position:relative;
            height:100%;
            text-decoration:none;
            color: white;
               font-size: 8pt;
            font-family:tahoma;
            font-weight: normal;
               border-width:.1em;
               border-style:solid;
            border-bottom-color:windowtext;
            border-top-color:buttonface;
            border-right-color:windowtext;
            border-left-color:buttonface;

        }
.button2down     {
            position:relative;
            height:100%;
            font-family:tahoma;
            font-size:8pt;
            text-decoration:none;
            color: white;
            font-weight: normal;
            border-width:.1em;
            border-style:solid;
            border-bottom-color:buttonface;
            border-top-color:windowtext;
            border-right-color:buttonface;
            border-left-color:windowtext;

        }



</STYLE>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<title>Outlook Vandaag</title>

<!-- OUTLOOK OBJECTS FOR DATABINDING -->

<object ID="CalList" CLASSID="CLSID:0468C085-CA5B-11D0-AF08-00609797F0E0">
    <param NAME="Module" VALUE="Calendar">
    <param NAME="Path" VALUE="outlook:\\Openbare mappen\Alle openbare mappen\Agenda">
</object>


<OBJECT ID="TaskList" CLASSID="CLSID:0468C085-CA5B-11D0-AF08-00609797F0E0">
<PARAM NAME="Module" VALUE="Tasks"></OBJECT>

<OBJECT ID="MailList" CLASSID="CLSID:0468C085-CA5B-11D0-AF08-00609797F0E0">
<PARAM NAME="Module" VALUE="Inbox"></OBJECT>

</HEAD>
<BODY>

<!--
<TABLE border=0 cellPadding=0 cellSpacing=0 width=100% bgcolor=black>
  <TR>
    <td height=28 valign=top width=120px align=left>
       [img]clock.gif[/img] 
    </td>
    <TD height=28 noWrap valign=bottom>
       
    </TD>
    <TD height=28 noWrap  vAlign=bottom align=right>
        
       </TD>
    </TR>
</TABLE>
-->

<table border=0 cellspacing=0 cellpadding=0 width=100% height=100%>
<tr>
    <td bgcolor=#211C31 height=12px style="border-color:#211C31; border-width:1px; border-bottom-style:none; ">
        <table cellpadding=2 cellspacing=0 border=0 width=100%">
               <tr>
                <td>
                    <div style="margin-left:3px;">&nbsp;</div>
                </td>
                   <td id=CellCalHdr class=component child=CalendarHeader 
                    onclick="window.document.location.href='outlook://Openbare mappen/Alle openbare mappen/Agenda';window.event.returnValue=false;" 
                    valign=bottom width=100% nowrap>
                    &nbsp;
                    <a id=CalendarHeader href="outlook://Openbare mappen/Alle openbare mappen/Agenda" onclick="window.event.cancelBubble=true;" class=componentLink>TriCAT Agenda</a>
                </td>
                <td align=right nowrap>
                    <div id=dateScript class=date></div>
                </td>
            </tr>
        </table>
    </td>
    <td bgcolor=#211C31 
        style="border-color:#211C31;
            border-width:1px;
            border-bottom-style:none;
            border-top-style:none;
            border-right-style:solid;
            border-left-style:none;" >&nbsp;
    </td>
    
    <td bgcolor=#211C31>
        <table  cellpadding=2 cellspacing=0 width=100% border=0>
            <TR>
                <td nowrap>&nbsp;&nbsp;</td><TD id=TaskHdrCell class=component child=TasksHeader 
                    onclick="window.document.location.href='outlook:tasks';window.event.returnValue=false;"
                    vAlign=bottom width=100% nowrap>
                    <a id=TasksHeader href="outlook:tasks" onclick="window.event.cancelBubble=true;" class=componentLink>Taken</a>
                </TD>
            </tr>
        </table>
    </td>
</tr>
<tr>
    <!-- Calendar begins -->
    <td valign=top width=60%>
        
    <br>    
       <table id=CalendarLiveTable border=0 cellspacing=0 cellpadding=0 valign=top width=100% name="ItemCol" datasrc="#CalList" style="margin-left:5px; display:none;">
           <tr>
             
            <td nowrap valign=top width=10px align=left><div datafld="Next" DATAFORMATAS="html"></DIV></TD>
                   <td valign=top nowrap><DIV DATAFLD="StartEnd" DATAFORMATAS="html" class=CalendarStartEnd>&nbsp;</DIV></TD>
                                
                   <td valign=top width=100%><div datafld="SubjectLocation" DATAFORMATAS="html" class=CalendarSubjectLocation>&nbsp;</DIV></TD>
           
               </tr>
       </table>
    
        <TABLE id=CalendarStaticTable border=0 cellspacing=0 cellpadding=0 valign=top width=100% style="margin-left:5px;">
            <!-- RENSTATICTABLE~Calendar~Next=nowrap valign=top width=10px align=left~StartEnd=valign=top nowrap ~SubjectLocation=valign=top width=100%~ -->
        </table><p>
     
    </td>
    <td width=19px class=borderRight>&nbsp;</td>
     
     <!-- Mail begins -->
    <td valign=top>

        
       <br>
           <TABLE border=0 name="TaskCol" cellspacing=0 id=TasksLiveTable datasrc="#TaskList" width=95% style="margin-left:8px; display:none;">
               <TBODY>  
                <TR>
                    <TD width=1px><INPUT TYPE=checkbox DATAFORMATAS="Text" DATAFLD="Complete" height=22px></TD>
                   <TD width=1px><DIV DATAFLD="Importance" DATAFORMATAS="html" class=TaskImportance></DIV></TD>
                   <TD><DIV DATAFLD="Subject" DATAFORMATAS="html" class=TaskSubject></DIV></TD>    
                   </TR>
               </TBODY>
           </TABLE>

        <table border=0 id=TasksStaticTable cellspacing=0 width=95% style="margin-left:8px;">
            <!-- RENSTATICTABLE~Tasks~!Complete=width=20px height=24px~Importance=width=1px~Subject=~ -->
        </table>


    <p><table border=0 bgcolor=#211C31 cellpadding=2 cellspacing=0 width=100%>
           <TR>
          <td nowrap>&nbsp;&nbsp;</td><TD id=CellMail class=component child=MailHeader
            onclick="window.document.location.href='outlook:inbox';window.event.returnValue=false;" 
            vAlign=bottom width=100% nowrap>
              <a id=MailHeader href="outlook:inbox" onclick="window.event.cancelBubble=true;" class=componentLink>Berichten</a>
            </TD>
        </tr>
       </table>
       <br>
        <table border=0 width=90% name="MailCol" id=InboxLiveTable datasrc="#MailList" cellspacing=0 
                style="margin-left:12px; display:none;">
           <tbody>  
                <tr>
                    <td align=left valign=top class=borderBottom><DIV  DATAFLD="Name" DATAFORMATAS="html" class=Folder>AAAAAAAAAAAA</DIV></td>
                    <td nowrap valign=top class=borderBottom align=right><DIV DATAFLD="Count" DATAFORMATAS="html" class=InboxCount>9999</DIV></td>    
                </tr>
            </tbody>
        </table>

        <table id=InboxStaticTable border=0 width=90% cellspacing=0 style="margin-left:12px;">
            <!-- RENSTATICTABLE~Inbox~Name=align=left class=borderBottom valign=top~Count=class=borderBottom  align=right valign=top nowrap~ -->
        </table><p>&nbsp;



        </td>
    
      
  </tr>
  <tr>
    <td colspan=2 style="border-color:#211C31; border-width:1px; border-right-style:solid;">&nbsp;</td>
<td align=left valign=bottom style="border-color:#211C31; border-width:1px; border-top-style:solid;border-bottom-style:solid;">
    <table border=0 cellpadding=1 id=topbuttons1 height=20px>
       <tr>
         <td valign=top>
        <div id=OptionsCell class=button2 style="line-height:13pt;width:100%;"
               onmousedown="OptionsCell.className ='button2down';"
               onmouseup="OptionsCell.className='button2over';">
        
            <a id="GoToOptions"  class=options href="custom.htm"
            accesskey=u
                 onfocus="OptionsCell.className='button2over';"
            onblur="OptionsCell.className='button2';">
               &nbsp;O<U>u</U>tlook&nbsp;Vandaag&nbsp;aanpassen&nbsp;...&nbsp; 
             </a>
        
         </div>
        </td>
        <td width=4px>&nbsp;</td>
        </tr>
        </table>

<!-- <div id=OptionsCell style='margin-top:4px;margin-bottom:4px;margin-left:6px;'><a id="GoToOptions"  class=options tabindex=1 href="custom.htm">Customize Outlook Today...</a></div> -->

</td>
  </tr>
</table>

<!--
  ------------------------------------------------------------------------
                            SCRIPT
  ------------------------------------------------------------------------
-->

<!-- This script block runs after the window has finished loading 
    (and after the datasource controls have rendered themselves)
    Thus it should be used for frosting that does not effect the
    page's core functionality.  -->

    
<script defer for=window event=onload language="JavaScript">

///////////////////////////////////////////////////////////////////////////
// Displays the date in the banner

document.all.dateScript.innerHTML = window.external.GetDate();


/////////////////////////////////////////////////////////////////////
//Event Handling Functions

document.onmouseover = rollOn
document.onmouseout = rollOff

function rollOn() {
    var e;
    var child;
 
   e = window.event.srcElement;
   child = document.all[e.getAttribute("child", false)];    
    switch ( e.className )
    {
        case 'options':
        {
            OptionsCell.className = "button2over";
        }
        break;

        case 'itemNormal':
        {
            e.style.textDecorationUnderline = true;
        }
        break;

        case 'allDayEvent':
        {
            e.style.textDecorationUnderline = true;
        }
        break;
        case 'allDayEventTimes':
        {
            e.style.textDecorationUnderline = true;
        }
        break;
        case 'times':
        {
            e.style.textDecorationUnderline = true;
        }
        break;

        case 'ApptPast':
        {
            e.style.textDecorationUnderline = true;
        }
        break;

        case 'PastTimes':
        {
            e.style.textDecorationUnderline = true;
        }
        break;

        case 'itemImportant':
        {
            e.style.textDecorationUnderline = true;
        }
        break;

        case 'TskDone':
        {
            e.style.textDecorationUnderline = true;
        }
        break;
        case 'component':
        {
            child.style.textDecorationUnderline = true;
            
        }
        break;

        case 'componentLink':
        {
            e.style.textDecorationUnderline = true;
        }
        break;

        case 'link':
        {
            e.style.textDecorationUnderline = true;
        }
        break;
        case 'SplitDay':
        {
            e.style.textDecorationUnderline = true;
        }
        break;
        case 'SplitDayTimes':
        {
            e.style.textDecorationUnderline = true;
        }
        break;
        case 'Folder':
        {
            e.style.textDecorationUnderline = true;
        }
        break;
    }
    

    window.event.cancelBubble = true;
}

function rollOff() {
    var e;
    var child;
 
   e = window.event.srcElement;
   child = document.all[e.getAttribute("child", false)];     

    switch ( e.className )
    {
        case 'options':
        {
            OptionsCell.className = "button2";
        }
        break;

        case 'itemNormal':
        {
            e.style.textDecorationUnderline = false;
        }
        break;

        case 'allDayEvent':
        {
            e.style.textDecorationUnderline = false;
        }
        break;
        case 'allDayEventTimes':
        {
            e.style.textDecorationUnderline = false;
        }
        break;
        case 'times':
        {
            e.style.textDecorationUnderline = false;
        }
        break;

        case 'ApptPast':
        {
            e.style.textDecorationUnderline = false;
        }
        break;

        case 'PastTimes':
        {
            e.style.textDecorationUnderline = false;
        }
        break;

        case 'itemImportant':
        {
            e.style.textDecorationUnderline = false;
        }
        break;

        case 'TskDone':
        {
            e.style.textDecorationUnderline = false;
        }
        break;
        case 'component':
        {
            child.style.textDecorationUnderline = false;
        }
        break;
        case 'componentLink':
        {
            e.style.textDecorationUnderline = false;
        }
        break;

        case 'link':
        {
            e.style.textDecorationUnderline = false;
        }
        break;
        case 'SplitDay':
        {
            e.style.textDecorationUnderline = false;
        }
        break;
        case 'SplitDayTimes':
        {
            e.style.textDecorationUnderline = false;
        }
        break;
        case 'Folder':
        {
            e.style.textDecorationUnderline = false;
        }
        break;

    }
    
    window.event.cancelBubble = true;
}


</script>



</body>

</html>

Het gaat met name om de links naar de Openbare map Agenda, hoe moet ik dit in XP instellen dat dit goed gaat? :?

Verwijderd

Topicstarter
code:
1
2
3
4
<object ID="CalList" CLASSID="CLSID:0468C085-CA5B-11D0-AF08-00609797F0E0">
    <param NAME="Module" VALUE="Calendar">
    <param NAME="Path" VALUE="\\Openbare mappen\Alle openbare mappen\Agenda">
</object>

Deze param name="Path" regel zorgt er voor dat de listinhoud van de Agenda (op het Outlook Today scherm) niet naar de standaard agenda verwijst maar naar een alternatieve locatie, in mijn geval een Openbare map.

Zoals het hierboven stond werkte het perfect in Outlook 2000 maar niet in XP. Hoe is de syntax voor Outlook XP zodat deze goed verwijst naar de openbare map Agenda?

Verwijderd

Topicstarter
Werkt die Param name Value regel wel goed voor Outlook 2002 of zou er een hele andere syntax nodig zijn hiervoor? :?

Wat ik ook invul, hij lijkt zich er niks van aan te trekken. :(

Pas als ik die hele regel weghaal doet Outlook Today het weer goed, maar dan wijst hij weer naar m'n eigen Agenda en niet naar de publieke agenda.

Verwijderd

Topicstarter
Niemand een idee? Ik kom er niet echt uit. :(
Pagina: 1