473,322 Members | 1,379 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,322 software developers and data experts.

If statement, with multiple options

I currently have a button once clicked, invokes the following:

If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If

However, there are 11 other fields in the subform that i'd like to be
included. However, when I did this:

If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
If City_Select = -1 Then
Forms!ProspectForm!City = [City]
End If
If ST_Select = -1 Then
Forms!ProspectForm!State = [ST]
End If
If ZipCode_Select = -1 Then
Forms!ProspectForm!ZipCode = [ZipCode]
End If
If Zip4_Select = -1 Then
Forms!ProspectForm!Zip4 = [Zip4]
End If
If MSA_Select = -1 Then
Forms!ProspectForm!MSA = [MSA]
End If
If Phone_Select = -1 Then
Forms!ProspectForm!Phone = [Phone]
End If
If FaxPhone_Select = -1 Then
Forms!ProspectForm!Fax = [Fax Phone]
End If
If TickerSymbol_Select = -1 Then
Forms!ProspectForm!TickerSymbol = [TICKER SYMBOL]
End If
If StockExchangeCode_Select = -1 Then
Forms!ProspectForm!StockExchangeCode = [STOCK EXCHANGE CODE]
End If

It didn't work. What am I doing wrong?

PS - I should say, as long as only one of them is checked, it will
work. But if I check all, then hit my button, it won't do it.

Nov 6 '07 #1
7 2560
On Nov 6, 12:40 pm, magmike <magmi...@yahoo.comwrote:
I currently have a button once clicked, invokes the following:

If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If

However, there are 11 other fields in the subform that i'd like to be
included. However, when I did this:

If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
If City_Select = -1 Then
Forms!ProspectForm!City = [City]
End If
If ST_Select = -1 Then
Forms!ProspectForm!State = [ST]
End If
If ZipCode_Select = -1 Then
Forms!ProspectForm!ZipCode = [ZipCode]
End If
If Zip4_Select = -1 Then
Forms!ProspectForm!Zip4 = [Zip4]
End If
If MSA_Select = -1 Then
Forms!ProspectForm!MSA = [MSA]
End If
If Phone_Select = -1 Then
Forms!ProspectForm!Phone = [Phone]
End If
If FaxPhone_Select = -1 Then
Forms!ProspectForm!Fax = [Fax Phone]
End If
If TickerSymbol_Select = -1 Then
Forms!ProspectForm!TickerSymbol = [TICKER SYMBOL]
End If
If StockExchangeCode_Select = -1 Then
Forms!ProspectForm!StockExchangeCode = [STOCK EXCHANGE CODE]
End If

It didn't work. What am I doing wrong?

PS - I should say, as long as only one of them is checked, it will
work. But if I check all, then hit my button, it won't do it.
I don't see anything obvious wrong with your code, except that I am
baffled as to what you are trying to do. Are you allowing the user to
select which fields appear on a form or report? Is
StockExchangeCode_Select (for example) a checkbox on the same form?
Is StockExchangeCode a textbox? Or are you trying to create some kind
of filter?

Nov 6 '07 #2
On Nov 6, 1:41 pm, OldPro <rrossk...@sbcglobal.netwrote:
On Nov 6, 12:40 pm, magmike <magmi...@yahoo.comwrote:


I currently have a button once clicked, invokes the following:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
However, there are 11 other fields in the subform that i'd like to be
included. However, when I did this:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
If City_Select = -1 Then
Forms!ProspectForm!City = [City]
End If
If ST_Select = -1 Then
Forms!ProspectForm!State = [ST]
End If
If ZipCode_Select = -1 Then
Forms!ProspectForm!ZipCode = [ZipCode]
End If
If Zip4_Select = -1 Then
Forms!ProspectForm!Zip4 = [Zip4]
End If
If MSA_Select = -1 Then
Forms!ProspectForm!MSA = [MSA]
End If
If Phone_Select = -1 Then
Forms!ProspectForm!Phone = [Phone]
End If
If FaxPhone_Select = -1 Then
Forms!ProspectForm!Fax = [Fax Phone]
End If
If TickerSymbol_Select = -1 Then
Forms!ProspectForm!TickerSymbol = [TICKER SYMBOL]
End If
If StockExchangeCode_Select = -1 Then
Forms!ProspectForm!StockExchangeCode = [STOCK EXCHANGE CODE]
End If
It didn't work. What am I doing wrong?
PS - I should say, as long as only one of them is checked, it will
work. But if I check all, then hit my button, it won't do it.

