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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
G

gerrybrennan

@gerrybrennan
About
Posts
18
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to test a webapp (c#) where is the executable for "gui runner"
    G gerrybrennan

    I have developed a web applicaiton in c# I have created a test case using c# but how do i run it with "gui runner" There is no executable ? Would appreciate any help or pointers to information source. Thank you in advance G.

    C# question csharp help tutorial

  • Develop a webapp for firefox only
    G gerrybrennan

    Hi I am thinking of developing an application for firefox only. Thus avoiding any multiple testings. There for is there a way of preventing running on ie and chrome opera etc Is this a common scenario ? G

    ASP.NET question

  • Browser back button -> force a logout
    G gerrybrennan

    Hi, I wish to implement the following behaviour: Once logged in to my webapplication if the user hits back button on the browser .... log them out. I am researching a possible solution for this using the "onbeforeunload" Javascript event. However how does do you request a logout initiated from the client side ? Any help would be appreciated

    ASP.NET javascript help question

  • masterpage -> Check if javascipt is enabled & cookies enabled.
    G gerrybrennan

    Hi I have a webapplication with many pages. I wish to put a check in the page_load of the masterloggedinpage to check if Javascript is enabled & cookies are enabled. Reason being i do not want to place a check on every page. If they are not enabled I will force a FormsAuthentication.SignOut() Can anyone help with some suggestions on how to perform this operation ? Thank you in advance.

    ASP.NET javascript help tutorial question

  • sqlserver apostrophe problem.
    G gerrybrennan

    Eventually got it ''''SI'''' Solved the problem. Many Thanks G.

    Database database help sharepoint

  • sqlserver apostrophe problem.
    G gerrybrennan

    Hi Bob, Thank you for your help. When I use single quotes i get an error Line 16: Incorrect syntax near 'SI'. G

    Database database help sharepoint

  • sqlserver apostrophe problem.
    G gerrybrennan

    Hi I have a stored procedure schemacreate.sql and below is a snippet. I am having problems with creating the below procedure. More specifically and TransType = "SI" Can any one help me with this. Thank you in advance. G

    SET ANSI_NULLS ON

    SET QUOTED_IDENTIFIER OFF

    IF NOT EXISTS (select * from sysobjects where id = object_id(N'[dbo].[TransCheckifCurrentExists]') AND type in (N'P', N'PC'))
    BEGIN
    EXEC dbo.sp_executesql @statement = N'
    CREATE PROCEDURE [dbo].[TransCheckifCurrentExists]

    as
    declare @SQLstr nvarchar(1000)
    declare @value int;

    set @SQLstr = ''select @value=count(*) from Trans where TransState = 1 and TransType = "SI" ''

    exec sp_executesql @SQLstr, N''@value int out'', @value out
    return

    '
    END

    Database database help sharepoint

  • 2 roles 3 master pages printing problem any suggestion ?
    G gerrybrennan

    Your suggestion is not what I am looking for sorry. Printing master pages using "print" stylesheets is more what I had in mind.

    ASP.NET question help

  • 2 roles 3 master pages printing problem any suggestion ?
    G gerrybrennan

    Hi I have 2 roles and three master pages set up Notloggedin userloggedin adminloggedin preinit working fine etc etc. When i am logged in as a user I need to print .. My print page needs to affiliate itself with a masterpage in hte aspx file But i do not want to print Master detail. How do I hide it ? Thanking you in advance. g

    ASP.NET question help

  • 2 master pages & 2 roles.
    G gerrybrennan

    Hi I have an application. There are two roles (admin & user) set up. I have 3 dynamic master pages. (admin & user & a master page for the state when notloggedin) There fore all my webforms have MasterPageFile="" set for either user.master admin.master notlogin.master On my login page i have a login control and when I login successfully i want to specify a destination url dynamically any help please

    ASP.NET help

  • Force logout.
    G gerrybrennan

    Hi I have a ASP.net application. I want to force a signout, if the user tries to access the same application in the following scenarios If Multiple tabs within a same browser or if multiple (same) browsers eg two applications of firefox. or if if multiple different (browsers) eg one firefox & one MS Explorer. Any help / advice apreciated in advance. G

    ASP.NET csharp asp-net help

  • Data Transfer / Multiple pages.
    G gerrybrennan

    Hi I have five pages. A B C D E; A calls B calls C. (via buttons on respective pages) also A calls D calls E. (via buttons on respective pages) A shows 2 values B1 & C1 (Both empty at start) A shows 2 more values D1 & E1 (Both empty at start) Notes. To get to C the user first presses Bbutton then when in B presses the CButton. When In C a user enters some data in text box C1 and returns to B. When In B C1 should be displayed. Also the user enters some more information B1 and returns to A When back at A, when page B returns A should update and show B1 & C1 To get to E the user first presses Dbutton then when in D presses the EButton. When In E a user enters some data in text box E1 and returns to D. When In D E1 should be displayed. Also the user enters some more information D1 and returns to A When back at A, when page D returns A should update and show B1 & C1 Could any seasoned professional please suggest how they would approach this. How do you exit a page and return to the calling page ? My preferred approach is using properties set/get. However how do you refresh relevent fields when a page returns? G.

    ASP.NET question announcement

  • MDI parent MDI child issue
    G gerrybrennan

    Ok

    C# help database docker

  • MDI parent MDI child issue
    G gerrybrennan

    Thank you also Henry Gerry.

    C# help database docker

  • MDI parent MDI child issue
    G gerrybrennan

    Hi ... Your solution does work. Many Thanks. Regards. Gerry.

    C# help database docker

  • MDI parent MDI child issue
    G gerrybrennan

    Yes -> Does this mean you wish to be able to create a new Dialog_A Thank you.

    C# help database docker

  • MDI parent MDI child issue
    G gerrybrennan

    Hi .. Yes call means -> Instanciate the form. Thank you.

    C# help database docker

  • MDI parent MDI child issue
    G gerrybrennan

    Hi I have an app with its main form MAIN which is an mdi container. One of the options from this MAIN is to show a database record in a new dialog (DIALOG_A). This new dialog is a mdi child and its mdiparent is MAIN. Now another operation that MAIN can perform is to create another new dialog (DIALOG_B). This also is a child mdi and its mdiparent is MAIN. However, from DIALOG_B .... i would like to call DIALOG_A also. I am getting problems however becuause Dialog_A is not an MDI container. Could some one suggest some help. Thank you very much.

    C# help database docker
  • Login

  • Don't have an account? Register

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