The Coding Forums
2,838 FOLLOWERS
Introduce yourself to the Coding Forums community, a place to chat about anything related to programming languages. Discuss C, C++, or other derivatives, ask questions about web development questions using HTML and CSS, and get support with your queries.
The Coding Forums
20h ago
Running Windows 2000 Server here. My ASP.NET app reads an XML file (in
the virtual root on the local machine) like this just fine:
DataSet ds = new DataSet();
ds.ReadXml(Server.MapPath("feeds.xml"),XmlReadMode.InferSchema);
The problem is when I upload it to my host I get a
System.Security.SecurityException when trying to read the XML file. But
you've heard this all before. So I thought I'd try replacing the
dataset reader with a FileStream like this:
DataSet ds = new DataSet()...
Read more ..read more
The Coding Forums
1d ago
Backing up IMAP data to PST format is crucial for users who want a secure and reliable way to store their IMAP email data. IMAP, used by popular email clients such as Thunderbird, Apple Mail, and Outlook, allows for synchronized access across multiple devices. PST files, compatible with Microsoft Outlook, provide an excellent format for organizing and managing emails. However, manually backing up IMAP data to PST can be complex and often requires technical knowledge. Manual processes can...
Read more ..read more
The Coding Forums
2d ago
im trying to play sound onload body
//section 1
works only if i click
button on click test1()
my code works...but doesn't play the file once
body onload fucntion
call runs
in , function test1
trying to play sound
tried doesn't run onload body
i placed my explanation inside my code below
so you can see what I'm doing...I left out full source code including my php code to save time. The parts I've added explains each section what I'm trying to accomplish. I hope
It's easy. I know there...
Read more ..read more
The Coding Forums
3d ago
All this spam is getting a bit silly.
I understand why a business wants to keep their emails, but it would be pretty stupid to feed them into a program written by a fly-by-night one-trick-pony mickey-mouse outfit.
I could be wrong ..read more
The Coding Forums
3d ago
Hi Everybody,
What pseudo-element can I use to style the value of an <INPUT type="text"> after an input has been done?
CSS:
.input[type=text]:focus{
background-color: #ffff00;
}
What expression should I use to style after input has been done, and the focus shifts to another input? This expression should only be triggered if an input has been done and not because the focus has moved elsewhere?
CSS:
.input[type=text]:????????{
background-color:#000000 ..read more
The Coding Forums
4d ago
You need to create a bot that searches for a song in Spotify, then it should send the finished audio file to the user, and not a link. I roughly understand how to find the file, but to send the audio file it’s not very good, here’s the code I got:
Code:
General
import logging
from telegram import Update
from telegram.ext import Application, CommandHandler, MessageHandler, filters, ContextTypes
from spotipy import Spotify
from spotipy.oauth2 import SpotifyClientCredentials
# лог...
Read more ..read more
The Coding Forums
4d ago
Um OST-Dateien in PST zu konvertieren, ist die Verwendung von WebbyAcad OST em PST Converter Software eine hervorragende Wahl.
Vorteile und Hauptmerkmale:
Einfache Bedienung: Benutzerfreundliche Oberfläche für alle Erfahrungsstufen.
Batch-Konvertierung: Mehrere OST-Dateien gleichzeitig konvertieren.
Vorschaufunktion: Vor der Konvertierung Inhalte anzeigen.
Datenintegrität: Originalformat und Metadaten bleiben erhalten.
...
Read more ..read more
The Coding Forums
4d ago
The manual method to convert Microsoft Outlook PST files to MBOX involves using an intermediate step, such as exporting the PST file to an EML format, then importing the EML files into an MBOX-supported email client like Thunderbird. However, this method can be time-consuming and complex, especially for large PST files.
Alternatively, the BLR PST Converter Tool provides a more efficient and straightforward solution. This software directly converts PST files to MBOX format without...
Read more ..read more
The Coding Forums
5d ago
date_diff not working.
Code:
$now = date('Y-m-d');
$pay_day = 2;
$pay_month = 11;
$pay_year = 2024;
$lastdatepaid = $pay_year. "-" .$pay_month. "-" .$pay_day;
echo "<p>Today's Date: $now</p>";
echo "<p>Last Date Paid: $lastdatepaid</p>";
$today = date_create($now);
date_add($today,date_interval_create_from_date_string("1 month, 6 days"));
$nextpaymentdate = date_format($today,"Y-m-d");
echo "<p>Next Payment date: $nextpaymentdate</p>";
$diff = date_diff($today,$nextpaymentdate);
$days =...
Read more ..read more
The Coding Forums
6d ago
Have you ever looked up the question: can you import EML files into Outlook PST? There can be instances in which it becomes necessary to convert files from EML format to PST format. And the cause might differ amongst people. One of the reasons EML files are being converted into PST is because numerous organizations nowadays choose Outlook email client to save their daily database. Outlook offers many advanced-level tools for users. Users who choose the manual file conversion experience so...
Read more ..read more