I don't see anything obvious wrong with your code, except that I am
baffled as to what you are trying to do. Are you allowing the user to
select which fields appear on a form or report? Is
StockExchangeCode_Select (for example) a checkbox on the same form?
Is StockExchangeCode a textbox? Or are you trying to create some kind
of filter?- Hide quoted text -

- Show quoted text -
the fields named select, are check boxes for the similarly named text
box. I am trying to update the values of the main form, with the
values of the subform, which come from separate sources. I don't
always want all the fields to update though. I'd like to be able to
select which fields in each instance get copied over.

Thanks!

Nov 6 '07 #3
magmike wrote:
I currently have a button once clicked, invokes the following:

If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If

However, there are 11 other fields in the subform that i'd like to be
included. However, when I did this:

If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
If City_Select = -1 Then
Forms!ProspectForm!City = [City]
End If
If ST_Select = -1 Then
Forms!ProspectForm!State = [ST]
End If
If ZipCode_Select = -1 Then
Forms!ProspectForm!ZipCode = [ZipCode]
End If
If Zip4_Select = -1 Then
Forms!ProspectForm!Zip4 = [Zip4]
End If
If MSA_Select = -1 Then
Forms!ProspectForm!MSA = [MSA]
End If
If Phone_Select = -1 Then
Forms!ProspectForm!Phone = [Phone]
End If
If FaxPhone_Select = -1 Then
Forms!ProspectForm!Fax = [Fax Phone]
End If
If TickerSymbol_Select = -1 Then
Forms!ProspectForm!TickerSymbol = [TICKER SYMBOL]
End If
If StockExchangeCode_Select = -1 Then
Forms!ProspectForm!StockExchangeCode = [STOCK EXCHANGE CODE]
End If

It didn't work. What am I doing wrong?

PS - I should say, as long as only one of them is checked, it will
work. But if I check all, then hit my button, it won't do it.
Does it run but not work? Or do you get an error.

On your StockExchangeCode line you could move the next line onto the
same line...otherwise you might want an EndIF

If you open your code window and click on the left hand vertical bar
next to "If Address_Select = -1 Then" line, you can step through the
code when you run the process.

Nov 6 '07 #4
On Nov 6, 1:46 pm, Salad <o...@vinegar.comwrote:
magmike wrote:
I currently have a button once clicked, invokes the following:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
However, there are 11 other fields in the subform that i'd like to be
included. However, when I did this:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
If City_Select = -1 Then
Forms!ProspectForm!City = [City]
End If
If ST_Select = -1 Then
Forms!ProspectForm!State = [ST]
End If
If ZipCode_Select = -1 Then
Forms!ProspectForm!ZipCode = [ZipCode]
End If
If Zip4_Select = -1 Then
Forms!ProspectForm!Zip4 = [Zip4]
End If
If MSA_Select = -1 Then
Forms!ProspectForm!MSA = [MSA]
End If
If Phone_Select = -1 Then
Forms!ProspectForm!Phone = [Phone]
End If
If FaxPhone_Select = -1 Then
Forms!ProspectForm!Fax = [Fax Phone]
End If
If TickerSymbol_Select = -1 Then
Forms!ProspectForm!TickerSymbol = [TICKER SYMBOL]
End If
If StockExchangeCode_Select = -1 Then
Forms!ProspectForm!StockExchangeCode = [STOCK EXCHANGE CODE]
End If
It didn't work. What am I doing wrong?
PS - I should say, as long as only one of them is checked, it will
work. But if I check all, then hit my button, it won't do it.

Does it run but not work? Or do you get an error.

On your StockExchangeCode line you could move the next line onto the
same line...otherwise you might want an EndIF

If you open your code window and click on the left hand vertical bar
next to "If Address_Select = -1 Then" line, you can step through the
code when you run the process.- Hide quoted text -

- Show quoted text -
No errors. it just works one line at a time.
Once it updates one line. I have to uncheck it, the check another,
then push the button again. It's a lot of check, unchecking and button
pushing. I just want it to work once.

On the stock exchange line, I'm not sure what you mean. Could you show
me?

Nov 6 '07 #5
On Nov 6, 1:30 pm, magmike <magmi...@yahoo.comwrote:
On Nov 6, 1:46 pm, Salad <o...@vinegar.comwrote:


