473,543 Members | 1,908 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,606
thread by: HarrySto | last post Dec 6 '22 by: HarrySto
I started creating applications for the phone, and I’m just starting to learn how to write code on my own, for this reason I take the code partly from the Internet. Now I have one theme of two applications and I looked at both codes and realized that they are more similar … Who knows how to avoid this? What would be the code for each unique?...
1
5,103
thread by: ZEDKYRIE | last post Dec 6 '22 by: cactusdata
=DCount("*","tblMainDBASE","Year() = " & ) And (='New Transaction') here is my expression in unbound textbox. where it count record at tblMainDBASE which Date of payment is equal to text159 and type of application is equal to New Transaction. i got 6 record at the table but the unbound textbox says 0. Can anyone help? plsss. thank you
1
5,108
anoble1
thread by: anoble1 | last post Dec 6 '22 by: NeoPa
When I am copying and pasting into excel from MS Access I am only getting a portion on what is in the table. I think it has to do with the large space/spaces is why it won't paste. When I do Replace(,Chr(9),"") or Replace(," ","") it does nothing. Here is what I get when I paste in excel. This is about 41 words. The whole string is 101 words. ...
0
5,685
thread by: RossfromWhitby | last post Dec 5 '22 by: RossfromWhitby
I've been asked to create an application that basically does an archive with a few tweaks along the way. My concern is that when I try to do the copy or delete from the source directory, I may come across some security issues for either one or both of those steps. In the interest of saving processing time I'm using CopyDirectory and...
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
7,640
thread by: boston | last post Nov 29 '22 by: boston
what is linux's special permission? rws? rwt?
0
6,815
thread by: HarrySto | last post Nov 28 '22 by: HarrySto
I am writing code for the “Time Tracker” application and one of the functions does not work, namely the display of the image. What’s wrong? And yet, I want to analyze the entire code, maybe there are still errors that I don’t see. Is there some kind of automatic code analysis?private void initPanel() { panel = new JPanel();{ }
1
9,756
thread by: lumer26 | last post Nov 28 '22 by: Larisabrownb
I am building a student registration system for college The implementation must contain: (1.1) Creation of the constructed record type - with at least 5 variables, three of which have different primitive data types -, declaration of the vector variable of the constructed record type (with at least 3 indices), and registration function...
0
7,322
thread by: markleo | last post Nov 28 '22 by: markleo
I have requirements about execute process pipeline and concurrency tasks, 1. pipe I want to have a library, usage like below: ``` const res = func( xxx ).pipe( yyy ).pipe( zzz ) ``` 2. concurrency tasks ```
0
8,503
thread by: lumer26 | last post Nov 25 '22 by: lumer26
I am building a student registration system for college The implementation must contain:
0
7,156
thread by: DANILIN | last post Nov 25 '22 by: DANILIN
Knapsack 0-1 Python binary & rosettacode & WE Classic Knapsack problem is solved in many ways My newest program synthesizes all ciphers from 0 & 1 adding an extra register and 0 remain on left in cipher Number of comparisons decreases from N! to 2^N for example N=10 & N!=3628800 >> 2^N=1024
0
6,747
thread by: Vinnie | last post Nov 25 '22 by: Vinnie
I'll start by apologising, i'm a newbie and a self taught one at that. That aside, I've put a button on a form and I'm having to click it twice before it posts the record, any suggestions how to fix this (or how to improve what I'm doing? I'd be extremely grateful for any input. Private Sub Command156_Click() On Error GoTo HandleError ...
0
6,777
thread by: HarrySto | last post Nov 25 '22 by: HarrySto
I wrote the code, but it displays only one object when loading, with the rest there is difficulty. Who faced similar situations, how did you solve similar situations? And I also want to conduct a full code analysis in order to see all the errors at once, and not when loading the application into work. Are there any services? public Bean...
0
7,419
thread by: lumer26 | last post Nov 25 '22 by: lumer26
I'm creating a student registration system for college The implementation must contain: (1.1) Creation of the constructed record type - with at least 5 variables, three of which have different primitive data types -, declaration of the vector variable of the constructed record type (with at least 3 indices), and registration function WITH...
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...
0
6,911
thread by: Samuh | last post Nov 23 '22 by: Samuh
I have a project that in some pages, I need to make prints. But in some files I need to print in portrait orientation, and for other files I need to print in landscape orientation. To don't let the person wasting time and patience reconfiguring all the time, is there any way to leave a predefined configuration for some types of pages and other...
0
5,944
thread by: Eoapi | last post Nov 23 '22 by: Eoapi
I am the author of an open source project-Eoapi,In order to optimize my project, I would like to do a simple survey on the function of the product. Please select the four most important options you think: 1. Import CURL support 2. Javascript code sample plug-in 3. API Sharing 4. The API returns a result check 5. Test case 6....
8
9,880
thread by: DanicaDear | last post Nov 22 '22 by: NeoPa
Hi everybody! I snagged a piece of code from Bytes (written by the one and only NeoPa to whom my Access success is somewhat owed!). The code works great but I desire it to do a few more things that I am not able to put together. I did TRY and you experts may laugh at my message box sequence. I laugh at myself too, and then return to Bytes. ...
1
15,556
thread by: fra93 | last post Nov 22 '22 by: dayamafor
Given N as the number of bits, how to find N sequences of (2^N/N) numbers each such that: given an arbitrary number n, there is always one number in each sequence that has hamming distance 1 from n. As a reference hamming distance 1 means that two numbers have only one bit that is different. For example given N=4, one of the possible...
0
5,590
thread by: Jayesh Tak | last post Nov 21 '22 by: Jayesh Tak
how to convert this query to raltional algebra select b.username,b.content,b. from dbo.bank_tweets b where b. = (select MAX(b.) from dbo.bank_tweets b);
1
8,869
thread by: aaander | last post Nov 20 '22 by: dev7060
I'm fairly new to python and was looking for a way to remove all instances of a pattern, a % and the two characters following it, from a text string. I've read the docs on a few functions like str.replace, and filter() hoping for a way to do it. So far I've had no success. I'm aware it's an ascii character, but as I can't forecast which...
2
7,237
thread by: Aftab Ahmad | last post Nov 20 '22 by: Aftab Ahmad
Well! I have a list called List537 and I want to show two number of columns in it, after entering my value (number) in an unbound text box. I know how to get data source in the list with a single WHERE clause however, I want to use multiple criteria to get accurate results. I have a table called "Objectives" where two columns are exists i.e.,...
1
7,301
thread by: Debbieto | last post Nov 20 '22 by: NeoPa
I am hoping someone can help me. I am a complete novice, but have been trying to build a database to track productivity for my team. It uses the template for the Task Manager in Access and I have it working very well. I have created a switchboard and forms to enter in team members, and new tasks, edit existing tasks, and even have some reports...
5
17,732
thread by: Aftab Ahmad | last post Nov 19 '22 by: NeoPa
Hello friends! I am here again with the problem about MS Access VBA Password. I have lost my MS Access VBA Password. Is there any way to recover or remove it through VBA Code or macro not using any third party tool or software?
1
7,654
thread by: EhYay | last post Nov 19 '22 by: dev7060
How do you store whole sentences in a variable? I want to print out sentences using variables. I tested with a 'string' data type and stored individual sentences as an element then used a 'for' function to print them with a delay between each sentence. The result is an error, upon building it, saying at this line: Full code: #include...

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.