Selasa, 28 April 2026

Re: [MSAccessProfessionals] Returning to a specific record on an access form from another access form

Hi Dean,
Glad to hear you got this sorted out.

It looks like you are storing multiple attendee values in a single field. This goes against basic normalization rules. Typically, there would be a related child table that would store one attendee per record. If your current table structure works, then  continue on. I have found these multi-value fields very limiting when considering future functionality.

I like your control named "txtlistresults". You might want to consider changing some other control names in the future to make your application more "self-documented".

Regards,
Duane


From: Dean Waring
Subject: Re: [MSAccessProfessionals] Returning to a specific record on an access form from another access form
 
Thank you for your reply, and I apologize for my vague problem description. However, I believe that I was able to find a fix based on your questions. Below is some of the code. You may have a better solution. The issue appeared to be that I was re-opening the main form causing it to go to record 1. Here is what I came up with:

Main form, frmOGS, control launches new form with listbox:

 

Private Sub Command6_Click()

DoCmd.OpenForm "frmTDAttend", acNormal

End Sub

 

frmTDAttend listbox:

 

Data source for listbox:  list0= SELECT qryAttendees.[Full Name] FROM qryAttendees;

Multi Select = Simple

 

CmdSelect:

 

Private Sub cmdSelect_Click()

Dim varItem As Variant

    Dim strSelected As String

    Dim ctrl As Control

   

    Set ctrl = Me.List0

   

    If ctrl.ItemsSelected.Count > 0 Then

        For Each varItem In ctrl.ItemsSelected

             strSelected = strSelected & ctrl.ItemData(varItem) & "; " & (Chr(13) + Chr(10))

        Next varItem

       

        ' remove leading comma

      

        strSelected = Left(strSelected, Len(strSelected) - 2)

       

       ' assign value list to hidden text box control

      

       Me.txtlistresults = strSelected

      

       

       

        Debug.Print strSelected

      

    Else

        MsgBox "Noitems selected", vbInformation, "Warning"

    End If

   

    

    DoCmd.OpenForm "frmOGS", acNormal

    [Forms]![frmOGS].[TD Invitees] = strSelected

        DoCmd.Close acForm, "frmTDAttend", acSaveYes

End Sub

 



Dean J. Waring

From:  Duane Hookom 
Sent: Sunday, April 26, 2026 10:42 AM
Subject: Re: [MSAccessProfessionals] Returning to a specific record on an access form from another access form
 
I’m not sure what you mean by “launches a list box control”. Are you opening a new form that contains the list box?  Does your main form remain open? Is the new form opened in dialog mode? 

We would need to see some code. It seems like you have a requery in your code that would reset the main form’s position to the first record. 

Duane Hookom 


Sent from my mobile

On Apr 26, 2026, at 8:34 AM, Dean Waring via groups.io <deanjw2006=msn.com@groups.io> wrote:


I have a main form with a control that launches a list box control. The list box is a multi-select box. Once the user selects the required choices, they select a button on the listbox form to execute the selections. The code iterates through the selections and populates a textbox on the listbox form. The textbox assigns the value to a variable that populates the main form correctly; however, when I close the listbox form, it returns to the first record in the main form instead of the record updated. How do I get the listbox form to close and return to the calling record on the main form?

Senin, 27 April 2026

Re: [MSAccessProfessionals] Returning to a specific record on an access form from another access form

Thank you for your reply, and I apologize for my vague problem description. However, I believe that I was able to find a fix based on your questions. Below is some of the code. You may have a better solution. The issue appeared to be that I was re-opening the main form causing it to go to record 1. Here is what I came up with:

Main form, frmOGS, control launches new form with listbox:

 

Private Sub Command6_Click()

DoCmd.OpenForm "frmTDAttend", acNormal

End Sub

 

frmTDAttend listbox:

 

Data source for listbox:  list0= SELECT qryAttendees.[Full Name] FROM qryAttendees;

Multi Select = Simple

 

CmdSelect:

 

Private Sub cmdSelect_Click()

Dim varItem As Variant

    Dim strSelected As String

    Dim ctrl As Control

   

    Set ctrl = Me.List0

   

    If ctrl.ItemsSelected.Count > 0 Then

        For Each varItem In ctrl.ItemsSelected

             strSelected = strSelected & ctrl.ItemData(varItem) & "; " & (Chr(13) + Chr(10))

        Next varItem

       

        ' remove leading comma

      

        strSelected = Left(strSelected, Len(strSelected) - 2)

       

       ' assign value list to hidden text box control

      

       Me.txtlistresults = strSelected

      

       

       

        Debug.Print strSelected

      

    Else

        MsgBox "Noitems selected", vbInformation, "Warning"

    End If

   

    

    DoCmd.OpenForm "frmOGS", acNormal

    [Forms]![frmOGS].[TD Invitees] = strSelected

        DoCmd.Close acForm, "frmTDAttend", acSaveYes

