473,480 Members | 2,014 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Writing Code for a better FIND command

Hi Again;

I have had help from this group before and want to thank everyone,
especially PCDatasheet.
My database includes a field called HomePhone, it uses the (xxx)xxx-xxx
format to include area code.
When a customer calls, I currently use Ctrl F with the HomePhone field
highlighted. Then I enter the last 4 digits and use the find next option.
This is cumbersome, so I have tried several methods (including a macro)
using comand buttons, but nothing seems quite right.

The future of this function in my database is more complicated than just
using Ctrl F function and using find next repeatedly. I am hoping to
incorporate a list or combo box.

I would like to click a command button, have it search and find all
occurrences of the least 4 digits of the phone number (based on the 4 digits
I input), and then present a list or combo box that displays the entire
phone number, customer name and address of each record that contains the 4
digits as the LAST 4 digits of the phone number, not the first 4 or any 4.

Is this possible? and can anyone recommend code that would work.

I use Access 2000 and XP Home.

TIA
Nov 13 '05 #1
8 5464
Thanks for the compliment!

The first thing we need to know to help you is how your telephone numbers
are stored. Open the table and let us know if the dash is stored. Perhaps
give us an example number. Also check for us to see if all the numbers are
stored in the same format.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com


"jquest" <ad******@telus.net> wrote in message
news:yW4Sd.5353$9a3.946@edtnps91...
Hi Again;

I have had help from this group before and want to thank everyone,
especially PCDatasheet.
My database includes a field called HomePhone, it uses the (xxx)xxx-xxx
format to include area code.
When a customer calls, I currently use Ctrl F with the HomePhone field
highlighted. Then I enter the last 4 digits and use the find next option.
This is cumbersome, so I have tried several methods (including a macro)
using comand buttons, but nothing seems quite right.

The future of this function in my database is more complicated than just
using Ctrl F function and using find next repeatedly. I am hoping to
incorporate a list or combo box.

I would like to click a command button, have it search and find all
occurrences of the least 4 digits of the phone number (based on the 4 digits I input), and then present a list or combo box that displays the entire
phone number, customer name and address of each record that contains the 4
digits as the LAST 4 digits of the phone number, not the first 4 or any 4.

Is this possible? and can anyone recommend code that would work.

I use Access 2000 and XP Home.

TIA

Nov 13 '05 #2
listbox.recordsource

SELECT TBL_PERSOON.PERSOON_ID, TBL_PERSOON.PERSOON_TEL_PRIVE,
Right([TBL_PERSOON]![PERSOON_TEL_PRIVE],4) AS Expr1
FROM TBL_PERSOON
WHERE (((TBL_PERSOON.PERSOON_TEL_PRIVE) Is Not Null) AND
((Right([TBL_PERSOON]![PERSOON_TEL_PRIVE],4))="1234"));

Filip

"jquest" <ad******@telus.net> wrote in message
news:yW4Sd.5353$9a3.946@edtnps91...
Hi Again;

I have had help from this group before and want to thank everyone,
especially PCDatasheet.
My database includes a field called HomePhone, it uses the (xxx)xxx-xxx
format to include area code.
When a customer calls, I currently use Ctrl F with the HomePhone field
highlighted. Then I enter the last 4 digits and use the find next option.
This is cumbersome, so I have tried several methods (including a macro)
using comand buttons, but nothing seems quite right.

The future of this function in my database is more complicated than just
using Ctrl F function and using find next repeatedly. I am hoping to
incorporate a list or combo box.

I would like to click a command button, have it search and find all
occurrences of the least 4 digits of the phone number (based on the 4 digits I input), and then present a list or combo box that displays the entire
phone number, customer name and address of each record that contains the 4
digits as the LAST 4 digits of the phone number, not the first 4 or any 4.

Is this possible? and can anyone recommend code that would work.

I use Access 2000 and XP Home.

TIA

Nov 13 '05 #3
Here is an actual Example