magmike wrote:
I currently have a button once clicked, invokes the following:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
However, there are 11 other fields in the subform that i'd like to be
included. However, when I did this:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
If City_Select = -1 Then
Forms!ProspectForm!City = [City]
End If
If ST_Select = -1 Then
Forms!ProspectForm!State = [ST]
End If
If ZipCode_Select = -1 Then
Forms!ProspectForm!ZipCode = [ZipCode]
End If
If Zip4_Select = -1 Then
Forms!ProspectForm!Zip4 = [Zip4]
End If
If MSA_Select = -1 Then
Forms!ProspectForm!MSA = [MSA]
End If
If Phone_Select = -1 Then
Forms!ProspectForm!Phone = [Phone]
End If
If FaxPhone_Select = -1 Then
Forms!ProspectForm!Fax = [Fax Phone]
End If
If TickerSymbol_Select = -1 Then
Forms!ProspectForm!TickerSymbol = [TICKER SYMBOL]
End If
If StockExchangeCode_Select = -1 Then
Forms!ProspectForm!StockExchangeCode = [STOCK EXCHANGE CODE]
End If
It didn't work. What am I doing wrong?
PS - I should say, as long as only one of them is checked, it will
work. But if I check all, then hit my button, it won't do it.
Does it run but not work? Or do you get an error.
On your StockExchangeCode line you could move the next line onto the
same line...otherwise you might want an EndIF
If you open your code window and click on the left hand vertical bar
next to "If Address_Select = -1 Then" line, you can step through the
code when you run the process.- Hide quoted text -
- Show quoted text -

No errors. it just works one line at a time.
Once it updates one line. I have to uncheck it, the check another,
then push the button again. It's a lot of check, unchecking and button
pushing. I just want it to work once.

On the stock exchange line, I'm not sure what you mean. Could you show
me?- Hide quoted text -

- Show quoted text -
Is there more code than this? If so, please post the full code so we
can truly see what's going on. I am confused because you aren't using
full references to fields.

Perhaps this would work (each IF is a single line):
If Me!Address_Select Then Forms!ProspectForm!Address = Me![Address]
If Me!City_Select Then Forms!ProspectForm!City = Me![City]
If Me!ST_Select Then Forms!ProspectForm!State = Me![ST]
If Me!ZipCode_Select Then Forms!ProspectForm!ZipCode = Me![ZipCode]
If Me!Zip4_Select Then Forms!ProspectForm!Zip4 = Me![Zip4]
If Me!MSA_Select Then Forms!ProspectForm!MSA = Me![MSA]
If Me!Phone_Select Then Forms!ProspectForm!Phone = Me![Phone]
If Me!FaxPhone_Select Then Forms!ProspectForm!Fax = Me![Fax Phone]
If Me!TickerSymbol_Select Then Forms!ProspectForm!TickerSymbol = Me!
[TICKER SYMBOL]
If Me!StockExchangeCode_Select Then Forms!ProspectForm!
StockExchangeCode = Me![STOCK EXCHANGE CODE]

Because the Select fields are CheckBoxes, they already have a True/
False value, so you don't need the =-1 part of your logical test.
This means that if your checkbox is checked, your statement is
evaluated as: If True then do this. To save yourself some typing, you
only need to use the block form of the IF statement if you're
executing more than one command. So you can have your IF all on one
line and exclude the End If part of the statement.

Block Form:
If Logical Test = True Then
Do Something Here
End If

Single-Line Form:
If Logical Test = True Then Do Something Here

HTH,
Jana

Nov 6 '07 #6
On Nov 6, 3:06 pm, Jana <Bauer.J...@gmail.comwrote:
On Nov 6, 1:30 pm, magmike <magmi...@yahoo.comwrote:


On Nov 6, 1:46 pm, Salad <o...@vinegar.comwrote:
magmike wrote:
I currently have a button once clicked, invokes the following:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
However, there are 11 other fields in the subform that i'd like to be
included. However, when I did this:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
If City_Select = -1 Then
Forms!ProspectForm!City = [City]
End If
If ST_Select = -1 Then
Forms!ProspectForm!State = [ST]
End If
If ZipCode_Select = -1 Then
Forms!ProspectForm!ZipCode = [ZipCode]
End If
If Zip4_Select = -1 Then
Forms!ProspectForm!Zip4 = [Zip4]
End If
If MSA_Select = -1 Then
Forms!ProspectForm!MSA = [MSA]
End If
If Phone_Select = -1 Then
Forms!ProspectForm!Phone = [Phone]
End If
If FaxPhone_Select = -1 Then
Forms!ProspectForm!Fax = [Fax Phone]
End If
If TickerSymbol_Select = -1 Then
Forms!ProspectForm!TickerSymbol = [TICKER SYMBOL]
End If
If StockExchangeCode_Select = -1 Then
Forms!ProspectForm!StockExchangeCode = [STOCK EXCHANGE CODE]
End If
It didn't work. What am I doing wrong?
PS - I should say, as long as only one of them is checked, it will
work. But if I check all, then hit my button, it won't do it.
Does it run but not work? Or do you get an error.
On your StockExchangeCode line you could move the next line onto the
same line...otherwise you might want an EndIF
If you open your code window and click on the left hand vertical bar
next to "If Address_Select = -1 Then" line, you can step through the
code when you run the process.- Hide quoted text -
- Show quoted text -
No errors. it just works one line at a time.
Once it updates one line. I have to uncheck it, the check another,
then push the button again. It's a lot of check, unchecking and button
pushing. I just want it to work once.
On the stock exchange line, I'm not sure what you mean. Could you show
me?- Hide quoted text -
- Show quoted text -

