-
- smallbiz
by Cris on Sun May 11 15:35:00 CDT 2008
smallbiz Archive
- 14126 Replies
- 56307 Views
- Last post
- Exchange 2003
-
Hi i currently have Small Business Server 2000 and i was wondering would
it be possible to upgrade exchange 2003 and would their be any issues?
Awaiting your reply.
Daniel Simmons MCP
-
- Mcse
by Bill on Sun May 11 10:33:37 CDT 2008
Mcse Archive
- 10003 Replies
- 119345 Views
- Last post
-
- Crm
by FaizAmir on Mon May 12 03:03:01 CDT 2008
Crm Archive
- 30952 Replies
- 92511 Views
- Last post
- "Internal Error"
-
Most of the time when I run SQL Server reporting services I get the message
of an "Internal Error". What is the reason as I have no experience on
reporting services. How is this problem resolved.
-
- Drivers
by gallon on Mon May 12 04:27:30 CDT 2008
Drivers Archive
- 17517 Replies
- 71910 Views
- Last post
- serial ioctl problem
-
Hello,
I try to implement a serial driver with kdmf and
I've got a problem with the implementation of
IOCTL_SERIAL_GET_COMMSTATUS.
My device load good. But when I open a hyperterminal the
first input is read, the second do nothing and when the
third appears hyperterminal loop on IOCTL_SERIAL_GET_COMMSTATUS
and freeze.
You can found my code here : http://pastebin.com/m69f4c690
Thanks for your help.
--
Gallon sylvestre
OpenBSD fan | Rathaxes Core Developper
LSE researcher | kernel developer for Adeneo
http://devsyl.blogspot.com/ | www.rathaxes.org
-
- Framework
by blog004 on Mon May 12 02:16:14 CDT 2008
Framework Archive
- 24518 Replies
- 80852 Views
- Last post
- Patek Philippe Gondolo Gemma 18kt White Gold Diamond Rose Ladies
-
Patek Philippe Gondolo Gemma 18kt White Gold Diamond Rose Ladies Watch
4992G
Patek Philippe Gondolo Gemma 18kt White Gold Diamond Rose Ladies Watch
4992G Link :
http://patek-philippe.hotwatch.org/Patek-4992G.html
Patek Philippe Gondolo Gemma 18kt White Gold Diamond Rose Ladies Watch
4992G Information :
Brand : Patek Philippe Watches ( http://patek-philippe.hotwatch.or=
g/
)
Gender : Ladies
Code : Patek-4992G
Item Variations : 4992G
Movement : Manual
Bezel : 18kt White Gold
Case Material : 18kt White Gold
Case Diameter :
Dial Color : Mother-of-Pearl
Crystal : Scratch Resistant Sapphire
Clasp : Pink Satin
Water Resistant : 25m/80ft
Gemma model. 18kt white gold case. Rose pastel satin strap. Mother-of-
pearl dial with pav=E9d diamond center. Case set with 285 diamonds
(~2.04ct). Buckle set with 35 diamonds (~0.13ct). Case diameter
37.2mm. Hand-wound movement. Water resistant at 25 meters.
The Same Patek Philippe Watches Series :
Patek Philppe Gondolo 18kt White Gold Taupe Strap Diamond Ladies Watch
4868G :
http://patek-philippe.hotwatch.org/Patek-4868G.html
Patek Philippe Gondolo 18kt Rose Gold Pearl Bracelet Diamond Ladies
Watch 4868G-1R :
http://patek-philippe.hotwatch.org/Patek-4868G-1R.html
Patek Philippe Gondolo Serata 18kt White Gold Diamond Ladies Watch
4973G :
http://patek-philippe.hotwatch.org/Patek-4973G.html
Patek Philippe Gondolo 18kt Rose Gold Mens Watch 5109R :
http://patek-philippe.hotwatch.org/Patek-5109R.html
Patek Philippe Gondolo 18kt White Gold Mens Watch 5109G :
http://patek-philippe.hotwatch.org/Patek-5109G.html
Patek Philippe Gondolo 18kt Rose and White Gold Mens Watch 5099RG :
http://patek-philippe.hotwatch.org/Patek-5099RG.html
Patek Philippe Gondolo 18kt Yellow Gold Mens Watch 5109J :
http://patek-philippe.hotwatch.org/Patek-5109J.html
Patek Complicated Gondolo Calendario Yellow Gold Men's Watch 5135J :
http://patek-philippe.hotwatch.org/patek-gondolo-calendario-watch-5135J.html=
Patek Philippe Golden Ellipse 18kt Rose Gold Chocolate Mens Watch
3738-100R :
http://patek-philippe.hotwatch.org/Patek-3738-100R.html
Patek Philippe Golden Ellipse 18kt Yellow Gold Blue Mens Watch
3738-100J :
http://patek-philippe.hotwatch.org/Patek-3738-100J.html
-
- Ado
by GeorgeShui on Sun May 11 16:43:01 CDT 2008
Ado Archive
- 20553 Replies
- 79347 Views
- Last post
- A question on SQLBulkCopy.
-
The database I use is SQL Server 2005.
The user to login database is 'PG_TestUser', it has 'dbo' schema, and it has
datareader and datawriter permission.
I have .NET Code like this.
using (SqlBulkCopy bulkCopy = new SqlBulkCopy(dbConnStr,
SqlBulkCopyOptions.KeepIdentity | SqlBulkCopyOptions.UseInternalTransaction))
{
bulkCopy.DestinationTableName = tableName.Trim();
DataTable dt = CSVFileHelper.Read(dataFile);
bulkCopy.BulkCopyTimeout = Const.TIMEOUT;
bulkCopy.WriteToServer(dt);
}
But I have got the exception "Cannot find the object "SVSReportDetail"
because it does not exist or you do not have permissions"
The stackTrace is:
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception,
Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException
exception, Boolean breakConnection)
at
System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject
stateObj)
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior,
SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet
bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlBulkCopy.WriteToServerInternal()
at System.Data.SqlClient.SqlBulkCopy.WriteRowSourceToServer(Int32
columnCount)
at System.Data.SqlClient.SqlBulkCopy.WriteToServer(DataTable table,
DataRowState rowState)
at System.Data.SqlClient.SqlBulkCopy.WriteToServer(DataTable table)
at DBArchiveManager.AbstractImportPorcessor.BulkImport(String dbConnStr,
String tableName, FileInfo dataFile) in
D:\WebRoot\PGS\Tool\DBArchiveManager.root\DBArchiveManager\DBArchiveManager\Processor\ImportProcessor\AbstractImportPorcessor.cs:line 56
If I gave the 'PG_TestUser' the 'sysadmin' schema, the code works.
Also I have tried that the 'PG_TestUser' do have the select, delete, insert
permision.
AnyOne can help me?
Thank you for your help in advance.
-
- Asp
by Microsoft on Mon May 12 03:40:48 CDT 2008
Asp Archive
- 92525 Replies
- 311334 Views
- Last post
- Ajax Question
-
Hi,
I have a table inside and ajax update panel. I have a mouseup event which
is triggered from the cells in the table. However, then I do an ajax call
which updates the table, sometimes if I click in the cell, the parent elemtn
is missing. I guess this is simply the time at which the browser is still
updating itself after the refresh or its happeing during the table update.
Is there an event which I can use to upate a variable on my page to prevent
the actions on these click while the update is in progress.
Thanks.
-
- Compact
by Empi on Mon May 12 04:29:17 CDT 2008
Compact Archive
- 17913 Replies
- 63852 Views
- Last post
- Add control to another thread
-
Hi.
I just developed a class that suppose to replace the MessageBox.Show.
It create a panel with some additional elements (image/buttons/labels etc).
I'm looking for the best way to add the panel to the calling form.
I also have to handle different thread calls (thread I is calling me, and I
suppose to add the panel to the Gui thread).
What is the best and nicest way of doing this?
Thakns,
Empi
-
- Winforms
by engteng on Mon May 12 04:47:35 CDT 2008
Winforms Archive
- 20949 Replies
- 60668 Views
- Last post
-
- Dotnet
by vitaloo on Sun May 11 10:03:01 CDT 2008
Dotnet Archive
- 37167 Replies
- 112523 Views
- Last post
- Cant run WIndows Malicious TOol Remover
-
Everytime I try to run my Windows Malicious Tool Remover program it tells m
mrstub.exe is not a valid win32 application - when I go to MS help it says
they don't have a solution for this yet???? Any suggestions?
Thanks
Lynne
-
- Csharp
by susammamary on Mon May 12 05:01:44 CDT 2008
Csharp Archive
- 86343 Replies
- 349859 Views
- Last post
- online money making concepts
-
Hot news,would you like to be a millionaire,this is home based partime
job
http://lotofcashmakingathome.blogspot.com
-
- VB
by kronecker on Mon May 12 03:35:10 CDT 2008
VB Archive
- 59149 Replies
- 257681 Views
- Last post
- Is there anything vb.net cannot handle?
-
Are all the .net languages the same in their capabilities or should we
stick to c++ for the really sticky problems? Is it the language or the
underlying .net framework that is important?
K.
-
- Excel
by TKT-Tang on Mon May 12 04:50:00 CDT 2008
Excel Archive
- 30742 Replies
- 118175 Views
- Last post
- Re : Excel Wrap-Text with Relatively Loose Strings
-
Re : Excel Wrap-Text with Relatively Loose Strings
1. Enters an Excel worksheet (received from the wilderness).
2. In a fixed-width cell, there is an entry such as the following
string :-
ZSL - Postion
Indicator
HS - Hand switch / Push
Button
SS - Selector
switch
DCS - Distributed Control System SDV
- Shut down
Valve BDV -
Blow down Valve
LCP - Local control
Panel BSY -
Solenoid Valve
3. It was after discreetly manipulating the string (by adding
extraneous spaces between the given items, as shown), it rendered the
string to assemble as follows (See ?!) :-
ZSL - Postion Indicator
HS - Hand switch / Push Button
SS - Selector switch
DCS - Distributed Control System
SDV - Shut down Valve
BDV - Blow down Valve
LCP - Local control Panel
BSY - Solenoid Valve
3. Obviously, legibility of the string is at the mercy of the Cell-
width ; subsequent changes of the Cell-width will render the string
gibberish ...... and there, another repeated attempt to edit the
string by adding or deleting the superfluous spaces here and there to
rectify the situation.
4. One is indeed hapless to contemplate a correction by inserting Alt-
Enter between the given items and eliminating the spacing strings in-
situ.
5. Is there not an applicable formula to neutralize the exemplary
loose string such that the subsequent normalization of the string
would be an orderly assembly as shown above ?
6. Note that embedded in that item, Hand switch / Push Button, there
are 2 spaces located on both sides of the slash(/). And there, the
length of spacing strings would be 3 spaces and beyond.
7. Please share your experiences and recommend a solution.
8. Regards.
-
- Excel Misc
by Reba on Mon May 12 04:27:01 CDT 2008
Excel Misc Archive
- 134763 Replies
- 468563 Views
- Last post
- Lost Quattro Pro 10 tool bar
-
I am using Quattro Pro 10, all the tool bars have disappeared and I can not
figure out how to get them back. Help! Reba
-
- Excel Programming
by Chrisso on Mon May 12 05:03:50 CDT 2008
Excel Programming Archive
- 130137 Replies
- 490709 Views
- Last post
- Disable user forms being displayed in the VB editor??
-
Hi All
Whenever I have a user form in my project I am annoyed by the fact
that the VB editor constanly pop-ups during debug etc with the form
displayed instead of the code I have been working on and debugging.
Is there a way to tell Excel not to display user forms in this way?
Chrisso
-
- Worksheet
by GarysStudent on Mon May 12 04:23:00 CDT 2008
Worksheet Archive
- 84640 Replies
- 326557 Views
- Last post
-
- Exchange Admin
by Sean on Mon May 12 04:18:52 CDT 2008
Exchange Admin Archive
- 67238 Replies
- 243434 Views
- Last post
- Microsoft Exchange OLEDB was unable to get Admin token.
-
Hi,
When trying to starting the Exchange related services after a rebooting, The
server functioned abnormally. through the events viewer in Windows, I got a
event for EXOLEDB:
Microsoft Exchange OLEDB was unable to get Admin token.
Why? It's strange.
Thanks,
Sean
-
- Exchange Setup
by ismail on Sun May 11 11:50:00 CDT 2008
Exchange Setup Archive
- 21241 Replies
- 62156 Views
- Last post
- Disaster Recovery Unable to Reconnect Mailboxes
-
Hi!
I am working on Disaster Recovery for Exchange Server 2003 SP2 for test
purpose only.
I have a full backup of an Exchange database that I got from a server.
I managed to restore the database on *another* server that I set up for
recovery purpose (only the NetBIOS name and the NT domain name are the
same).
On this new machine, I can see the mailboxes under Exchange System Manager
in First Organization (Exchange) > Administrative Groups > First
Administrative Group > Servers > MYNEWSERVER > First Storage Group > Mailbox
Store (MYNEWSERVER) > Mailboxes
All the mailboxes are with the red check (disconnected).
Whenever I try to reconnect a mailbox, I can' t see any valid user account
(only stuff like Guest, IUSR_MYNEWSERVER, etc.).
My question is: is there a way to reconnect a maibox from that step (and for
example extract the mailbox content in a PST file) and if iyes, how do I do
that.
Help appreciated.
Nicolas
-
- Exchange Fox
by Dan on Sun May 11 10:51:56 CDT 2008
Exchange Fox Archive
- 11562 Replies
- 58251 Views
- Last post
- BROWSE PREFERENCE: How to add a new field
-
I've added a field to a table and don't see the field because the browse
clause uses PREFERENCE. How can I get the browse to show my new field?
Do I have to edit a record in the resource file to do this? What would I
change? Or would I just find the record in the resource file and delete
it?
This program works from FPW 2.6 to VFP 9. TIA.
Dan
-
- Frontpage Client
by dear on Mon May 12 03:28:23 CDT 2008
Frontpage Client Archive
- 50807 Replies
- 232040 Views
- Last post
- dear
-
you are all hero !!! you see clike here www.familyutility.blogspot.com
see soon
-
- Frontpage Programming
by Stefan on Mon May 12 03:03:49 CDT 2008
Frontpage Programming Archive
- 13595 Replies
- 48271 Views
- Last post
- Quick question
-
Hi All ;)
I have a quick question before I screw things up (I like to do that! LOL) I
want to move a sub-domain to be my main page
www.shop.butterflywisper.com
to
www.butterflywisper.com
now it doesn't matter what I lose on the main site, what needs to be saved
is already and I'll add at a later date, I just want the shop to be my main
page now and get rid of the sub-domain, I sure hope this makes sense. I did
save the sub domain to my hard drive are there any steps I need to be aware
of?
Thanks,
Beverlee
-
- ASP Server
by Oscar on Sat May 10 15:25:19 CDT 2008
ASP Server Archive
- 15080 Replies
- 65315 Views
- Last post
- Aloysius busted by Operation Sudden Fall
-
Law enforcement is now intercepting text messages,
as proven by Operation Sudden Fall in San Diego.
http://www.usdoj.gov/dea/pubs/states/newsrel/sd050608.html
http://www.signonsandiego.com/news/education/20080506-1338-bn06sdsu2.html
Don't let your personal SMS/text messages fall into
the wrong hands. Encrypt your messages with one
of these:
http://www.Xecure.net
http://www.CryptoSMS.org
http://www.CryptoSMS.com
http://www.CryptoGraf.com
http://www.Cop2p.com/encrypted_sms.html
http://www.FortressMail.net/fortress_sms.htm
http://groups.google.com/group/sms-salama/web/introduction
http://home.xtra.co.nz/hosts/sveltdesign/mindwarrior/pages.html?MobeCode
Be Safe, Be Encrypted, Fuck the Police!!
--
What will we tighten after Anastasia scores the awkward beach's beast?
-
- IIS
by David on Mon May 12 01:16:10 CDT 2008
IIS Archive
- 28321 Replies
- 100418 Views
- Last post
- redirecting http to https
-
Friends,
I have ssl set up for my default web site. if i browse http://mysite.com it
works but no ssl there but if i https://mysite.com ssl is there. how can i
direct all http to https to my site. i am using iis 6. Can anyone tell me the
step by step instruction?
thanks
VKS
--
VKS
-
- Entourage
by William on Sun May 11 16:07:44 CDT 2008
Entourage Archive
- 20965 Replies
- 67026 Views
- Last post
- Compatibility with Outlook 2003
-
Version: 2008
Operating System: Mac OS X 10.5 (Leopard)
My boss is using Outlook 2003 to share email and calendars amongst employees. I and one other employee have Entourage and I wonder if we have capability to sync up with the Outlook 2003 users??
thanks.
-
- Money
by Cal on Sun May 11 23:27:57 CDT 2008
Money Archive
- 26325 Replies
- 87682 Views
- Last post
- 2006 backup file to money essentials
-
I just download micro money essentials to my new computer, i tried to use my
back up file from my money 2006 on my laptop, it is not working it says it
does not use files from previous versions. help
-
- Messanger
by Robert on Sun May 11 22:04:31 CDT 2008
Messanger Archive
- 20287 Replies
- 61069 Views
- Last post
- Dropped Messages
-
Hi everyone,
I tried to Google this, but almost all the hits I got were about "drag and
drop messages"...ugh!
Lately, a friend and I (both using WLM 8.5) have begun to notice that a
couple of times a night, messages will just randomly not show up, even
though they were very clearly sent, and the sender receives no error message
of any kind. This doesn't seem to have happened to us until maybe a week or
two ago.
Does anybody know if there's something that might be causing this that I
should be looking for? The only thing I can think of is that I know he
upgraded from 8.1 to 8.5 around that same time, but I *think* the problem
preceded the upgrade.
Thoughts?
Thanks,
Rob
-
- PocketPC Developer
by Werner on Sun May 11 10:49:52 CDT 2008
PocketPC Developer Archive
- 22708 Replies
- 64250 Views
- Last post
- Which PPC version
-
I tried to get Adobe, Eigen Math, LME and Chess for PPC, but
the PPC02 computer says they aren't comaptible.
Is it PPC 2002 (machine) vs newer version (software)?
How do I look for software that works with the older?
-
- Powerpoint
by john on Mon May 12 04:04:00 CDT 2008
Powerpoint Archive
- 49691 Replies
- 182316 Views
- Last post
- Add a border to a slide with VBA
-
Hi,
Is there a simple way to add a rectangular border to a slide with VBA code?
Is this done with AddShape?
I would appreciate any help.
Anthony
--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.aspx/powerpoint/200805/1
-
- Project
by arka on Sun May 11 20:20:00 CDT 2008
Project Archive
- 21295 Replies
- 76692 Views
- Last post
- Removing password-protected
-
I created a password-protected for both read and write ability but now I want
to remove them all. I tried going to Tools > General Options > and removing
the **** for both read and write > Save > Close > reopen but it still ask for
the passwords. I want to remove all passwords how to? please help thanks.
-
- Publisher
by Chris on Mon May 12 04:54:01 CDT 2008
Publisher Archive
- 17399 Replies
- 72689 Views
- Last post
- Can I set up Publisher to print Filofax pages?
-
I know that Filofax gives a CD to use to print off your address book, but I
don't know how to mail merge that with stuff I've created in Publisher. I
don't think it's possible. So I was wondering if there's a template within
Publisher, or whether I need to make one up myself - surely there's an easier
way?!!
-
- VBscripts
by blog004 on Mon May 12 02:16:37 CDT 2008
VBscripts Archive
- 20785 Replies
- 74145 Views
- Last post
- Corum Bubble XL Steel Blue Mens Watch 163-250-20-0F03-FB30R
-
Corum Bubble XL Steel Blue Mens Watch 163-250-20-0F03-FB30R
Corum Bubble XL Steel Blue Mens Watch 163-250-20-0F03-FB30R Link :
http://corum.hotwatch.org/Corum-Mens-Watch-163-250-20-0F03-FB30R.html
Corum Bubble XL Steel Blue Mens Watch 163-250-20-0F03-FB30R
Information :
Brand : Corum Watches ( http://corum.hotwatch.org/ )
Gender : Mens
Code : Corum-Mens-Watch-163-250-20-0F03-FB30R
Item Variations : 163-250-20-0F03-FB30R, 163250200F03FB30R,
Corum-163-250-20-0F03-FB30R
Movement : Quartz
Bezel : Fixed
Case Material : Stainless Steel
Case Diameter : 45mm
Dial Color : Blue
Crystal : Scratch Resistant Sapphire
Clasp : Blue Leather
Water Resistant : 50m/165ft
Stainless Steel Case. Blue Leather Coated Rubber Strap. Blue Dial.
Fixed Bezel. Push Button Deployment Clasp. Domed Scratch Resistant
Sapphire Crystal. Date Displays At 6 O'clock Position. Screw-down
Crown. Case Diameter 45mm. Case Thickness 20mm. Quartz Movement. Water
Resistant At 50 meters (165 feet).
The Same Corum Watches Series :
Corum Bubble XL Steel Black Mens Watch 163-250-20-0F01-FM30R :
http://corum.hotwatch.org/Corum-Mens-Watch-163-250-20-0F01-FM30R.html
Corum Bubble XL Steel Black Mens Watch 163-250-20-0F01-EB30R :
http://corum.hotwatch.org/Corum-Mens-Watch-163-250-20-0F01-EB30R.html
Corum Bubble XL Steel Blue Mens Watch 163-150-20-B100-FB30R :
http://corum.hotwatch.org/Corum-Mens-Watch-163-150-20-B100-FB30R.html
Corum Bubble XL Steel White Mens Watch 163-150-20-B100-EB30R :
http://corum.hotwatch.org/Corum-Mens-Watch-163-150-20-B100-EB30R.html
Corum Bubble XL Steel Red Swiss Flag Unisex Watch 163-150-20-0F06-
FR35R :
http://corum.hotwatch.org/Corum-Unisex-Watch-163-150-20-0F06-FR35R.html
Corum Bubble XL Steel Red Unisex Watch 163-150-20-0F06-EB30R :
http://corum.hotwatch.org/Corum-Unisex-Watch-163-150-20-0F06-EB30R.html
Corum Bubble XL Steel Orange Mens Watch 163-150-20-0F04-FO30R :
http://corum.hotwatch.org/Corum-Mens-Watch-163-150-20-0F04-FO30R.html
Corum Bubble XL Steel Blue Mens Watch 163-150-20-0F03-FB30R :
http://corum.hotwatch.org/Corum-Mens-Watch-163-150-20-0F03-FB30R.html
Corum Bubble XL Steel Brown Mens Watch 163-150-20-0F02-EB30R :
http://corum.hotwatch.org/Corum-Mens-Watch-163-150-20-0F02-EB30R.html
Corum Bubble XL Steel Orange Tiger Mens Watch 082-181-20-F732-TIGR :
http://corum.hotwatch.org/Corum-Mens-Watch-082-181-20-F732-TIGR.html
-
- Security
by Anthony on Mon May 12 03:24:05 CDT 2008
Security Archive
- 16502 Replies
- 67432 Views
- Last post
- Bypassing domain and OU GPO settings using the Security Configuration and Analysis MMC
-
Gurus,
This is a re-post of a message sent solely to the group_policy NG. I'm
copying a wider audience here to engage some discussions amongst you IT
Security Managers/security consultants out there.
Running Windows Server 2003 SP2 in a single Active Directory domain (Lab
environment). I am experimenting with the Group Policy Security database,
secedit.sdb If you run the Setup Security INF in the Security Configuration
and Analysis Snapin against this database, you will bring your system back
Windows security default settings and it will remain that way until the next
Group Policy Refresh interval. You must be an admin on the machine to do
this. My question is, isn't this a security risk in it's own right,
bypassing domain and OU GPO settings? A respondent in the Group Policy
newsgroup (Marcin) stated that if my sole goal is to prevent use of Security
Configuration and Analysis, I have ability to restrict access to arbitrarily
selected snap-ins via GPO. In addition I could restrict ability to execute
Secedit (which one can do by following
http://support.microsoft.com/kb/323525). While I agree this is a major
technical challenge, has anyone else in these other NGs I've copied on this
message ever worried about this? Or should I just let it pass?
--
Spin
-
- Portal Server
by Mike on Sat May 10 02:07:08 CDT 2008
Portal Server Archive
- 28702 Replies
- 74447 Views
- Last post
- Show page numbers on views...
-
Hi,
I am relatively new to Sharepoint and I am trying to find out how to
put page numbers on a view. It says 1 to 100 but that is items and
doesn't tell me how many pages of 100 items I have. It would be nice
to be able to jump to a certain page too.
Can anyone help?
Tim
-
- Windows Services
by Mike on Sun May 11 23:21:04 CDT 2008
Windows Services Archive
- 19980 Replies
- 62028 Views
- Last post
- replication between two WSS farms
-
Given the customerâ??s requirement of:
1.) High Availability
2.) Maximization of utilization of servers and infrastructure investement in
site # 1 and site # 2
The customer would want to implement WSS server farms in two separate
locations (site # 1 and # 2). Customer would want to have each WSS farm run
independently (in contrast to a geographically dispersed server farm) and
content is to be synchronized via SQL peer to peer replication.
More detailed information can be found here:
http://cid-eb1172b1d868f5bb.skydrive.live.com/self.aspx/technet
Customer is willing to take responsibility for:
a.) DNS Round Robin
b.) Network/Replication latency between the two sites
I would like to ask if this is a supported configuration. If so, what
considerations to look out/provision for (e.g. conflict resolution, etc).
Thank you in advance,
Dindo Fernando
Data Platform Technology Specialist
Email: dindo.fernando@microsoft.com
Office: +63.2.8608614
Fax: +63.2.8608990
Mobile: +63.917.8940019; +63.922.8124217
MSN ID: frrfernando@hotmail.com
-
- SQL Server Programming
by rajdaksha on Mon May 12 05:01:00 CDT 2008
SQL Server Programming Archive
- 67779 Replies
- 317446 Views
- Last post
-
- Reporting Svcs
by Puru on Sun May 11 23:59:07 CDT 2008
Reporting Svcs Archive
- 30051 Replies
- 77370 Views
- Last post
- Reporting servcie failure during setup database connection
-
we have setup up reporting server and while configuring database
Database setup > domain account is provided
It fails here @ grant rights. with following error
------------------------------------------------------------------------------------------------
w3wp!library!c!5/12/2008-00:25:22:: e ERROR: Throwing
Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerDatabaseLogonFailedException:
The report server cannot open a connection to the report server database. The
logon failed., ;
Info:
Microsoft.ReportingServices.Diagnostics.Utilities.ReportServerDatabaseLogonFailedException:
The report server cannot open a connection to the report server database. The
logon failed. ---> System.Runtime.InteropServices.COMException (0x80070569):
Logon failure: the user has not been granted the requested logon type at this
computer. (Exception from HRESULT: 0x80070569)
at
System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32
errorCode, IntPtr errorInfo)
at RSRemoteRpcClient.RemoteLogon.GetRemoteImpToken(String
pRPCEndpointName, Int32 type, Guid dataSourceId, String pUserName, String
pDomain, String pPassword)
at
Microsoft.ReportingServices.Library.ConnectionConfig.GetImpersonationUser(String userName, String domain, String userPwd)
--- End of inner exception stack trace ---
w3wp!webserver!a!5/12/2008-00:46:21:: i INFO: Reporting Web Server stoppe
------------------------------------------------------------------------------------------------------
Any help would be appreciated.
i also get following error in security log.
------------------------------------------------------------------------------------------------
Event Type: Failure Audit
Event Source: Security
Event Category: Logon/Logoff
Event ID: 534
Date: 5/12/2008
Time: 4:10:20 AM
User: NT AUTHORITY\SYSTEM
Computer: FM1MESQUITE
Description:
Logon Failure:
Reason: The user has not been granted the requested
logon type at this machine
User Name: sys_isppmsrs
Domain: ED
Logon Type: 2
Logon Process: Advapi
Authentication Package: Negotiate
Workstation Name: FM1MESQUITE
Caller User Name: sys_isppmsrs
Caller Domain: ED
Caller Logon ID: (0x0,0x841BB6A)
Caller Process ID: 3872
Transited Services: -
Source Network Address: -
Source Port: -
For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
__________________________________________________________________-
thank YOu in Advance
-
- SQL Server
by pinhead on Mon May 12 04:27:10 CDT 2008
SQL Server Archive
- 50913 Replies
- 189342 Views
- Last post
- SQL2000 and SQL2005
-
Both of my machines run Windows2003 R2 server.
At present this box has SQL2000 standard edition and is also a web-
server.
Question1:
Is it possible to have SQL2005 (or 2008 as and when it's released)
installed at the same time?
Question2:
We have another SQL2000 server (standalone machine - lets call it box
X) which replicates data (transactional replication) to another server
(box Y). Can box 'X' replicate to box 'Y' if box X runs SQL2000 and
box Y runs SQL2005
-
- Visual Basic
by davide77 on Mon May 12 05:00:24 CDT 2008
Visual Basic Archive
- 32307 Replies
- 200235 Views
- Last post
- DHTMLEdit object links in Vb6 with IE 7
-
hi,
I made a software who has a simple webpage loaded in DHTMLEdit control
with some links.
My problem is that the links dont work with IE 7 but they perfectly
work on IE6.
Can u give me some suggestions?
Thank u in advance.
Davide
-
- VC
by blog004 on Mon May 12 02:15:46 CDT 2008
VC Archive
- 15573 Replies
- 74534 Views
- Last post
- Technomarine KRA Watches - Technomarine Watches Minimum Price
-
Technomarine KRA Watches - Technomarine Watches Minimum Price
Hot Watch : http://www.hotwatch.org
Technomarine Watches : http://technomarine.hotwatch.org/
Technomarine KRA Watches : http://technomarine.hotwatch.org/Technomarine-KRA.html
Technomarine KRA Watches All Products :
Technomarine KRA Unisex Watch KRA02 :
http://technomarine.hotwatch.org/technomarine-kra02.html
Technomarine KRA Unisex Watch KRA05 :
http://technomarine.hotwatch.org/Technomarine-KRA-Unisex-Watch-KRA05.html
The Same Technomarine Watches Series :
Technomarine Abyss Watches : http://technomarine.hotwatch.org/Technomarine-Abyss.html
Technomarine Alpha Watches : http://technomarine.hotwatch.org/Technomarine-Alpha.html
Technomarine Apnea Watches : http://technomarine.hotwatch.org/Technomarine-Apnea.html
Technomarine Butterfly Watches : http://technomarine.hotwatch.org/Technomarine-Butterfly.html
Technomarine Cruise Watches : http://technomarine.hotwatch.org/Technomarine-Cruise.html
Technomarine Hummer Watches : http://technomarine.hotwatch.org/Technomarine-Hummer.html
Technomarine Lady Sport Watches : http://technomarine.hotwatch.org/Technomarine-Lady-Sport.html
Technomarine Jubilee Watches : http://technomarine.hotwatch.org/Technomarine-Jubilee.html
Technomarine KRA Watches : http://technomarine.hotwatch.org/Technomarine-KRA.html
Technomarine Maori Watches : http://technomarine.hotwatch.org/Technomarine-Maori.html
Technomarine Raft Watches : http://technomarine.hotwatch.org/Technomarine-Raft.html
Technomarine Redsquare Watches : http://technomarine.hotwatch.org/Technomarine-Redsquare.html
Technomarine Reef Watches : http://technomarine.hotwatch.org/Technomarine-Reef.html
Technomarine Squale Watches : http://technomarine.hotwatch.org/Technomarine-Squale.html
Technomarine TechnoDiamond Watches : http://technomarine.hotwatch.org/Technomarine-TechnoDiamond.html
Technomarine TechnoSquare Watches : http://technomarine.hotwatch.org/Technomarine-TechnoSquare.html
Technomarine TMC Watches : http://technomarine.hotwatch.org/Technomarine-TMC.html
Technomarine TMY Ceramique Watches : http://technomarine.hotwatch.org/Technomarine-TMY-Ceramique.html
Technomarine TMY Watches : http://technomarine.hotwatch.org/Technomarine-TMY.html
Technomarine TS Magnum Watches : http://technomarine.hotwatch.org/Technomarine-TS-Magnum.html
Technomarine US Navy Watches : http://technomarine.hotwatch.org/Technomarine-US-Navy.html
Technomarine XS Magnum Watches : http://technomarine.hotwatch.org/Technomarine-XS-Magnum.html
Just Added and Hard to Find Technomarine Watches :
http://technomarine.hotwatch.org/Just-Added-and-Hard-to-Find-Technomarine.html
-
- MFC
by Simon on Mon May 12 04:39:38 CDT 2008
MFC Archive
- 31458 Replies
- 139693 Views
- Last post
- Anyone know how to force screen update after each GDI call - for debugging?
-
When I'm debugging GDI calls it would be very helpful if every time my code
called a GDI function (e.g. Polyline) I could see immediately what effect it
has on the screen. Normally what happens is that you step over that line of
code and see nothing on the screen. In fact normally it isn't until I have
executed the entire paint function that I see the results. But by then it's
too late to determine which line of code did what.
I can understand why this is. But for debugging purposes, it would be very
handy if I could get the screen to update after each GDI call. Does anyone
know of any way of doing this? I use VC++ 6.
TIA
Simon