!\(999") "000\-0000
Text Field Width is 14 characters

One of the numbers in the database is:
(604) 854-3675

I store 3 different phone numbers for each record, HomePhone, WorkPhone and
CellPhone. That way, no matter where they call from I can identify their
file right away. All phone numbers are stored the same way, and yes the
brackets and dashes are stored.

TIA

"PC Datasheet" <no****@nospam.spam> wrote in message
news:i9*****************@newsread3.news.atl.earthl ink.net...
Thanks for the compliment!

The first thing we need to know to help you is how your telephone numbers
are stored. Open the table and let us know if the dash is stored. Perhaps
give us an example number. Also check for us to see if all the numbers are
stored in the same format.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com


"jquest" <ad******@telus.net> wrote in message
news:yW4Sd.5353$9a3.946@edtnps91...
Hi Again;

I have had help from this group before and want to thank everyone,
especially PCDatasheet.
My database includes a field called HomePhone, it uses the (xxx)xxx-xxx
format to include area code.
When a customer calls, I currently use Ctrl F with the HomePhone field
highlighted. Then I enter the last 4 digits and use the find next option. This is cumbersome, so I have tried several methods (including a macro)
using comand buttons, but nothing seems quite right.

The future of this function in my database is more complicated than just
using Ctrl F function and using find next repeatedly. I am hoping to
incorporate a list or combo box.

I would like to click a command button, have it search and find all
occurrences of the least 4 digits of the phone number (based on the 4

digits
I input), and then present a list or combo box that displays the entire
phone number, customer name and address of each record that contains the 4 digits as the LAST 4 digits of the phone number, not the first 4 or any 4.
Is this possible? and can anyone recommend code that would work.

I use Access 2000 and XP Home.

TIA


Nov 13 '05 #4
You need tables that look like:
TblCustomer
CustomerID
FirstName
Lastname
Address
City
State
Zipcode

TblPhoneNum
PhoneNumID
CustomerID
HomePhone
WorkPhone
CellPhone

The tables need a relationship on CustomerID.

Create a query named QryFindCustomer that includes both tables. Put the
following fields in the query in the order shown below:
CustomerToFind:TblCustomer.CustomerID
Customer:[LastName] & ", " & [[Firstname] <<Sort Accending>>
Address
CityStateZip:[City] & ", " & [State] & " " & [Zipcode]
HomePhone
LastFourDigits:Right([HomePhone],4)
Set the criteria for LastFourDigits as:
Forms!FrmSearchForCustomer!FourDigitNum

Create a search form named FrmSearchForCustomer. Add an unbound textbox
named FourDigitNum. Add a listbox named CustomersWithFourDigits with the
following properties:
RowSource <<Leave Blank>>
Bound Column 1
Column Count 5
Column Width 0;1.5;1.5;1.5;1
Note: You will need to adjust the widths to suit.

Put the following code in the OnChange event of the textbox, FourDigitNum:
If Len(Me!FourDigitNum) = 4 Then
Me!CustomersWithFourDigits.RowSource = "QryFindCustomer"
End If

The listbox will have the value CustomerID. You will need to put code in the
listbox's AfterUpdate event so when you select a customer, code will give
you what you want.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"jquest" <ad******@telus.net> wrote in message
news:Q96Sd.5484$9a3.1023@edtnps91...
Here is an actual Example

!\(999") "000\-0000
Text Field Width is 14 characters

One of the numbers in the database is:
(604) 854-3675

I store 3 different phone numbers for each record, HomePhone, WorkPhone and CellPhone. That way, no matter where they call from I can identify their
file right away. All phone numbers are stored the same way, and yes the
brackets and dashes are stored.

TIA

"PC Datasheet" <no****@nospam.spam> wrote in message
news:i9*****************@newsread3.news.atl.earthl ink.net...
Thanks for the compliment!

The first thing we need to know to help you is how your telephone numbers
are stored. Open the table and let us know if the dash is stored. Perhaps give us an example number. Also check for us to see if all the numbers are stored in the same format.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com


"jquest" <ad******@telus.net> wrote in message
news:yW4Sd.5353$9a3.946@edtnps91...
Hi Again;

I have had help from this group before and want to thank everyone,
especially PCDatasheet.
My database includes a field called HomePhone, it uses the (xxx)xxx-xxx format to include area code.
When a customer calls, I currently use Ctrl F with the HomePhone field highlighted. Then I enter the last 4 digits and use the find next
option. This is cumbersome, so I have tried several methods (including a macro) using comand buttons, but nothing seems quite right.

The future of this function in my database is more complicated than just using Ctrl F function and using find next repeatedly. I am hoping to
incorporate a list or combo box.

I would like to click a command button, have it search and find all
occurrences of the least 4 digits of the phone number (based on the 4

digits
I input), and then present a list or combo box that displays the entire phone number, customer name and address of each record that contains
the 4 digits as the LAST 4 digits of the phone number, not the first 4 or
any
4.
Is this possible? and can anyone recommend code that would work.

I use Access 2000 and XP Home.

TIA



Nov 13 '05 #5
Thank You;

I have entered the code and have the query working well. I still canot
populate the list box with the query results, but right now I am running the
query and displaying it once the 4 digits are entered. It would be better if
I could populate the list box, because then I would double click the
important entry aqnd pull up their records automatically
TIA
"PC Datasheet" <no****@nospam.spam> wrote in message
news:mL*****************@newsread2.news.atl.earthl ink.net...
You need tables that look like:
TblCustomer
CustomerID
FirstName
Lastname
Address
City
State
Zipcode

TblPhoneNum
PhoneNumID
CustomerID
HomePhone
WorkPhone
CellPhone

The tables need a relationship on CustomerID.

Create a query named QryFindCustomer that includes both tables. Put the
following fields in the query in the order shown below:
CustomerToFind:TblCustomer.CustomerID
Customer:[LastName] & ", " & [[Firstname] <<Sort Accending>>
Address
CityStateZip:[City] & ", " & [State] & " " & [Zipcode]
HomePhone
LastFourDigits:Right([HomePhone],4)
Set the criteria for LastFourDigits as:
Forms!FrmSearchForCustomer!FourDigitNum

Create a search form named FrmSearchForCustomer. Add an unbound textbox
named FourDigitNum. Add a listbox named CustomersWithFourDigits with the
following properties:
RowSource <<Leave Blank>>
Bound Column 1
Column Count 5
Column Width 0;1.5;1.5;1.5;1
Note: You will need to adjust the widths to suit.

Put the following code in the OnChange event of the textbox, FourDigitNum:
If Len(Me!FourDigitNum) = 4 Then
Me!CustomersWithFourDigits.RowSource = "QryFindCustomer"
End If

The listbox will have the value CustomerID. You will need to put code in the listbox's AfterUpdate event so when you select a customer, code will give
you what you want.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"jquest" <ad******@telus.net> wrote in message
news:Q96Sd.5484$9a3.1023@edtnps91...
Here is an actual Example

!\(999") "000\-0000
Text Field Width is 14 characters

One of the numbers in the database is:
(604) 854-3675

I store 3 different phone numbers for each record, HomePhone, WorkPhone

and
CellPhone. That way, no matter where they call from I can identify their
file right away. All phone numbers are stored the same way, and yes the
brackets and dashes are stored.

TIA

"PC Datasheet" <no****@nospam.spam> wrote in message
news:i9*****************@newsread3.news.atl.earthl ink.net...
Thanks for the compliment!

The first thing we need to know to help you is how your telephone numbers are stored. Open the table and let us know if the dash is stored. Perhaps give us an example number. Also check for us to see if all the numbers are stored in the same format.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com


"jquest" <ad******@telus.net> wrote in message
news:yW4Sd.5353$9a3.946@edtnps91...
> Hi Again;
>
> I have had help from this group before and want to thank everyone,
> especially PCDatasheet.
> My database includes a field called HomePhone, it uses the (xxx)xxx-xxx > format to include area code.
> When a customer calls, I currently use Ctrl F with the HomePhone field > highlighted. Then I enter the last 4 digits and use the find next

option.
> This is cumbersome, so I have tried several methods (including a macro) > using comand buttons, but nothing seems quite right.
>
> The future of this function in my database is more complicated than just > using Ctrl F function and using find next repeatedly. I am hoping to
> incorporate a list or combo box.
>
> I would like to click a command button, have it search and find all
> occurrences of the least 4 digits of the phone number (based on the 4 digits
> I input), and then present a list or combo box that displays the entire > phone number, customer name and address of each record that contains

the
4
> digits as the LAST 4 digits of the phone number, not the first 4 or

any
4.
>
> Is this possible? and can anyone recommend code that would work.
>
> I use Access 2000 and XP Home.
>
> TIA
>
>



Nov 13 '05 #6
Br
jquest wrote:
Thank You;

I have entered the code and have the query working well. I still canot
populate the list box with the query results, but right now I am
running the query and displaying it once the 4 digits are entered. It
would be better if I could populate the list box, because then I
would double click the important entry aqnd pull up their records
automatically


I use a simply method. I have a text box where the user enters the
search text. I then use some code to find a match. I then search for
another match. If there was only one match then it moves to that record.
If there is more than one it passes an SQL string to a popup form to
poulate a listbox on it with the matches. The user then double-clicks
the one they want and they are returned to the main form with that
record no current.

eg. (just quickly typed this so it might not quite work :)

SearchString = Me![Search]
Criteria = "[HomePhone] LIKE '%" & SearchString & "%'"
Set rs = Me.bookmark

rs.findfirst Criteria
if rs.nomatch then
'no matches, display message
else
rs.findnext Criteria
if rs.nomatch then
'more than one match found, open form to dispay results
'code on popup form will move to required record once selected
'or you can pass the value back or something

Docmd.openform "frmSearchMatches",,,Criteria,,acDailog

else
'one match found, move to that record
Me.bookmark = rs.bookmark
end if
set rs = nothing
Nov 13 '05 #7
The listbox will be blank when the search form opens and will not fill until
you have entered four digits in the textbox and pressed Enter.

Did you do this?
Put the following code in the OnChange event of the textbox, FourDigitNum:
If Len(Me!FourDigitNum) = 4 Then
Me!CustomersWithFourDigits.RowSource = "QryFindCustomer"
End If

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com


"PC Datasheet" <no****@nospam.spam> wrote in message
news:mL*****************@newsread2.news.atl.earthl ink.net...
You need tables that look like:
TblCustomer
CustomerID
FirstName
Lastname
Address
City
State
Zipcode

TblPhoneNum
PhoneNumID
CustomerID
HomePhone
WorkPhone
CellPhone

The tables need a relationship on CustomerID.

Create a query named QryFindCustomer that includes both tables. Put the
following fields in the query in the order shown below:
CustomerToFind:TblCustomer.CustomerID
Customer:[LastName] & ", " & [[Firstname] <<Sort Accending>>
Address
CityStateZip:[City] & ", " & [State] & " " & [Zipcode]
HomePhone
LastFourDigits:Right([HomePhone],4)
Set the criteria for LastFourDigits as:
Forms!FrmSearchForCustomer!FourDigitNum

Create a search form named FrmSearchForCustomer. Add an unbound textbox
named FourDigitNum. Add a listbox named CustomersWithFourDigits with the
following properties:
RowSource <<Leave Blank>>
Bound Column 1
Column Count 5
Column Width 0;1.5;1.5;1.5;1
Note: You will need to adjust the widths to suit.

Put the following code in the OnChange event of the textbox, FourDigitNum:
If Len(Me!FourDigitNum) = 4 Then
Me!CustomersWithFourDigits.RowSource = "QryFindCustomer"
End If

The listbox will have the value CustomerID. You will need to put code in the listbox's AfterUpdate event so when you select a customer, code will give
you what you want.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"jquest" <ad******@telus.net> wrote in message
news:Q96Sd.5484$9a3.1023@edtnps91...
Here is an actual Example

!\(999") "000\-0000
Text Field Width is 14 characters

One of the numbers in the database is:
(604) 854-3675

I store 3 different phone numbers for each record, HomePhone, WorkPhone

and
CellPhone. That way, no matter where they call from I can identify their
file right away. All phone numbers are stored the same way, and yes the
brackets and dashes are stored.

TIA

"PC Datasheet" <no****@nospam.spam> wrote in message
news:i9*****************@newsread3.news.atl.earthl ink.net...
Thanks for the compliment!

The first thing we need to know to help you is how your telephone numbers are stored. Open the table and let us know if the dash is stored. Perhaps give us an example number. Also check for us to see if all the numbers are stored in the same format.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com


"jquest" <ad******@telus.net> wrote in message
news:yW4Sd.5353$9a3.946@edtnps91...
> Hi Again;
>
> I have had help from this group before and want to thank everyone,
> especially PCDatasheet.
> My database includes a field called HomePhone, it uses the (xxx)xxx-xxx > format to include area code.
> When a customer calls, I currently use Ctrl F with the HomePhone field > highlighted. Then I enter the last 4 digits and use the find next

option.
> This is cumbersome, so I have tried several methods (including a macro) > using comand buttons, but nothing seems quite right.
>
> The future of this function in my database is more complicated than just > using Ctrl F function and using find next repeatedly. I am hoping to
> incorporate a list or combo box.
>
> I would like to click a command button, have it search and find all
> occurrences of the least 4 digits of the phone number (based on the 4 digits
> I input), and then present a list or combo box that displays the entire > phone number, customer name and address of each record that contains

the
4
> digits as the LAST 4 digits of the phone number, not the first 4 or

any
4.
>
> Is this possible? and can anyone recommend code that would work.
>
> I use Access 2000 and XP Home.
>
> TIA
>
>



Nov 13 '05 #8
gm
Hi Steve;

Yes, I entered the code verbatim. I have even cut and pasted it so I know I
haven't made a mistake and overlooked a character.

Thank You for your help.

As an experiment, I tried setting the Row Source Type to Table Query. It
alarms that it can't find the field called Form, but it populates the list.
The problem is that it only populates it once, not on further tries where I
enter a different 4 digit number. But it does work that one time immediately
after I change the RowSource Type.
"Steve" <no****@nospam.spam> wrote in message
news:jc****************@newsread2.news.atl.earthli nk.net...
The listbox will be blank when the search form opens and will not fill until you have entered four digits in the textbox and pressed Enter.

Did you do this?
Put the following code in the OnChange event of the textbox, FourDigitNum:
If Len(Me!FourDigitNum) = 4 Then
Me!CustomersWithFourDigits.RowSource = "QryFindCustomer"
End If

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com


"PC Datasheet" <no****@nospam.spam> wrote in message
news:mL*****************@newsread2.news.atl.earthl ink.net...
You need tables that look like:
TblCustomer
CustomerID
FirstName
Lastname
Address
City
State
Zipcode

TblPhoneNum
PhoneNumID
CustomerID
HomePhone
WorkPhone
CellPhone

The tables need a relationship on CustomerID.

Create a query named QryFindCustomer that includes both tables. Put the
following fields in the query in the order shown below:
CustomerToFind:TblCustomer.CustomerID
Customer:[LastName] & ", " & [[Firstname] <<Sort Accending>>
Address
CityStateZip:[City] & ", " & [State] & " " & [Zipcode]
HomePhone
LastFourDigits:Right([HomePhone],4)
Set the criteria for LastFourDigits as:
Forms!FrmSearchForCustomer!FourDigitNum

Create a search form named FrmSearchForCustomer. Add an unbound textbox
named FourDigitNum. Add a listbox named CustomersWithFourDigits with the
following properties:
RowSource <<Leave Blank>>
Bound Column 1
Column Count 5
Column Width 0;1.5;1.5;1.5;1
Note: You will need to adjust the widths to suit.

Put the following code in the OnChange event of the textbox, FourDigitNum:
If Len(Me!FourDigitNum) = 4 Then
Me!CustomersWithFourDigits.RowSource = "QryFindCustomer"
End If

The listbox will have the value CustomerID. You will need to put code in the
listbox's AfterUpdate event so when you select a customer, code will give you what you want.

--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
re******@pcdatasheet.com
www.pcdatasheet.com

"jquest" <ad******@telus.net> wrote in message
news:Q96Sd.5484$9a3.1023@edtnps91...
Here is an actual Example

!\(999") "000\-0000
Text Field Width is 14 characters

One of the numbers in the database is:
(604) 854-3675

I store 3 different phone numbers for each record, HomePhone, WorkPhone
and
CellPhone. That way, no matter where they call from I can identify
their file right away. All phone numbers are stored the same way, and yes the brackets and dashes are stored.

TIA

"PC Datasheet" <no****@nospam.spam> wrote in message
news:i9*****************@newsread3.news.atl.earthl ink.net...
> Thanks for the compliment!
>
> The first thing we need to know to help you is how your telephone

numbers
> are stored. Open the table and let us know if the dash is stored.

Perhaps
> give us an example number. Also check for us to see if all the numbers are
> stored in the same format.
>
> --
> PC Datasheet
> Your Resource For Help With Access, Excel And Word Applications
> re******@pcdatasheet.com
> www.pcdatasheet.com
>
>
>
>
> "jquest" <ad******@telus.net> wrote in message
> news:yW4Sd.5353$9a3.946@edtnps91...
> > Hi Again;
> >
> > I have had help from this group before and want to thank everyone,
> > especially PCDatasheet.
> > My database includes a field called HomePhone, it uses the

(xxx)xxx-xxx
> > format to include area code.
> > When a customer calls, I currently use Ctrl F with the HomePhone

field
> > highlighted. Then I enter the last 4 digits and use the find next
option.
> > This is cumbersome, so I have tried several methods (including a

macro)
> > using comand buttons, but nothing seems quite right.
> >
> > The future of this function in my database is more complicated
than just
> > using Ctrl F function and using find next repeatedly. I am hoping
to > > incorporate a list or combo box.
> >
> > I would like to click a command button, have it search and find all > > occurrences of the least 4 digits of the phone number (based on

the 4 > digits
> > I input), and then present a list or combo box that displays the

entire
> > phone number, customer name and address of each record that

contains the
4
> > digits as the LAST 4 digits of the phone number, not the first 4
or any
4.
> >
> > Is this possible? and can anyone recommend code that would work.
> >
> > I use Access 2000 and XP Home.
> >
> > TIA
> >
> >
>
>



Nov 13 '05 #9

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

Similar topics

0
1734
by: Gazelle | last post by:
I have a dilemma, that I am hopping I can find some help with. He is the back story so everyone sort of understands what it is that I am trying to accomplish. My problem: I have multiple...
171
7577
by: tshad | last post by:
I am just trying to decide whether to split my code and uses code behind. I did it with one of my pages and found it was quite a bit of trouble. I know that most people (and books and articles)...
12
3728
by: Chris Springer | last post by:
I'd like to get some feedback on the issue of storing data out to disk and where to store it. I've never been in a production environment in programming so you'll have to bear with me... My...
10
3245
by: cj | last post by:
I'm having a problem writing an insert command to work with a datatable. I've looked at what the sqldataadapter creates and created my insert command to look the same. I have:...
22
2683
by: JoeC | last post by:
I am working on another game project and it is comming along. It is an improvment over a previous version I wrote. I am trying to write better programs and often wonder how to get better at...
1
2948
by: Smita Prathyusha | last post by:
I am facing a problem in writing to COM1. I am using a Win 32 Console mode Program in VC++ the following is the code: If anyone can help me out it will be of great help : // SC_Using_Classes.cpp...
0
2153
by: mcc99 | last post by:
Amazing, I surfed around to find a simple utility that could list files recursively from a given top folder down through it, writing out the path and filename in simple \path\file_name form, without...
118
4519
by: Chuck Cheeze | last post by:
This might be in the wrong group, but... Here is an example of my data: entry_id cat_id 1 20 2 25 3 30 4 25 5 35
1
2969
by: =?Utf-8?B?ZmhpbGxpcG8=?= | last post by:
We have a code snippet that downloads data to Excel. it is writing row by row. This causes a performance issue. Any ideas on how to speed this up will be appreciated. Please find below an...
0
6920
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7106
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6760
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5365
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4799
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3004
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1311
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
572
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
206
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.