Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

S Brozius

@S Brozius
About
Posts
48
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Hardware questions in the Lounge
    S S Brozius

    Answer provided as best I can ;)

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge hardware question lounge

  • SP Exams
    S S Brozius

    As far as I know, there are two books available, with which you have can get most of the topic covered: Inside Microsoft Windows Sharepoint Services 3.0 - ISBN-13: 978-0-7356-2320-0 Inside Microsoft Office Sharepoint Server 2007 - ISBN-13: 978-0-7356-2368-2 Additionally, you should be prepared to scavenge the internet for some additional information. Get the Exam Topic-list from microsoft, and tick off what is covered in the mentioned books, get the additional stuff from the internet and/or hands-on practice.

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    SharePoint sharepoint algorithms help

  • Climate chief, recent warming not statisticaly significant.
    S S Brozius

    See? Flames coming out of everyone's erm... arses...

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge question announcement lounge

  • Climate chief, recent warming not statisticaly significant.
    S S Brozius

    There's a thingy in the posting guidelines, which are right on top of the page : Posting Guidelines: The Lounge is rated PG. If you're about to post something you wouldn't want your kid sister to read then don't post it. No flame wars, no abusive conduct and please don't post ads. GW is a topic that invites flame wars (no pun intended here), and thus is no topic for the lounge.

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge question announcement lounge

  • That's right Google. You better run.
    S S Brozius

    That's why, as far as I know, they have to get clearance for making pictures for street-view from every country. Otherwise, they can't/won't add those countries to street-view. So, if you have street-view possibilities on google map for a certain country, the making of pictures in public is allowed by law.

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge

  • Stupid of the Day
    S S Brozius

    It can be done, but has to be set-up on the device you're connected to. Most times, admins do not want to do that, since that also creates a 'leak' into the network, where access to your computer from a hacker, also means access to the corporate network for that same hacker. I know I can still browse the 'net over my DSL-line when connected to VPN.... (Of course, I was network administrator when we started using VPN and thus I set it up, with this exception for the IT-department :P)

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge sysadmin

  • Outlook rules question
    S S Brozius

    Hey Griff, could you please change that icon from answer to any other icon? Bit misleading here, isn't it..?

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge question collaboration help

  • CCC
    S S Brozius

    :) Would've been a nice hint, though...

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge regex

  • CCC
    S S Brozius

    Hey Dave, if this is the answer... have you popped the question to your girlfriend? (Or did I miss you're already married to her...)

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge regex

  • DateTimeControl inside an UpdatePanel
    S S Brozius

    I've managed to get a little bit further... In my webpart, which uses the template I made for showing and selecting the date, I have two ways to edit an entry. 1) Through details and then edit from a MenuItemTemplate 2) Directly edit through a MenuItemTemplate Using the first method gives me errors (error: Object expected). Using the second method works flawless. The template is called as a template for a templatefield in a detailsview. Anyone have any idea?

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    SharePoint design docker help tutorial question

  • Sharepoint Development
    S S Brozius

    First, I'd get to know the language you are going to develop in (VB.NET or C#) and then ASP.NET, since WSS builds on ASP.NET. That is, if you are going to develop applications for SharePoint. Then I think you're ready to start developing for SharePoint.

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    SharePoint sharepoint visual-studio help tutorial

  • DateTimeControl inside an UpdatePanel
    S S Brozius

    I'm trying to include a DateTimeControl inside an UpdatePanel. However, IE gives 'Error on page' in the lower-left corner of the browser-screen when I click on the calendar-icon, and no calendar for date-selection appears... :( When I'm not using the UpdatePanel, everything works as intended... The DateTimeControl is used in a TemplateField. Initialization-code is the following: public void InstantiateIn(Control container) { this.calendar = new DateTimeControl(); this.calendar.ShowWeekNumber = true; if (this.date != null) { this.calendar.SelectedDate = Convert.ToDateTime(date); } this.calendar.AutoPostBack = true; this.calendar.DateOnly = true; this.calendar.HoursMode24 = true; this.calendar.LocaleId = 1043; this.calendar.Enabled = this.editMode; this.calendar.ID = ((System.Web.UI.WebControls.TemplateField)((System.Web.UI.WebControls.DataControlFieldCell)(container)).ContainingField).SortExpression + "DateTimeControl"; container.Controls.Add(calendar); } date is a nullable DateTime-object editMode is a boolean (as is obvious from code) Does anyone have any clue as if and how to get this to work inside an UpdatePanel?

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    SharePoint design docker help tutorial question

  • Just need to copy DVD... a bunch of them...
    S S Brozius

    has got my vote :)

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge question

  • Grrrr...
    S S Brozius

    Well, I can only speak for myself, but if there's anything you need help with (erm... remote help, that is)... We are in totally different timezones, but you never know... CP is your friendly neighbourhood... Or so I'm told.. ;P

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge help sales question lounge

  • Naming a file on the server in Multiuser environment.
    S S Brozius

    How about naming the file with the username as a part of it? Or possibly a date-time-string such as 'yyyyMMddHHmmss' or a combination of the two?

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    ASP.NET sysadmin workspace

  • Sqlite + TEXT
    S S Brozius

    I think you mean how uch data such a column can hold. As found by using Google : http://www.sqlite.org/limits.html[^] For your info, the google search (sqlite max text) gave me this hit in a thread referred to on the first result-page...

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    C# sqlite question

  • Things I Learnt This Weekend
    S S Brozius

    1. Do not step off of your bike the same way you would normally when it is not slippery 2. How to repair my bike 3. How a headwound is glued

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge html

  • A moral dilemma for you...
    S S Brozius

    I know I would hold it for at least a couple of days to get some interest from it in a savings-account... And meanwhile just wait to see if my employer notices and only then take action... unless they wait too long... then I might become jumpy and contact them myself...

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge csharp php wpf com tools

  • the Registry and DOS commands
    S S Brozius

    For reading the registry, Windows XP and up provide the DOS-tool REG.EXE, with which you can read AND write registry-keys.

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    C# database tutorial sql-server sysadmin windows-admin

  • New Devbox
    S S Brozius

    sweet :)

    Nah... What's up, Doc? CCC's solved : 1 If a bus station is where a bus stops, and a train station is where a train stops, why do I have a work station on my desk?

    The Lounge csharp asp-net database
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups