Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. captainPlus

    Optimum FTP upload block size.

    Hello all, I've a code, uploading to FTP via FtpWebRequest. I read from a BinaryStream and write it to FTP stream. What I ask is what is the optimum size of read/write blocks to FTP? I know this may differ depending on client speed/server speed/network status etc. But in your experience, which...
  2. captainPlus

    Page Count Problem

    Hello, I'm new to SSRS and rdl. I've an rdl file. Everything is well with it while displaying/printing either thru Reporting Services or .NET's ReportViewer control. But when I export to pdf I get more pages then needed. For example I see a report with 1 page in Reporting Services, print...
  3. captainPlus

    BackgroundWorker component problem

    Thanks whosrdaddy, Silly mistake ha? :) Best regards, Ali
  4. captainPlus

    Creatig ellipse on a picturebox and making ellipse a link

    Hello, The rows which has less than 4 tabs will throw exception. Because the array will not have items at 3rd 4th indexes. For example first row. When you split this row from \t, you'll get an array with a single element. And when you want to access the 3rd index, you'll get error. I suggest...
  5. captainPlus

    BackgroundWorker component problem

    Here is the part of code... bwTestConnection is the BackgroundWorker object. After clicking btnTestConnection, bwTestConnection_DoWork succesfully starts. And after completion of async job, RunWorkerCompleted triggers more than once after the first click... Thanks; private bool...
  6. captainPlus

    BackgroundWorker component problem

    Hi, I'm using BackgroundWorker component for a time-consuming operation. Everything works fine, and the job is done correctly. But my problem is, BackgroundWorker component's RunWorkerCompleted event is fired several times. When I use BackgroundWorker component for the first time, it only...
  7. captainPlus

    Difference between Baseline and project version

    Hi everyone, I want to learn what is the exact difference between "project baselines" and "project versions"? I'm using Project for a very long time but not in enterprise mode. We've just upgraded to enterprise features. I used to save baselines to compare project's actual status to planned...
  8. captainPlus

    Project Server connection problem

    Ok, one more issue resolved... Problem with OLAP Cube build is gone away. The problem was DSO (Decision Support Objects). In my case, my project server and database are placed on two separate servers. Database server has Microsoft Analysis Services (also includes DSO) installed. But then I...
  9. captainPlus

    Seting up a day to look like a non working day

    Hi, You can try making that day a non-working day from enterprise calendar. Project will show this day highlighted, but the day will be a nonworking day. But if you open each resources' calendars separately (who works on that day) and set that day as non-default working time and set your usual...
  10. captainPlus

    Project Server connection problem

    Project Server Connector Service" errors resolved. This problem occur because of "Internet Explorer Enhanced Secuity" thing. After removing this from Add/remove windows components, now the service is running ok... Hope this helps too. I'll keep on posting as soon as I find solutions. Because...
  11. captainPlus

    Project Server connection problem

    Project Server connection problem solved. It's not related with the other issues. It was just a localization problem. My computer uses Turkish locale and the server is English locale. Creating the registry key: [HKEY_CURRENT_USER\Software\Microsoft\Office\MS Project\Codepages\1254\1252] on...
  12. captainPlus

    Get logged user while anonymous access set to on

    Hello, I'm trying to get the currently logged on user in an ASP.NET application. But I need both "anonymous access" and "nt authorization". When anonymous access set to on, none of methods to get user identity works. They either return IUSR_XX or ASPNET. I need both authentication method to...
  13. captainPlus

    Project Admins and Resource status

    Hello, I've two questions about project management... We're using project server and project pro 2003... 1. When I assign two resources to a task, and one resource increase it's work status %100, the task's status changes to %50. This is ok. But what I want is to see the statuses of resources'...
  14. captainPlus

    Project Server connection problem

    Hi, I've made a fresh Project Server 2003 install for my company. Performed everything step by step during installation. My Project Server 2003 server and SQL Server server are not the same. But (nearly) everything seems to be working fine after install. Users on Project Server are...
  15. captainPlus

    LDAP Server How To

    Hello Jason, Thanks for response. But I do not want to access an LDAP server. I want to write an LDAP server to be accessed :) regards,
  16. captainPlus

    LDAP Server How To

    Hello everyone, Is there a free C# library to write an LDAP server? I've a contact list stored in SQLServer. I need to code a platform in C# for users to query this db using ldap. In short words, how can I code an "ldap server" (I'm not sure if it's correct to say ldap server for this)? Do you...
  17. captainPlus

    Delete Directory Session Problem

    Hello everyone, In one of my projects (C# 2005), users create/delete files/folders through management screens. No problem with creation. But when I delete a folder (either manually or programmatically), session restarts... The parent folder that holds the folders created/deleted is a sibling of...
  18. captainPlus

    Adding columns to an existing table

    As a clue, to get this little hints from SQL Server itself, open Enterprise Manager, Design the table as you want but do not save it. Then click "Save change script" button from toolbar while you're in design mode. This button is the third button from left. SQLServer will give you the SQL of...
  19. captainPlus

    Adding columns to an existing table

    Hi, I advise you to use SQL for this instead of an sp. ALTER TABLE TEST ADD XXX nvarchar(100) In this syntax, TEST is the table name, XXX is the column name to add nvarchar(100) is the type of column. This will work in 2000&2005 flawlessly. Hope this helps, ali
  20. captainPlus

    Office 2007

    Hi MagicCotage, I've lived exactly the same issue with Office 2007. I don't know if there is an easier version but I've solved this issue by uninstalling/re-installing Office 2007. Best Regards, Ali

Part and Inventory Search

Back
Top