Post.Bytes - Got Code? Data and Software Development Community

Collapse
 
  • Time
  • Answered
  • Show
  • New Topics
Clear All
new posts
No content found
Show More
 
  • Time
  • Show
  • New Topics
Clear All
new posts
Please log in to your account to view your subscribed posts.
Directory Topics Posts Last Post
Topic
Whether you’re into programming languages, databases, systems, or apps, we’ve got a community for you. Dive in, ask questions, share your expertise, and connect with fellow tech enthusiasts.
Topics: 807,656 Posts: 3,428,085
807,656 3,428,085
Sub-Forums:
.NET (122,512/359,631)
Access (67,228/333,825)
Algorithms (216/816)
Apache (757/2,119)
ASP .NET (99,687/324,924)
ASP Classic (19,511/77,136)
C (79,605/572,019)
C Sharp (95,790/369,269)
Career (286/853)
Cloud (2/5)
CMS (47/202)
Coldfusion (380/2,684)
DB2 (11,944/43,198)
Flash (1,355/3,399)
Freelance (0/0)
General (3,648/10,905)
HTML CSS (18,491/111,367)
IIS (634/1,862)
Java (14,649/54,257)
Javascript (37,325/195,718)
Linux (1,695/6,015)
MacOS (62/212)
Mobile Development (826/2,322)
MySQL (11,588/30,673)
Networking (934/3,408)
Oracle (7,978/23,960)
Perl (5,534/21,587)
PHP (40,178/187,450)
PostgreSQL (5,991/21,357)
Product Launch (12/21)
Python (50,099/248,614)
Ruby (237/552)
Software Development (1,114/4,043)
SQL Server (20,103/70,529)
Updates (3/5)
Visual Basic (17,145/59,712)
Visual Basic .NET (63,593/261,362)
Windows (2,775/11,052)
XAML (80/191)
XML (2,272/6,811)
APIs (145/261)
Computer Hardware (160/490)
Data Management (54/124)
Desktop Software (247/763)
eCommerce (37/124)
Excel (163/593)
Mobile (97/219)
Online Marketing (50/317)
Security (82/262)
Web Applications (228/665)
Windows Server (99/183)

Latest Topics