Is there more code than this? If so, please post the full code so we
can truly see what's going on. I am confused because you aren't using
full references to fields.

Perhaps this would work (each IF is a single line):
If Me!Address_Select Then Forms!ProspectForm!Address = Me![Address]
If Me!City_Select Then Forms!ProspectForm!City = Me![City]
If Me!ST_Select Then Forms!ProspectForm!State = Me![ST]
If Me!ZipCode_Select Then Forms!ProspectForm!ZipCode = Me![ZipCode]
If Me!Zip4_Select Then Forms!ProspectForm!Zip4 = Me![Zip4]
If Me!MSA_Select Then Forms!ProspectForm!MSA = Me![MSA]
If Me!Phone_Select Then Forms!ProspectForm!Phone = Me![Phone]
If Me!FaxPhone_Select Then Forms!ProspectForm!Fax = Me![Fax Phone]
If Me!TickerSymbol_Select Then Forms!ProspectForm!TickerSymbol = Me!
[TICKER SYMBOL]
If Me!StockExchangeCode_Select Then Forms!ProspectForm!
StockExchangeCode = Me![STOCK EXCHANGE CODE]

Because the Select fields are CheckBoxes, they already have a True/
False value, so you don't need the =-1 part of your logical test.
This means that if your checkbox is checked, your statement is
evaluated as: If True then do this. To save yourself some typing, you
only need to use the block form of the IF statement if you're
executing more than one command. So you can have your IF all on one
line and exclude the End If part of the statement.

Block Form:
If Logical Test = True Then
Do Something Here
End If

Single-Line Form:
If Logical Test = True Then Do Something Here

HTH,
Jana- Hide quoted text -

- Show quoted text -
That did, thanks! No there wasn't any other code. But for some reason,
it works perfect with the line version. Thanks a million!

I assume, that if I wanted to insert data straight into the table from
the subform, it would look like this:

If Me!Address_Select Then Table!ProspectTable!Address = Me![Address]
WHERE Table!ProspectTable!ID = Me!Forms!ProspectForm!ID

?

Nov 6 '07 #7
On Nov 6, 3:23 pm, magmike <magmi...@yahoo.comwrote:
On Nov 6, 3:06 pm, Jana <Bauer.J...@gmail.comwrote:


On Nov 6, 1:30 pm, magmike <magmi...@yahoo.comwrote:
On Nov 6, 1:46 pm, Salad <o...@vinegar.comwrote:
magmike wrote:
I currently have a button once clicked, invokes the following:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
However, there are 11 other fields in the subform that i'd like to be
included. However, when I did this:
If Address_Select = -1 Then
Forms!ProspectForm!Address = [Address]
End If
If City_Select = -1 Then
Forms!ProspectForm!City = [City]
End If
If ST_Select = -1 Then
Forms!ProspectForm!State = [ST]
End If
If ZipCode_Select = -1 Then
Forms!ProspectForm!ZipCode = [ZipCode]
End If
If Zip4_Select = -1 Then
Forms!ProspectForm!Zip4 = [Zip4]
End If
If MSA_Select = -1 Then
Forms!ProspectForm!MSA = [MSA]
End If
If Phone_Select = -1 Then
Forms!ProspectForm!Phone = [Phone]
End If
If FaxPhone_Select = -1 Then
Forms!ProspectForm!Fax = [Fax Phone]
End If
If TickerSymbol_Select = -1 Then
Forms!ProspectForm!TickerSymbol = [TICKER SYMBOL]
End If
If StockExchangeCode_Select = -1 Then
Forms!ProspectForm!StockExchangeCode = [STOCK EXCHANGE CODE]
End If
It didn't work. What am I doing wrong?
PS - I should say, as long as only one of them is checked, it will
work. But if I check all, then hit my button, it won't do it.
Does it run but not work? Or do you get an error.
On your StockExchangeCode line you could move the next line onto the
same line...otherwise you might want an EndIF
If you open your code window and click on the left hand vertical bar
next to "If Address_Select = -1 Then" line, you can step through the
code when you run the process.- Hide quoted text -
- Show quoted text -
No errors. it just works one line at a time.
Once it updates one line. I have to uncheck it, the check another,
then push the button again. It's a lot of check, unchecking and button
pushing. I just want it to work once.
On the stock exchange line, I'm not sure what you mean. Could you show
me?- Hide quoted text -
- Show quoted text -
Is there more code than this? If so, please post the full code so we
can truly see what's going on. I am confused because you aren't using
full references to fields.
Perhaps this would work (each IF is a single line):
If Me!Address_Select Then Forms!ProspectForm!Address = Me![Address]
If Me!City_Select Then Forms!ProspectForm!City = Me![City]
If Me!ST_Select Then Forms!ProspectForm!State = Me![ST]
If Me!ZipCode_Select Then Forms!ProspectForm!ZipCode = Me![ZipCode]
If Me!Zip4_Select Then Forms!ProspectForm!Zip4 = Me![Zip4]
If Me!MSA_Select Then Forms!ProspectForm!MSA = Me![MSA]
If Me!Phone_Select Then Forms!ProspectForm!Phone = Me![Phone]
If Me!FaxPhone_Select Then Forms!ProspectForm!Fax = Me![Fax Phone]
If Me!TickerSymbol_Select Then Forms!ProspectForm!TickerSymbol = Me!
[TICKER SYMBOL]
If Me!StockExchangeCode_Select Then Forms!ProspectForm!
StockExchangeCode = Me![STOCK EXCHANGE CODE]
Because the Select fields are CheckBoxes, they already have a True/
False value, so you don't need the =-1 part of your logical test.
This means that if your checkbox is checked, your statement is
evaluated as: If True then do this. To save yourself some typing, you
only need to use the block form of the IF statement if you're
executing more than one command. So you can have your IF all on one
line and exclude the End If part of the statement.
Block Form:
If Logical Test = True Then
Do Something Here
End If
Single-Line Form:
If Logical Test = True Then Do Something Here
HTH,
Jana- Hide quoted text -
- Show quoted text -

That did, thanks! No there wasn't any other code. But for some reason,
it works perfect with the line version. Thanks a million!

I assume, that if I wanted to insert data straight into the table from
the subform, it would look like this:

If Me!Address_Select Then Table!ProspectTable!Address = Me![Address]
WHERE Table!ProspectTable!ID = Me!Forms!ProspectForm!ID

?- Hide quoted text -

- Show quoted text -
Mike:
The Me! additions are probably what did it, as that references the
current form you are on. I have never updated a table like that, so
I'm not sure if that will work...make a backup copy, and give it a
shot!

Glad I could help,
Jana

Nov 6 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Dennis M. Marks | last post by:
Please look at page http://www.dcs-chico.com/~denmarks/amtrak.html I am trying to change the color of the first dropdown menu but everything that I have tried has no effect. If I put the style...
3
by: Max Weber | last post by:
Try to run the code below in a page. You will notice than when you switch the multiple attribute of the SELECT tag, only one option is displayed as selected although multiple options have ben...
1
by: d.schulz81 | last post by:
Holas, I want to do the following: If one entry in multiple select "domain" is selected, i want to change the content in dropdown "typ" dynamically according to the selected domain. If more...
6
by: Adam Tilghman | last post by:
Hi all, I have found that IE doesn't seem to respect the <SELECT> "multiple" attribute when set using DOM methods, although the attribute/property seems to exist and is updated properly. Those...
2
by: areef.islam | last post by:
Hi, I am kinda new to javascript and I am having this problem with selecting multiple options from a select tag. Hope someone can help me out here. here is my code...
3
by: imrantbd | last post by:
This is my first problem.Please help me. I have the following code: <head> <script language="JavaScript"> function addSrcToDestList() { destList1 = window.document.forms.destList; srcList...
3
by: imrantbd | last post by:
I need array type name like "destList" must use for my destlist select box,not a single name.Or need a solution to capture multiple value of "destList" select box and send all selected value in php...
2
by: rn5a | last post by:
In a ASP applicatiuon, the FOrm has a textbox & a select list where the admin can select multiple options. Basically the admin has to enter the name of a new coach in the textbox & select the...
25
by: bonneylake | last post by:
Hey Everyone, Well i am not sure if my question needs to be here or in coldfusion. If i have my question is in the wrong section i am sorry in advance an will move it to the correct section. ...
5
by: tomaz | last post by:
hi everybody i've been searching a clean and correct way to use very long if statements. multiple options: if (cond1 && cond2 && (cond3 && cond4) && (cond5 || cond6) { // do this }
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

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.