End Sub

 



Dean J. Waring

From: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io> on behalf of Duane Hookom via groups.io <duanehookom=hotmail.com@groups.io>
Sent: Sunday, April 26, 2026 10:42 AM
To: MSAccessProfessionals@groups.io <MSAccessProfessionals@groups.io>
Subject: Re: [MSAccessProfessionals] Returning to a specific record on an access form from another access form
 
I’m not sure what you mean by “launches a list box control”. Are you opening a new form that contains the list box?  Does your main form remain open? Is the new form opened in dialog mode? 

We would need to see some code. It seems like you have a requery in your code that would reset the main form’s position to the first record. 

Duane Hookom 


Sent from my mobile

On Apr 26, 2026, at 8:34 AM, Dean Waring via groups.io <deanjw2006=msn.com@groups.io> wrote:


I have a main form with a control that launches a list box control. The list box is a multi-select box. Once the user selects the required choices, they select a button on the listbox form to execute the selections. The code iterates through the selections and populates a textbox on the listbox form. The textbox assigns the value to a variable that populates the main form correctly; however, when I close the listbox form, it returns to the first record in the main form instead of the record updated. How do I get the listbox form to close and return to the calling record on the main form?

Sent from my Verizon, Samsung Galaxy smartphone
Get Outlook for Android

Minggu, 26 April 2026

Re: [MSAccessProfessionals] Returning to a specific record on an access form from another access form

I’m not sure what you mean by “launches a list box control”. Are you opening a new form that contains the list box?  Does your main form remain open? Is the new form opened in dialog mode? 

We would need to see some code. It seems like you have a requery in your code that would reset the main form’s position to the first record. 

Duane Hookom 


Sent from my mobile

On Apr 26, 2026, at 8:34 AM, Dean Waring via groups.io <deanjw2006=msn.com@groups.io> wrote:


I have a main form with a control that launches a list box control. The list box is a multi-select box. Once the user selects the required choices, they select a button on the listbox form to execute the selections. The code iterates through the selections and populates a textbox on the listbox form. The textbox assigns the value to a variable that populates the main form correctly; however, when I close the listbox form, it returns to the first record in the main form instead of the record updated. How do I get the listbox form to close and return to the calling record on the main form?

Sent from my Verizon, Samsung Galaxy smartphone
Get Outlook for Android

[MSAccessProfessionals] Returning to a specific record on an access form from another access form

I have a main form with a control that launches a list box control. The list box is a multi-select box. Once the user selects the required choices, they select a button on the listbox form to execute the selections. The code iterates through the selections and populates a textbox on the listbox form. The textbox assigns the value to a variable that populates the main form correctly; however, when I close the listbox form, it returns to the first record in the main form instead of the record updated. How do I get the listbox form to close and return to the calling record on the main form?

Sent from my Verizon, Samsung Galaxy smartphone
Get Outlook for Android

Rabu, 08 April 2026

New Industry Guidelines Detail How to Buy Fabric Online Without Seeing It First

To buy fabric online without seeing it first, buyers must mathematically translate digital specifications like Grams per Square Meter and stretch percentages while enforcing strict physical wash protocols on sample swatches. Leading U.S. textile suppliers reported a 42% decrease in wholesale returns during fiscal 2025 when commercial buyers abandoned subjective texture descriptions in favor of hard data. Digital sourcing removes the physical hand from the evaluation process. The hand defines the tactile feel of the material. You risk severe manufacturing delays if you rely on flat lay photography alone. Source: Linkedin

Buyers determine accurate material density by reading the GSM data rather than trusting generic vendor adjectives. GSM measures exact physical weave density. A 150 GSM textile material performs well for lightweight apparel, whereas a 400 GSM material provides the rigidity needed for commercial outerwear. Digital sourcing requires buyers to locate visual proxies to evaluate drape. Drape defines the hanging behavior of a textile. Buyers assess this fluidity by demanding rosette photographs. A rosette photograph displays the material twisted into a spiral. You misjudge the flexibility of the warp and weft if you only review flat images.

Buyers verify pattern compatibility by extracting the stated stretch percentage and replicating that ratio against a physical ruler using known knit textiles. Spandex fibers dictate the modulus of elasticity. A 4-inch sample possesses a 50% stretch capacity if it extends to 6 inches comfortably. Professionals mitigate remaining physical risks by executing rigorous swatch tests. A swatch test exposes the raw sample to American Association of Textile Chemists and Colorists wash standards. You quantify shrinkage accurately if you launder a precise 4-inch square sample at maximum industrial heat settings.

Safe digital textile sourcing requires strict adherence to standardized numerical metrics over subjective visual estimations. U.S. industry data proves that quantitative analysis eliminates the traditional barriers of remote purchasing. Buyers secure exact materials for bulk production runs if they follow these technical translation methods. Start your next commercial manufacturing run securely by immediately requesting a baseline test sample from your chosen digital supplier today.