Collapse

  • mike ross
    Integration Testing in Modern Software
    by mike ross
    Modern applications rely on multiple services, APIs, and databases working together. Even when individual components function correctly, failures often occur in how they interact. This is why integration testing is critical.

    Integration testing verifies that different modules of a system work together as expected. It helps identify issues like API mismatches, broken data flow, and communication failures between services.

    ...
    2 days ago
  • mshakeelattari
    Dropdown and filter as typing in a combo box in MS Access
    by mshakeelattari
    I have a bound combo box control named Publisher_ID and Row Source:
    Code:
    SELECT Publishers.Publisher_ID, Publishers.PublisherName FROM Publishers;
    (2 columns, widths: 0cm,2cm). I want it to dropdown by itself as soon as it is reached by pressing Tab keys, so I have a code in On Enter event:
    Code:
    Private Sub Publisher_ID_Enter()
        Me.Publisher_ID.Dropdown
    End Sub
    In the On Change event,
    Code:
    Private Sub Publisher_ID_Change()
    ...
    3 weeks ago
  • josephdanial073
    компютър
    by josephdanial073
    Процесът на клониране на компютър позволява създаването на точна копия на цялата система, включително операционна система, програми и лични файлове. Това е идеално решение за бързо възстановяване при хардуерни проблеми или миграция към ново устройство. С помощта на надежден софтуер можете лесно да защитите данните си и да спестите време, като избегнете наново инсталиране и конфигуриране на системата.
    zz0.migyinowe9b zz
    3 weeks ago
  • eclaimsolution
    Trusted Medical Billing Services In Texas for Healthcare Providers
    by eclaimsolution
    Handling medical billing in-house can be time-consuming and complex due to frequent coding updates and payer rules. That’s why many providers rely on Medical Billing Services In Texas to improve claim accuracy and reduce denials.

    eClaim Solution is a reliable option for clinics and practices across Texas. Their experienced billing team manages claim submissions, payment posting, and follow-ups, helping healthcare providers maintain consistent...
    Jan 12 '26, 10:20 AM
  • praveenedutech
    BBA in Healthcare Management: Complete Guide for 2026 – Courses, Jobs & Skills
    by praveenedutech

    Introduction

    The healthcare industry is one of the fastest-growing and most vital sectors globally, driven by population growth, technological innovation, public health challenges, and increasing digital transformation. With this evolution, the demand for skilled professionals who can manage healthcare operations effectively has skyrocketed and a BBA in Healthcare Management stands out as an excellent pathway to build a future-ready...
    Jan 12 '26, 10:09 AM
  • sakshiinfo
    How Do Open Source Load Testing Tools Help Teams Validate Performance at Scale?
    by sakshiinfo
    Open source load testing tools enable teams to simulate real-world traffic and measure how applications perform under varying levels of load. This helps identify performance bottlenecks, response time issues, and scalability limits before users are impacted.

    By using open source load testing tools, teams gain flexibility to customize test scenarios, integrate performance tests into CI pipelines, and avoid vendor lock-in. These tools...
    Jan 10 '26, 06:49 PM
  • sakshiinfo
    What Role Does Test Automation Play in Scaling Quality Across Releases?
    by sakshiinfo
    Test automation enables teams to maintain consistent software quality as applications grow and release cycles become shorter. By automating repeatable and high-risk test scenarios, teams can validate functionality quickly without increasing manual effort.

    Automated tests are commonly used for regression checks, API validation, and critical user flows that must work reliably with every release. Test automation also supports early feedback...
    Jan 8 '26, 07:09 AM
  • Petrol
    g a TempVar in an Access SQL query
    by Petrol
    I was under the impression that TempVars could be used in SQL queries, including in the Criteria field, but this seems not to be the case.
    I wrote the following test query:
    Code:
     SELECT People.PersonID , Board_service_h istory.Communit yCode
    FROM People INNER JOIN Board_service_h istory ON People.PersonID = Board_service_h istory.PersonID
    WHERE (((Board_servic e_history.Commu nityCode)=[TempVars]![communitycode]));
    and tested...
    Jan 5 '26, 08:57 AM
  • Petrol
    Outlook automation options
    by Petrol
    When I create an email directly in Outlook, it gives me options to select the email account to use (the 'From' dropdown) and the address to direct replies to ('Delivery options'). I can't find any way to implement these options uning Mailitem.Send. Is it possible?
    Dec 31 '25, 10:20 PM
  • Edgar458g
    slow code in Python
    by Edgar458g
    Hi everyone.
    I’m new to Python and ran into a small problem.
    I wrote a script that works fine with small files, but when the file gets bigger, everything becomes very slow. No errors, just takes a long time to finish.
    Is this usually about loops or reading the file line by line?
    What is the first thing I should check to make it faster?

    Thanks in advance....
    Dec 22 '25, 04:05 PM
  • linshunzhi
    r6v4/h1d1 is a fast and free web server.
    by linshunzhi
    https://r6v4.app/
    hello, i share a not open source linux web server. which faster than nginx.
    https://drive.google.co m/file/d/1LQ7lpSRYI7c3JM Pk-1cIxcnykzUF0yq0/view?usp=drive_ link...
    Dec 22 '25, 03:55 AM
  • Dimension
    CBDC Resources – A Global Data Hub for Central Bank Digital Currencies
    by Dimension
    CBDC Resources is a comprehensive and data-driven hub focused on global Central Bank Digital Currency (CBDC) developments. The platform allows users to explore:
    • Interactive global maps showing CBDC project status (Exploration, Pilot, Launched)
    • Country profiles with objectives, motivations, timelines, and underlying technologies
    • Technology provider profiles and comparative insights into the solutions used in different CBDC pilots
    • A curated
    ...
    Dec 12 '25, 11:33 AM
  • Petrol
    Why doesn't my SetFocus work?
    by Petrol
    I have several forms containing bound controls in which a phone number is to be entered. Because I want the saved text string to include spaces here and there (e.g. 07 1234 5678 for land lines, or 0412 345 678 for mobiles), I have a function which reformats the given text string. Since the control is bound to the requisite control source, the reformatted phone number is automatically stored in the record. The function is called from the AfterUpdate...
    Nov 16 '25, 08:12 AM
  • jeffreestar
    5 Free AI Tools Programmers Should Try Now!
    by jeffreestar
    AI is changing the way programming and content creation work. If you are a developer or working in technology, don't miss these 5 super cool free tools:

    CodeGPT – Write and optimize code with just a short description.

    Runway ML – Create images, videos, and AI effects extremely fast.

    Chatsonic – Multi-purpose chatbot, from blogging to data analysis.

    Tabnine – Automatic code suggestions, saving...
    Nov 10 '25, 04:06 AM
  • Petrol
    Compact and Repair causing errors?
    by Petrol
    My Access database appears to run correctly, and it recompiles without error. However, if I run a Compact and Repair, when the database reopens I get the error message "Invalid databse object reference" - without, unfortunately, mentioning which object it is referring to. See attached screenshot. Then it says either "The expression contains an ambiguous name" or "The expression you entered has a function name that EmmausDBMS...
    Nov 7 '25, 04:49 AM
  • Ruth12
    Azure Functions scaling issues that were not expected during busy times
    by Ruth12
    Hey Everyone!

    Just moved some of our serverless work to Azure Functions.

    Scaling works most of the time, but I've seen that some functions take longer to run or even get held up for a few seconds during busy times, which is bad for users.
    ...
    Nov 4 '25, 09:44 AM
  • kamal12362
    Kamal Hinduja : How POST requests handle byte data in programming?
    by kamal12362
    Hi,

    I am Kamal Hinduja based Geneva, Switzerland(Swi ss). Can anyone explain How POST requests handle byte data in programming?

    Thanks, Regards

    Kamal Hinduja Geneva, Switzerland...
    Oct 28 '25, 05:30 AM
  • Petrol
    Adjusting the height of a report entry in VBA
    by Petrol
    I have an Access report whose records in the Detail section usually require two lines, but occassionally a message needs to be displayed for a particular record. This message is in the form of a label in the third line, which is made either visible or invisible, depending on a flag within the record. To avoid wasting space, I want to adjust the height of the entry to accommodate the third line only when required. The flag is checked, the label.Visible...
    Oct 23 '25, 11:23 AM
  • Petrol
    How to trigger the Format event for a report section
    by Petrol
    Does anyone know the magic trick to make the Format event fire for a report section? I have a simple event procedure linked to the On Format property of the Detail section, but it doesn't work.
    learn.microsoft .com assures me "For report detail sections, the Format event occurs for each record in the section just before Microsoft Access formats the data in the record"; but setting a breakpoint confirms that in my case the event procedure...
    Oct 20 '25, 06:16 AM
  • MarkWhitman
    Are FlutterFlow Specialists Becoming the Go-To Choice for MVPs in 2025?
    by MarkWhitman
    With FlutterFlow gaining traction for rapid MVP builds, how are you deciding whether to hire dedicated FlutterFlow developers versus relying on traditional Flutter programmers? Have you noticed shifts in demand or pricing trends in the freelance and agency market lately ....
    Oct 9 '25, 06:34 AM
  • Petrol
    SQL UNION query with 3 SELECTs
    by Petrol
    Can anyone tell me what's wrong with the following UNION query? When I try to open it I get "Syntax error in FROM clause."
    I note that
    1. Each of the three SELECT queries runs (opens) quite happily when run by itself;
    2. If I remove one of them - any one - from the UNION query it runs happily;
    3. Grouping two of them in parentheses doesn't help;
    4. learn.microsoft .com says one can have mulltiple SELECT queries in a UNION query; and
    5. The
    ...
    Sep 26 '25, 06:27 AM
  • jimatqsi
    Bizarre Access behavior
    by jimatqsi
    I have a sudden, bizarre set of behaviors that make me suspect Microsoft has stepped on something bad. I see unusual and very bad behavior in MS Access and Chrome.
    When I open an Access database on my programming machine, an Access Help window opens on the right side of the window. That does not normally happen. But it happens now and it resists all efforts to close it.

    When I try to get into Options the browser opens "by...
    Sep 19 '25, 01:15 PM
  • natashasturrock
    How can I scale user generated content in web apps without spending a lot of budget?
    by natashasturrock
    I am working on a web app where users can upload and share media files. As the app grows, I am worried about scaling file storage and managing bandwidth efficiently.

    Do you have any tools, architectures, or hosting approaches that you can recommend?
    Sep 17 '25, 12:45 PM
  • jmcraven
    How Do You Automate Your Programs?
    by jmcraven
    I have a program that I run on a scheduled job. It requires that somebody is logged in (Access requires an interactive desktop session). That's kind of a hassle, but I'm dealing with it.

    Anyway, that got me to thinking how do others automate their programs? Does anybody do that, or is it just me? I know about the registry hack to automatically log in, but my company has a policy against that. I don't think I can convert my program...
    Sep 8 '25, 06:30 PM
  • Jessicajessy
    How to Visualize Trend Data (JSON → Interactive Charts in D3.js)
    by Jessicajessy
    Hi everyone,

    I’ve recently been experimenting with some lifestyle and fashion trend datasets—specifically hairstyle trends like textured fringe, bob cut, wolf cut, mid-fade, and layered looks. I wanted to make the data more interactive by building simple visualizations in the browser.

    The dataset I’m using looks something like this (simplified sample):
    [
    { "style": "Bob Cut", "popularity...
    Aug 28 '25, 11:50 AM

Latest Newsletters

Collapse

There are no results that meet this criteria.

Tag Cloud

Collapse

Trending

Collapse

  • mike ross
    Integration Testing in Modern Software
    by mike ross
    Modern applications rely on multiple services, APIs, and databases working together. Even when individual components function correctly, failures often occur in how they interact. This is why integration testing is critical.

    Integration testing verifies that different modules of a system work together as expected. It helps identify issues like API mismatches, broken data flow, and communication failures between services.

    ...
    2 days ago

What's Going On?

Collapse

There are currently 21197 users online. 0 members and 21197 guests.

Most users ever online was 151,082 at 07:23 PM on Dec 8 '25.

Post.Byes Statistics

Collapse

Topics: 815,706   Posts: 3,503,284   Members: 421,826   Active Members: 0
Welcome to our newest member, kalpanadaroch.
Working...