473,543 Members | 3,246 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.
 
1
9,693
thread by: 9021165690 | last post Oct 15 '22 by: zmbd
how should I copy the code for converting the excelsheets data into pie charts please tell me
5
18,605
thread by: Davism4 | last post Oct 23 '22 by: NeoPa
Hi All, I have a table NonReworkableparts with 2 fields of interest , Program Number and PartNo. On my form the idea is to select a program number from a combo box and when I type in a part number if it is in the table then it gives out a msgbox. There will be multiple part numbers, that's why I need to make sure I match against the...
1
12,720
thread by: walldm48 | last post Feb 9 '23 by: pritikumari
Hi,i'm writing sql trigger that updates some columns in table. I have to write that this trigger fires only after commit. I read some articles about this topic but in the most it is said to use procedure. But I have to do it with trigger. CREATE OR REPLACE TRIGGER tr_reset_er_encours AFTER INSERT OR UPDATE ON T FOR EACH ROW BEGIN IF...
0
10,232
thread by: PCGram | last post Oct 4 '22 by: PCGram
I am updating an old Access application with a backend sql server. In a report, I have a subreport based on a very complex query. I would like to run the data source as a pass-thru query. When I do, I get this error: "You cannot use a pass-through query or a non-fixed column crosstab query as a record source for a subform or subreport." ...
1
14,331
thread by: XIAOLAOHU | last post Dec 3 '22 by: carlamartinez02
What is Elastic Computing? Elastic computing offers organizations the ability to swiftly expand or shrink IT infrastructure resources dynamically to meet changing demand. This is done automatically, without you having to plan capacity and peak usage ahead of time, meaning that the resources are there when you need them and released when you...
0
8,501
thread by: shantun007 | last post Oct 4 '22 by: shantun007
I am trying to calculate population genetic statistics with DendroPy and need help reading my data. I had a SNP .vcf file from 8 individuals of the same specie and the same population. I converted this file into a Phylip file to be able to read it into DendroPy. Now, I tried to read the data first usingdendropy.DnaCharacterMatrix.get, but...
2
20,098
thread by: YTAIGamer | last post Aug 29 '23 by: vipulguptaseo
I'm an experienced programmer, but new to AI. I'm trying to learn ML techniques by building a bot to play a video game. I'm documenting my process as I go. The game I'm focusing on 1st is TFT (TeamFightTactics) which is in the AutoBattler genre - Essentially, you try to build the strongest army, but there are millions of choices & pros/cons to...
0
8,827
thread by: kjhyder | last post Oct 3 '22 by: kjhyder
I have an Access database that I send out emails to our customers. When the command button is selected it opens Microsoft Office and generates the emails for me to send. We have now created a general email address (like info@abccompany.com) that is shared among my team. It is possible to change the from address in Outlook for the emails generated...
0
8,624
SwissProgrammer
thread by: SwissProgrammer | last post Sep 30 '22 by: SwissProgrammer
I am using C and C++, whichever works. Prefer Win32 if that works. CodeBlocks. No dot net. No visual studio. No MFC. I tried writing this on my own, but it is beyond me. My latest attempt has been the following: I have been studying DrawText function from microsoft.com to write text to a bitmap. Then I tried using similar to from...
0
6,414
thread by: chloesad91 | last post Sep 29 '22 by: chloesad91
Hi everyone I have a problem: Locally my form is sent, I receive the answer by email without worries: > {status: 201, info: {…}} FormContact.js:31 Email envoyé On the other hand, the posting on Cpanel went well, the node js server starts perfectly, the site is reactjs is functional, but the contact form no longer works.
1
14,347
thread by: accecssuser | last post Sep 29 '22 by: isladogs
Hey there, I am dealing with two forms in access. One of them has a "Date Code" field which asks the user to enter a date. I want it to be such that if the date entered by the user is greater than a "Fix Date" date which appears in another form, I would like to throw a notification saying that the DateCode must precede the Fix Date. I am trying...
6
22,028
DJRhino1175
thread by: DJRhino1175 | last post Oct 24 '22 by: NeoPa
I'm getting runtime Error 2487: The object Type argument for the action or method is blank or invalid It triggers at line 36 I have been using this code for awhile, but all of a sudden it stopped working. Can anyone see something I have wrong? Private Sub btnAuditEmail_Click() On Error GoTo Error
0
4,949
thread by: leo001 | last post Sep 27 '22 by: leo001
database audit ⚫ The audit log records the user's operations on the database, such as start and stop, connection, DDL, DML, DCL, etc. The audit log mechanism mainly enhances the ability of the database system to trace back and provide evidence for illegal operations. ⚫ Users can configure which statements or operations are recorded in the...
0
4,666
thread by: leo001 | last post Sep 27 '22 by: leo001
Access control ⚫ Manage users' access control rights to the database, including database system rights and object rights. ⚫ Support role-based access control mechanism, associate roles and permissions, and manage user access control permissions by assigning permissions to corresponding roles and then granting roles to users. Among them, the...
0
4,661
thread by: Yacine Si Tayeb | last post Sep 27 '22 by: Yacine Si Tayeb
For those of you who often use databases, you may wonder: 1. How do I check what SQL is currently being executed by the database, and in what state? 2. How do I terminate abnormal SQL? For instance, if a SELECT statement used to query a table with massive data does not carry query conditions, it would drag down the performance of the entire...
1
11,009
thread by: Ronak mishra | last post Oct 4 '22 by: dev7060
I am new to using laptop so I don't know much about it , so pls help on how to download c++ compiler , how to run a programm , what is git and github , what is g++.
3
13,905
thread by: Ronak mishra | last post Oct 17 '22 by: dev7060
I don't know why but i am getting an error showing "command-line error: missing source file name C/C++(593) '' Pls help me as I am new to it.
2
8,235
thread by: Usman55 | last post Sep 27 '22 by: XPS35
Hello all, Hope you all fine I have an access database for pay pension to pensioners in my database i have some inactive accounts my format is: account number= 1274A name of pensioner= umair khalid in my transaction form combo box hide my data as 1274 but when i put 1274A transaction will done.
1
10,894
thread by: vlnikolic | last post Oct 4 '22 by: dev7060
hello i would like to create a tree like structure in c++. since the number of children per node is arbitrary i would like to use stl vector for tree creation. tree should look something like this: https://i.postimg.cc/8zzT6jvJ/Diagram1.png also
0
4,265
thread by: busyrajkumar | last post Sep 24 '22 by: busyrajkumar
How To Set Date Expiry User Id and Password
0
1,199
thread by: Usman55 | last post Sep 24 '22 by: Usman55
Hello everyone, Hope you all fine. i have an access database to record the pension for pensioners i want single transaction in a month for every account (not Duplicate in same month) in transaction form please help me to do this. Database file link attached for download. ...
3
35,844
thread by: saltron | last post Nov 6 '23 by: codiumltd
Greetings developers, this is my first time here I have been battling with this problem for days now and hope I can find help here. I was trying to scrape klarna.com/us but whenever I make a requests for the sub categories and beyond am faced with an error message. I first noticed this when I open it on incognito, and ever since have...
1
8,733
sofiatarhonska
thread by: sofiatarhonska | last post Oct 22 '22 by: Lord123
Probably everyone knows that ReactJS is a wonderful library for building web-applications. However, it doesn't look so easy to add some backend features to it. For example, how would you build in a contact form? In this post I'm going to cover some methods on how to do it simply. First of all, you cannot send emails with just React, you...
2
18,044
thread by: Sachine223 | last post Oct 22 '22 by: Hacon
I have a WordPress website that have affiliate products on Amazon. I want to integrate my website with Excel Sheet to get all my customers data those have visited my website, clicks on it and also purchased products from Amazon.
1
11,185
thread by: Gilley178 | last post Oct 4 '22 by: dev7060
Good day, The purpose of my script is to create a small dictionary that is saved to a file using pickle and print the entire contents of the dictionary for the user. My script prompts the user to make 1 of 3 choices: Selection 1 is intended to print all contents of a dictionary loaded using pickle. Selection 2 appends to the existing...

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.