My Format Binding is empty

I am using WIN XP/ VBASP
I install DW CS4 while developing my pages I have notice after adding a recordset to the page I tried to change a currency filed in the Binding/Format
check this image and see what I am talking about

I even reinstall DWCS4 all over again, disabled Development Tool Box and still with no luck
I think since CS3 and now CS4 there is a lot of unsolved issues for developers whom are still using ASP/VB, it looks like Adobe is catering more and more towards ColdFusion, Java, Ajax, .Net, and forgetting us ASP Classic, its a shame because there is large group of developer who are still using ASP/VB and I am one of them

Similar Messages

  • Report Scheduling Excel/PDF format Parameters field empty

    Hi all,
    i have a question on report scheduling.
    I'm scheduled a report with prompt and will send out the report as Excel format through SMTP emailing.
    When i look on the History of the report, it shows the instance, but for the field Parameters it appear empty. I tried to reschedule the report with Webi format and check on the Parameters field in the History, and the Parameters field for Webi format is showing the prompt value i set.
    The link below show the picture :
    [http://i642.photobucket.com/albums/uu144/stevesiow/BO.jpg|http://i642.photobucket.com/albums/uu144/stevesiow/BO.jpg]
    i am curious the different of paramenters field showing for different format of file emailing out.
    Thanks for advise.
    Regards,
    Steve

    Steve,
    Seeing this in .Net 3.1 InfoView.  I fired up JAVA InfoView and the parameters all show up.  Another bug in 3.1.

  • How can I bind a empty cell to a Drop Down List if I get the items of...

    the List from a DataProvider?
    I need this for a Search-Site where I also can choose the option "find all" at the different DD-Lists...

    What I do is, instead of binding the DropDown directly to the DataProvider, I bind it to a function inside my BackBean who returns the Option[] required, and in that function I load the items from the DB plus whatever else I want (in our case we add a blank cell as the first and selected option).
    Here's an example:
    public Option[] getUserItems () {
         return ( loadDDFromDB ( "id_user", tb_userDataProvider ) );
    public static Option[] loadDDFromDB (String sRowID, AbstractTableDataProvider CurrentDataProvider) {
              Option ArrayOptions[] = new Option[0];
              if ( CurrentDataProvider.cursorFirst () ) {
                   ArrayList ALUnsorted = new ArrayList ();
                   do {
                        if ( CurrentDataProvider.getValue (sRowID) != null )
                             ALUnsorted.add ( CurrentDataProvider.getValue (sRowID) );
                   while ( CurrentDataProvider.cursorNext () );
                   Collections.sort (ALUnsorted);
                   unique (ALUnsorted);
                   ArrayOptions = new Option[ALUnsorted.size () + 1];
                   int iCtr = 1;
                   ArrayOptions[0] = new Option ("");
                   for ( Iterator itOptions = ALUnsorted.iterator (); itOptions.hasNext (); )
                        ArrayOptions[iCtr++] = new Option ( itOptions.next ().toString () );
              return ( ArrayOptions );
         }Hope this helps.

  • Empty file format in BSP after upgrade of PL48

    Hi,
    I upgraded our SAP B1 2007A to PL48. BTHF Addon and Payment Engine Addon are running.
    Under Bank->...> Import external bank statements I already used the import function with the PL47.
    Now when I would like to import a new bank file I get the following error in the status bar:"File format is empty"
    I get this message only on the Win XP workstations, if I start the SAP client on our Windows Server it works fine. No error message and the import function is also working.
    I already reinstalled the client, tried on two other workstations, found the note 1325121 also, which tells to reassign the bank format file. But no success.
    Any idea?
    Regards,
    Zsolt

    Hi,
    I checked. It is basically the same to do list in both notes.
    From the workstation I uploaded the Bank format file once again. Then I also downloaded the file, and opened with the Format definition addon to check it. Everything is correct. The file is not empty, and it is working well within the Format definition addon. You process the bank file.
    Then I would like to import a file in BSP, and I got the same error: Format file is empty.
    With the PL47 we made at least 20pcs BSP file import, it was working well. We made the PL48 upgrade on our server, then we processed the automatic client update.
    If you run the SAP client on the server the BSP is functioning well, but none of the workstations are OK.
    Dotnet problem ?
    Regards,
    Zsolt

  • How to apply text formatting immediately?

    Hello!
    I apply text formatting to the empty newly created text flow. It seems to be strange that the formatting is not applied immediately, but when I start editing.
    The small sample demonstrates the problem.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml"layout="
    vertical"creationComplete="onCreationComplete()"
    >
    <mx:Script>
    <![CDATA[
    import flashx.textLayout.events.FlowOperationEvent; 
    import flashx.textLayout.formats.ITextLayoutFormat; 
    import flash.text.engine.RenderingMode; 
    import flash.text.engine.FontLookup; 
    import flashx.textLayout.formats.TextLayoutFormat; 
    import mx.controls.SWFLoader; 
    import flashx.textLayout.edit.EditManager; 
    import flashx.textLayout.container.ContainerController; 
    import flashx.textLayout.elements.TextFlow; 
    private var textFlow:TextFlow; 
    private function onCreationComplete():void { 
    var container:Sprite = new Sprite();canvas.rawChildren.addChild(container);
    var containerController:ContainerController = new ContainerController(container, canvas.width, canvas.height);textFlow=
    new TextFlow();textFlow.flowComposer.addController(containerController);
    textFlow.interactionManager=
    new EditManager();textFlow.flowComposer.updateAllControllers();
    private function onClick():void { 
    var charFormat:TextLayoutFormat = new TextLayoutFormat(); 
    var containerFormat:TextLayoutFormat = new TextLayoutFormat(); 
    var paragraphFormat:TextLayoutFormat = new TextLayoutFormat();charFormat.fontSize=36;
    textFlow.interactionManager.selectAll();
    (textFlow.interactionManager
    as EditManager).applyFormat(charFormat, paragraphFormat, containerFormat);textFlow.interactionManager.refreshSelection();
    textFlow.flowComposer.updateAllControllers();
    ]]>
    </mx:Script>
    <mx:Canvas id="canvas"width="
    200"height="
    200" borderStyle="solid"/>
    <mx:Button id="button"label="
    Push me"click="onClick()"
    />
    </mx:Application>
    When you click the button new font size is set. But the cursor in text field is not changed to a bigger one until I start editing. Also if to look at the textFlow internals in debugger you can see that new font size is not set...
    How can I force this?
    Kind Regards

    This is arguably a bug with a few things conspiring to cause the problem.  The general idea is that each paragraph ends with a paragraph terminator and the final terminator isn't selectable - that seems to be the core of the problem.  The other conspirator is that with a point selection character level format changes aren't applied until the next character is entered.  So with an empty document you always have a point selection. I could see character level format changes applying instantly to empty paragraphs.  I'll file a bug for more investigation.
    As for workarounds - well there's always direction model calls - just set the format directly on the span.  Another possibility would be to detected exactly this case and insert a character and then undo it.
    Note in your sample code the refreshSelection and updateAllControllers calls after applyFormat are redundant and can be safely removed.  Also any of the formats passed to applyFormat can be null.
    Hope that helps,
    Richard

  • ERPI : Unable to create mappings in Import Format / pull metadata into ERPI.

    Hi All,
    I am strugling to set up metadata rules in ERPI. I am unable to set up Import Formats as i can not see the source segments.
    This is 11.1.2.1 System.
    --registered the source system with EBS system details, and able to initialize successfully.
    --registered Target system ( EPMA planning application) successfully,here i am able to view  Target dimension  Names, Data Table column Names, Target Dimesnion Class in 'Diemnsion details' tab
    -- Could retrieve Source Acconting Entity with it's details
    --Created Import Format with with Accounting Entity , Source system, Target system names.
    But in the Mappings area,( Data Load Mapping Tab) , Source Segment  fileds are not populated with source segments.Instead all the drop down boxes are empty ( few fields are even disabled) . I think, due to this, when i try to create Metadata rules, in Metadata section, the Dimesnion drop down list shows empty.
    Any one has exact idea on where i am missing ?

    Hi Jeff,
    I have clicked 'Refresh Metadata' button which  is there on 'Target Applciation' section.But still Source segments f drop down lists in 'Data Load Mappings' tab  of 'Import Format' section are empty and even few  fileds are disabled.

  • DataGrid binding with comumns of column ItemSource

    <DataGrid Grid.Column="1" Name="grid2" DataContext="{Binding SelectedPage}"
    ItemsSource="{Binding Params}"
    AutoGenerateColumns="False" Grid.RowSpan="2">
    <DataGrid.Columns>
    <DataGridComboBoxColumn ItemsSource="{Binding Source={StaticResource xKeySource}}"
    DisplayMemberPath="Name"
    SelectedValuePath="Name"
    SelectedValueBinding="{Binding Name}"/>
    <DataGridTextColumn Header="ParamName" Binding="{Binding Name}"/>
    <DataGridTextColumn Header="Address" Binding="{Binding Address}"/>
    <DataGridTextColumn Header="Format" Binding="{Binding Format}"/>
    <DataGridTextColumn Header="Description" Binding="{Binding Description}"/>
    </DataGrid.Columns>
    </DataGrid>
    Is it possible when I select from my ComboBoxColumn, compile automatically other columns in my DataGrid ?
    The name of fileds in ItemSource are the same of name of another binding columns (are two different list but the property name is equal).
    thanks

    I don't follow what you mean
    compile automatically other columns in my DataGrid
    If you mean change the content of other fields in the same row then yes.
    If there is a viewmodel per row you could act in the setter of the property of that which the combo is bound to.  Set those properties in the viewmodel and if it implements inotifypropertychanged then they would change in the view.
    In your markup
    <DataGridComboBoxColumn ItemsSource="{Binding Source={StaticResource xKeySource}}"
    DisplayMemberPath="Name"
    SelectedValuePath="Name"
    SelectedValueBinding="{Binding Name}"/>
    <DataGridTextColumn Header="ParamName" Binding="{Binding Name}"/>
    These are both bound to the same property though.
    You combo is in the datacontext the row is in.
    That Name property is the same as the Name property the other column would be in.
    Select combo > Name
    Enter in ParamName > Name
    Both the same property.
    Making it a property of something else would be very strange - which row is pointing at what.
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Formatting a timestamp into string with $ specifier

    Formatting a timestamp into string with $ specifier does not work; the formatted string is empty and no error is reported:
    I have forced the width to 10 to show that the format is at least partially scanned but when it is omitted the timestamp field is empty.
    I couldn't find this problem reported/addressed so here it is (LabVIEW 8.6)
    LabVIEW, C'est LabVIEW

    Yes, the simple work around is to put the timestamp first in both the string and the inputs.  But this is a bug.  There is no doubt about that.  A high priority?  Probably not.  Something that should be looked for when doing a revamp of the Format String?  Yep.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Cannot install Mountain Lion on empty drive

    I'm helping my father try to install the OS onto a newly installed internal drive on his Mac Pro. He's trying to install Mountain Lion, which is the same OS X generation as his usual boot drive (which is remaining in the system—the new drive is getting an OS as a backup boot drive).
    The problem is that the Mountain Lion installer, downloaded from the App Store, refuses to install on the new drive. The drive, which is formatted but otherwise empty, does not appear as an available drive to install on.
    My father believes that this is related to the note in the System Requirements saying that the Mac being installed on must already have Snow Leopard or Lion installed on it. I'm not so sure, but it's a valid question: can Mountain Lion be installed only as an upgrade, requiring an existing OS install on the actual drive being installed to?
    My interpretation of the listed requirement is that you have to boot from Snow Leopard or later to do the install, because the installer has to contact the App Store, but the requirement is worded ambiguously enough that it could mean that the drive itself must have Snow Leopard or later on it. It doesn't make sense to me, though, for this installer to be useable only as an upgrade; there are numerous situations under which a person might need to install an OS on an empty drive.
    So there's two questions here: can Mountain Lion be installed on an empty drive, and are there other likely reasons for the installer to not offer the drive in question as an available destination?

    Mark McKean wrote:
    ...So there's two questions here: can Mountain Lion be installed on an empty drive, and are there other likely reasons for the installer to not offer the drive in question as an available destination?
    Yes, it can be installed on an empty drive but the drive must be properly partitioned and formatted first. The HD must have a "GUID Partition Table" which you establish when you first partition the drive (use the Options... button), and it must then be formatted Mac OS Extended (Journaled). Boot from his current drive and run the ML installer from there with the new drive as the target. Note that if you haven't actually downloaded the ML installer yet, when you do, it automatically starts running but you get the choice to continue and choose the drive.
    Snow Leopard or Lion are mentioned as prerequisites because the days of install DVD's are over; the installer must be downloaded and at least Snow Leopard is necessary to get to the App Store to do that.

  • OCI-21500 when binding a collection

    Hello all:
    I've got a very strange behaviour when binding a collection. If I try to bind an empty collection, my program runs. BUT when I add one element to the collection, I've got a SIGSEGV and this message appears:
    -21500: internal error code, arguments: [kohrsc153], [], [], [], [], [], [], []
    Errors in file :
    OCI-21500: internal error code, arguments: [kohrsc153], [], [], [], [], [], [], []
    ----- Call Stack Trace -----
    Error: stisini(),13 - Can't open /oracle1/app/oracle/product/9.2.0.1.0/bin/oracleError: Stack Initialization Failure
    Error: ssdinit() failed 13
    calling call entry argument values in hex
    location type point (? means dubious value)
    ----- Argument/Register Address Dump -----
    ----- End of Call Stack Trace -----
    Any idea?

    This is my code:
    CREATE TYPE my_collection IS TABLE OF my_element;
    I'm trying to call to a PLSQL procedure:
    PROCEDURE get_collection(
    v_collection IN OUT my_collection
    Then, in the C program:
    sword code = OCI_SUCCESS;
    OCITable pList              = (OCITable )0;
    char *statement_sql      = "begin package.get_collection(:list); end;";
    code=OCITypeByName(
    envhp,
    errhp,
    svchp,
    (CONST text *)ORA_SCHEMA,
    (ub4)ORA_SCHEMA_LEN,
    (CONST text *)("MY_ELEMENT"),
    (ub4)strlen("MY_ELEMENT"),
    NULL,
    (ub4)0,
    OCI_DURATION_SESSION,
    OCI_TYPEGET_ALL,
    &(DataClass)
    code=OCITypeByName(
    envhp,
    errhp,
    svchp,
    (CONST text *)ORA_SCHEMA,
    (ub4)ORA_SCHEMA_LEN,
    (CONST text *)("MY_COLLECTION"),
    (ub4)strlen("MY_COLLECTION"),
    NULL,
    (ub4)0,
    OCI_DURATION_SESSION,
    OCI_TYPEGET_ALL,
    &(DataListClass)
    code = OCIObjectNew(
    envhp,
    errhp,
    svchp,
    OCI_TYPECODE_NAMEDCOLLECTION,
    (DataListClass),
    (dvoid *)0,
    OCI_DURATION_DEFAULT,
    TRUE,
    (dvoid **)&(pList)
    /* Add one element */
    code = OCIObjectNew(
    envhp,
    errhp,
    svchp,
    OCI_TYPECODE_OBJECT,
    (DataClass),
    (dvoid *)0,
    OCI_DURATION_DEFAULT,
    TRUE,
    (dvoid **)&(elemData)
    code = OCIStringAssignText(
    envhp,
    errhp,
    (text *)"Name1",
    (ub4)strlen("Name1"),
    &(elemData->dataName)
    code = OCICollAppend(
    envhp,
    errhp,
    (CONST dvoid *)&(elemData),
    (dvoid **)NULL,
    (OCIColl *)(pCollection)
    code = OCIStmtPrepare2((OCISvcCtx *)svchp,(OCIStmt **)&stmtp,
    (OCIError *)errhp, (unsigned char *)statement_sql, strlen(statement_sql),
    NULL,0,OCI_NTV_SYNTAX,OCI_DEFAULT);
    /* Bind */
    code = OCIBindByPos(
    stmtp,
    &bind,
    errhp,
    (ub4)1,
    (dvoid* *) NULL,
    (sb4) 0,
    SQLT_NTY,
    (dvoid *) 0, (ub2 *)0, (ub2 *)0,
    (ub4) 0, (ub4 *) 0, (ub4) OCI_DEFAULT);
    code = OCIBindObject(
         bind,
    errhp,
    DataListClass,
    (dvoid **) &pList,
    (ub4 *) 0,
    (dvoid **)0,
    (ub4 *) 0);
    /* Execute */
    code = OCIStmtExecute(svchp, stmtp, errhp, (ub4)1, (ub4)0,
    (CONST OCISnapshot *) NULL,(OCISnapshot *) NULL, OCI_DEFAULT);
    I'm trying to run this code in an Oracle 9i environment.
    Thanks in advance.

  • [BUG] Exporting to xls and xlsx produces empty file

    When I'm viewing a table with data, and in Actions choose "Export...", turn off "Export DDL", choose "xls" for format, everything else is on default, and either leave empty or enter same name for both Query and Data worksheet names, and specify filter query - export produces empty xls/xlsx file. Only when one explicitly enters different worksheet names does valid non-empty excel workbook get generated with two differently named worksheets.
    Either validation should be added for worksheet names, or generating them automatically on export should be supported.
    I'm using Oracle SQL Developer 3.1.07.
    Kind regards,
    Stevo.

    Hi Stevo,
    Really appreciate you reporting this. There was an earlier, somewhat similar thread on this issue that we blamed on export file size:
    Sql Developer 3.1 - Exporting a result set in xls generates and empty file
    But you have discovered an important variation that explains it for small export file sizes also. Here is what I verified on 3.1.07.42:
    1. Normally if the worksheet names are left untouched (empty), then the names default to Export Worksheet and SQL
    2. If the name settings in Tools|Preferences|Database|Utilities|Export|Excel Format are null (empty), there is no problem
    3. If the name settings are intentionally changed to a single blank character, then the problem you describe occurs.
    So, you may wish to go to the preference settings and intentionally Backspace over each to null it out, then click OK.
    In the case of intentionally setting both worksheet names, data and query, to the same non-null value, that is also a problem.
    Regards,
    Gary
    SQL Developer Team
    Edited by: Gary Graham on Apr 17, 2012 11:55 AM
    Logged a bug for this:
    Bug 13971991 - FORUM: EXCEL FILE EMPTY IF DATA AND QUERY WORKSHEETS ARE THE SAME AND NON-NULL
    Edited by: Gary Graham on May 25, 2012 2:00 PM
    Notification received: fixed for 3.2

  • How do we catch errors in Servlets?

    Hello, i 'm using Servlets and JDBC.
    i'm having a form.html where the user inserts data in the input fields.
    It's a registration page.
    I would like to check for possible user errors.
    For example if the user has not typed anything in a required field like field "password", so the field is null.
    I would like to inform the user that this field is null and he/she shall type in it again.
    (I'm talking generally not only for a registration page but to any page that requires correct data)
    *1.* Shall i use Javascript?
    *2.* Shall i direct the user to an error page where the page describes the error, what the user has to do in order to correct it and direct him back to the previous page?
    *3.* Shall i only use if/else?
    I would appreciate if sm could give me some advice on this matter or post me some links related to catch errors in servlets.
    Thanks, in advance!
    Edited by: g_p_java on Jul 11, 2009 12:15 PM

    Here is a possible approach to this issue:
    * use javascript to validate all textfields on the form client-side every time the user clicks the submit button. If it fails, put a message in red next to the problem textfield describing what the problem is. Dont allow submit if there are validation issues.
    * More than one validation may apply to a given textfield. For instance, the field cant be empty is checked before its checked for an invalid date.
    * Check to see if its an invalid date format first (example: mm/dd/yyyy), then check to see if its an invalid date (non leap year for example).
    * recheck all validation back on the server (necessary if user disabled javascript or a hacker bypasses your client side validation). Redraw the page and populate it, but put messages next to the problem fields as you did for javascript.
    * The invalid date format and invalid date should pass if given an empty value since the its the empty value validation (if it applicable for that field) that is repsonsible for that test.
    *since you will be applying this validation over and over again for all your JSP pages for this project and future projects, it may be a good idea to create reusable code for it. You may also research google for good approaches.
    Your javascript code should be from a single javascript file that is included into each JSP page so it can be reused.
    @see http://www.xs4all.nl/~sbpoley/webmatters/formval.html
    * All textfields should be validated throughly so your database never gets bad data (data is king).
    * common things to check for:
    invalid date format, invalid date, empty textfield, invalid email address, invalid telephone number format, invalid zip code, etc, etc, etc

  • Error while initiating Wily agent on SMD node of cardinality

    Hi
    I am not sure if I have to put this question here but anyways:
    I have deployed wily agent thru JSPM and when tried to initiate it on SMD i get this error:
    500   Internal Server Error
    The initial exception that caused the request to fail, was:
    com.sap.tc.webdynpro.progmodel.context.ContextException: Node(WilyAdmin.EMS): must not bind an empty collection to a Node of cardinality 1..1 or 1..n
    Please suggest what can I do

    Hi Bill,
    I'm facing the same issue, did you resolve it?? If yes, how did you??
    Best regards and thanks,
    María Margarita Monteverde

  • FCC is not able to pick in sender file adapter

    Hi Experts,
         I have configured sender contentent conversion.
    My structure is like :
    H - H1,H2,H3
    D - D1,D2,D3
    P - P1,P2,P3
    I configured as below:
    Document name:MT
    Document name:namespace
    Recordset name:Recordset
    Recordset structure:H,1,D,,P,
    Recordset sequence:ascending
    Recordsets per message:*
    Keyfieldname:KF
    Keyfieldtype:string(case-sensitive)
    H.fieldNames  - H1,KF,H3
    H.fieldSeparator  -   ;
    H.keyFieldValue  -   H
    H.endSeparator  -   'nl'
    H.missingLastfields  - ignore
    H.additionalLastFields - ignore
    I have provided the same for D and P.
    When i tried to pick the file my file is not picking and in communication channel log i am getting the following error
    Success Channel : Entire file content converted to XML format
    Warning Channel : Empty document found. Proceed without sending message
    Success Confirmation mode test found. File will be resent next time .
    .Could any one please help me what might be the problem exactly.
    Thanks in advance
    Kalam.

    >>When i tried to pick the file my file is not picking and in communication channel log i am getting the following error
    See, any file permission (777) is not set to execute .
    If you have fcc configuraton errors, You will see in the communication channel.
    Set File in Delete Mode (not in Test) in CC.  Just to make sure the file is picked up or not.
    Stop and activate the file adapter cc and see the behaviour

  • HELP! How do I un-install and then RE-install Camera Raw 5.7 on my Mac?

    My CS4 would no longer open my RAW files (Canon 5D Mark II) and I was told (on this forum) that I needed to update my camera raw to 5.7. So I downloaded 5.7 but could not figure out HOW to get it installed in the proper place. After trying but not succeeding, my CS4 now tells me there is NO camera raw installed, not even the old one I was running! So I tried to RE-install 5.7 but I get the message that it's already installed. So it's SOMEWHERE on my computer, but I don't know where. It's not in photoshop or where is should be, but I can't try to install it again because my computer tells me it's already installed. How do I remove it from my computer so that I can try again? OR MAYBE BETTER YET, HOW DO I FIND IT AND GET IT INTO THE PROPER PLACE?

    Thanks for your reply.
    I'm using version 10.9.4
    I found the previous 5.7 plug in, trashed it, and started over again.Then I, once again, downloaded Camera Raw version 5.7, and then did the following:
    I double clicked on the downloaded Camera_Raw_5.7 dmg and then double clicked on the cameraprofiles.mpkg
    Then I installed the camera raw.plugin by going to (Macintosh hard drive) /Library/Application Support/Adobe/Plug-Ins/CS4/File Formats, which was empty (somehow my previous version of Camera Raw was already gone).
    Then dragged the new camera raw plugin from the dmg to the same folder.
    I restarted my computer and there STILL is no Camera RAW in my Photoshop!! Good grief! Any more suggestions? Maybe you and I need to screen-share....

Maybe you are looking for

  • Display XML in Web Dynpro

    Hello, i have a string variable filled with xml. And now i want to display this code in Web Dynpro with an ui element. I tried a text_edit but it only shows the text but i want it to be displayed like in an IE. Anybody an idea? Regards Robert

  • Is there any discount on iPad's for teachers?

    I was told that our Kindergartens can use an iPad next year for our entrance assessments.  At the Apple store, I was told that teachers only receive a discount on MacBooks.  I could be tax-exempt, but only if the district was buying it, which the dis

  • Question for faces-config.xml

    How can I make <redirect/> as the default behavior in the faces-config.xml? Thanks. Shawn

  • Welcome! Please read before posting.

    Well hello there!   Welcome to our Let's Talk Games board - your and our place to rant & rave about the world of video games. You're gamers.  We're gamers.  Let's talk. Drawing a blank on what to discuss?  Here's some brain food... for you zombies: F

  • I can't find blur gallery to edit pins

    I can't find blur gallery to edit pins