--
You received this message because you are subscribed to the Google Groups "Broadcaster" group.
To unsubscribe from this group and stop receiving emails from it, send an email to broadcaster-news+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/broadcaster-news/6d9c8e7b-592c-4df2-99b6-5e59b982d4c1n%40googlegroups.com.

Jumat, 03 April 2026

How Brand Mentions and Citations Improve SEO

Brand citations for SEO grow when your site defines the brand clearly, your content gives publishers something worth referencing, and your outreach targets pages that already cover your category. That is the practical answer. A brand citation helps when it places your name next to the right topic on a trusted page with useful context. A weak mention on an unrelated page adds little. A strong mention on a relevant page can strengthen category association, branded search demand, and referral trust.

Start on your own site. Your home page should state what the brand does, who it helps, and which service or product category it belongs to. Your About page should confirm the same position. Your author pages should connect real expertise to the brand. Your internal links should point readers and search engines to the pages that explain your main offers. Google says structured data gives explicit clues about a page, so accurate Organization markup also helps clarify the brand entity.

Next, publish one asset that deserves citations. The best pages for this job answer one clear question fast, use strong headings, and include a source, an expert, or an original point of view. Research pages, benchmark pages, comparison pages, and narrow how-to pages attract more mentions than generic blog posts because writers can quote them, link to them, or use them as a reference.

Then move off page. Pitch editors, newsletter writers, podcasters, and community leaders who already discuss your topic. Offer one useful angle, not a broad request for attention. A short quote, a small data point, or a clear framework works better than a generic sales message. Review unlinked mentions too. When a page already names your brand, a source link often becomes an easy editorial update if the link helps the reader.

Measure quality, not just volume. Track which pages mention the brand, which topics they connect to it, whether the mention is linked, and whether branded queries grow after those citations appear. More citations alone do not win. Better citations do.

That is how you increase brand citations for SEO with clarity, relevance, authority, and repeatable execution.

 

--
You received this message because you are subscribed to the Google Groups "Broadcaster" group.
To unsubscribe from this group and stop receiving emails from it, send an email to broadcaster-news+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/broadcaster-news/8b00dd43-0a79-4bb1-8c4f-1b77c8f0c8den%40googlegroups.com.

Senin, 30 Maret 2026

Generative Engine Optimization (GEO) Mechanics and Implementation Strategy

Generative Engine Optimization (GEO) is the technical methodology of structuring digital assets so artificial intelligence search models extract and cite your data. Legacy search algorithms evaluate blue links based on keyword density. Generative AI systems synthesize distinct facts. Large Language Models (LLMs) process server-side HTML to answer user queries directly.

Search Engine Optimization builds domain authority through hyperlinks. Generative Engine Optimization builds semantic authority through verifiable brand mentions. Generative algorithms rely on Natural Language Processing to plot semantic entities inside a high-dimensional vector space. The system calculates the mathematical distance between concepts. A search engine selects your document for Retrieval-Augmented Generation (RAG) if the vector proximity matches the query intent closely. Content creators must format data into discrete, parsable blocks. Generative engines ignore large text walls. The system bypasses pages lacking explicit entity definitions.

Writers optimize for machine parseability by deploying strict H2 and H3 HTML hierarchies. You provide clear structural signals to AI crawlers if you place direct answers immediately under these subheadings. Implement JSON-LD schema markup like FAQPage to categorize information explicitly. Provide concrete evidence like statistical reports and cited academic papers. Generative models prioritize factual density to prevent hallucinations. Use absolute dates instead of relative timeframes. This practice aids freshness signals. The algorithm features your proprietary data prominently if users search for those exact metrics.

Marketers measure generative visibility using Share of Model (SoM) and citation frequency metrics. Traditional web analytics fail to capture zero-click generative outputs. Share of Model calculates your brand citations against direct competitors for exact query clusters. Track AI referral traffic originating from generative interfaces. Monitor the sentiment patterns AI engines generate alongside your brand mentions. Positive context injection improves algorithmic trust scores over time.

You align your digital assets with AI machine extraction protocols. Audit your highest-performing landing pages for parseability and entity clarity. Format all factual statements as direct semantic triples. This methodology establishes your brand as the primary reference point inside AI-generated responses. Increase your information gain scores for modern algorithms.

🤖 Explore this content with AI:

💬 ChatGPT 🔍 Perplexity 🤖 Claude 🔮 Google AI Mode 🐦 Grok

Source: https://www.linkedin.com

--
You received this message because you are subscribed to the Google Groups "Broadcaster" group.
To unsubscribe from this group and stop receiving emails from it, send an email to broadcaster-news+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/broadcaster-news/585a6dd3-94b4-4cf3-af07-12ad43625f6dn%40googlegroups.com.