473,543 Members | 2,365 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Latest Bytes Forum

Support forums for various IT topics. Programming languages, databases, systems, applications and more. Subscribe to a community, participate, ask, share your expertise and network.
 
0
4,625
thread by: Linh Lee | last post Aug 23 '22 by: Linh Lee
resp_code, mails = imap_ssl.search(None, '(FROM "a")') I want to search emails from a specific one letter named user, "a". Example: <a@ocmd.improvidentially.com> <a@akesan.ovoerelaborating.com> Problem is, search results cause all users with an "a" as part of there name to be returned. Example: jane@domain.com
8
7,069
thread by: MNewby | last post Aug 23 '22 by: NeoPa
I have a parent form called CAD_CallDispSlitF with a subform called CAD_Log_DispF. When the user tabs through all the controls on the subform, I would like for it to trigger an event that either refreshes or requries the parent form's records source, and at the same time, make those changes immediately visible on the parent form. Any suggestions...
0
5,519
thread by: autodev2022 | last post Aug 22 '22 by: autodev2022
during write web automation test case, to identify the ui element is boring work, need find one robust xpath, sometimes it is difficult, which xpath generate tool you are using?
31
9,851
thread by: Curious27 | last post Aug 28 '22 by: NeoPa
My SubForm has Multiple TextBoxes, but the there two I need info from for the TextBox in the Footer. TextBox1 Name - txtComponent TextBox2 Name - mAvailQty TextBox3 Name - txtBrass What I'm trying to do is fill txtBrass with the value of mAvailQty when txtComponent shows Brass and fill txtBullet with the value of mAvailQty when txtComponent...
1
6,373
thread by: Linh Lee | last post Aug 22 '22 by: Linh Lee
Want to search folder SPAM, for specific_user@any domain, and delete found mail. Code below ... import imaplib box = imaplib.IMAP4_SSL('imap.mail.yahoo.com', 993) box.login("xxxxxxxx@yahoo.com","xxxxxxxxxx") box.select('SPAM') typ, data = box.search(None, 'from','name@*') for num in data.split():
30
10,044
thread by: MNewby | last post Aug 24 '22 by: NeoPa
Let me first explain the application, and state early on that I am an amateur at VBA. I am creating an Access database that will function similar to Computer Aided Dispatch for small police agencies. I have a table called TourT with a PK of ID. I have a form named CAD_UnitSetup with its record source as the above table, TourT. I have...
0
3,945
thread by: Linh Lee | last post Aug 19 '22 by: Linh Lee
Any python experts willing to share there knowledge, please?! Want to: 1. Search ALL folders including SPAM, for "specific_user@ANY (wildcard) domain" 2. Move those emails to folder called DUMP 3. Delete contents of DUMP Unfortunately I can't figure out how to do what I need above in Yahoo Mail! My code so far below:
6
5,876
thread by: CJ_London | last post Aug 18 '22 by: CJ_London
I use a similar technique to ADezii but I create the form with around 50 textboxes plus associated labels plus 50 labels in the header and 50 textboxes in the footer - so around 200 controls altogether. Labels are named in a similar way T0, T1, T2 etc for textboxes, L0, L1 for associated labels, H0, H1.. for header labels and as you may guess...
0
3,261
SwissProgrammer
thread by: SwissProgrammer | last post Aug 17 '22 by: SwissProgrammer
// The next line was OK until I used w of std::wcout std::wcout << "bitset<8>(data).to_string() = ).to_string() << "] binary\n\n\n"; // error: no match for 'operator<<' (operand types are 'std::basic_ostream<wchar_t>' and 'std::__cxx11::basic_string<char>')
0
3,023
SwissProgrammer
thread by: SwissProgrammer | last post Aug 16 '22 by: SwissProgrammer
I have been reading Stroustrup's C++11 fourth edition and studying it. But, I can't seem to make the following work. I have a binary, utf-8 file with the proper BOM. In that file is the letter "e" which I want to read as a const wchar_t* or at least as a wchar_t . This is simplistic (ASCII characters) for now. I later want to be able to...
2
6,143
thread by: sleach | last post Aug 17 '22 by: NeoPa
The error i get is runtime error 3061. "Too few parameters. Expected 2. here is the code: Private Sub Form_Load() Dim dbs As DAO.Database Dim TstVal As String Dim StrSQL As String Dim rsSql As DAO.Recordset
0
2,799
thread by: leo001 | last post Aug 16 '22 by: leo001
I have manually created the master-slave environment here, the synchronization can be normal, but viewing the synchronization information prompts the error marked as follows, what is the reason? The database has only one omm account $ gs_ctl query -D /opt/opengauss/data : gs_ctl query ,datadir is /opt/opengauss/data HA state: local_role :...
0
2,775
thread by: Andrwe | last post Aug 15 '22 by: Andrwe
I have been writing PHP for a good 20 years*, but before that I wrote COBOL, and I still write C after almost 40 years of it. COBOL had a feature called templates - which could have been wonderful if it did what I thought it did, but it didn't. The problem I want to address is that I quite often want to re-use PHP code for an application...
0
2,957
thread by: dwinrosy | last post Aug 15 '22 by: dwinrosy
Hello, everyone. Today I will teach you to draw 2D graphics on DWIN screen by Keil c51 development. First, I will introduce the basic touch control in the development guide of DGUS. Note that a basic graphics display control can only draw one type of graphics. Next, I'll describe the data storage format of the basic graphics control at vp....
8
7,862
thread by: jithb4u | last post Aug 18 '22 by: NeoPa
In an existing Form I want to show every field and data.. For that I have to go Form Design View and Insert Existing Field and manually drag and drop every field to the current form.... I wonder if there is any chance to Insert Existing Fields to a Form via a VBA code.. Because I created the table using import from excel and the field name...
0
1,986
thread by: letsshoes | last post Aug 14 '22 by: letsshoes
#include<iostream> #include<cstring> #include<cstdlib> #include<iomanip> #include<windows.h>
0
6,931
thread by: Synco | last post Aug 14 '22 by: Synco
I purchased 7 coruses from Udemy to go deep in python,R and AI. Could someone help me to say where should i start, then pass and what should i take last and if i have to return one this courses for a refound by redundant information? please.I was in a bootcamp of web programming in python and i learned python but that was months ago. I want to...
0
6,669
thread by: jmwhawk | last post Aug 13 '22 by: jmwhawk
Brand new to Python. I am looking on advice on how to create a set of buttons on top of a label in my main window. These 5-6 buttons will be chosen from 3 excel sheets based by the user values set in a QSpinBox (values 1-20) and a QSlider (values 1-3). Then the buttons will be generated by a QButton and each button can be closed after user...
1
7,247
thread by: Osama3bdelwahab | last post Aug 14 '22 by: Luuk
I have a textbox that i use to find values in listbox , when i find what i search i have a button to show more details about the selected value of the listbox , how i can tell the button that it shows the selected value details in the other form
5
17,232
thread by: Chris3020 | last post Nov 23 '22 by: Chris3020
I have a simple utility expecting three command-line arguments: ./myutil -k 123 45 argv is a text flag of some sort: memcmp() against allowed flags; works! argv and argv need to sit in unsigned 32-bit integers and are required to be >= 1. For now I'm using: strstr() to look for "-" ...and assuming absence of "-" means +ve...
3
8,810
thread by: OSWOM | last post Aug 9 '22 by: NeoPa
Hello am trying opening a report from a form based on the current record selected which is a date but it cant display the specified DATE record it only diplays all dates please help me with this.....? THIS FORMULAR WORK WITH OTHER RECODE'S BUT NOT DATES WHERE CONDITION: ="DATE_PAID=" & OR VISUAL BASIC: DoCmd.OpenReport "TUTION_R",...
0
8,729
thread by: annayun | last post Aug 8 '22 by: annayun
I want to migrate data from Postgresql to MSSQL server using Agent Job schedule of Postgresql. Is it possible?
17
11,433
thread by: mshakeelattari | last post Aug 15 '22 by: isladogs
Is it possible to see if more than one labels (on different forms/reports) are having same tag property? Can someone help me?
0
8,795
thread by: Twizzlers | last post Aug 6 '22 by: Twizzlers
Looking for software to auto-subscribe people to twitter lists Let's say there is an account CamiRusso My task is to scrape her followers and then add her followers to the Twitter list, are there similar software, my search is not successful :) python twitter-oauth twitterapi-python
0
34,908
thread by: Stoney L | last post Aug 6 '22 by: Stoney L
I wanted to login the Minecraft: Education Edition with my Microsoft account, but it said I'm not from any company, organization or school, so I can't login.But, why can't I login because my account is a personal account?!

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.