473,748 Members | 2,595 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

range count


Hi
I have a vector<charwhic h looks like this (a d d d a d s g e d d d d
d k)
I need to get the biggest count of consecutive 'd'. 5 in this example

I am toying with this method but not sure if it is optimal.

thanks

int k = 0;
vector::const_i terator i = find(v.begin(), v.end(), 'r')
while ( i != v.end() ) {
vector::const_i terator j = find(i, v.end(), any_thing_but 'r')
if ( (j - i) k ) k = (j - i)
i = j
}

Jul 26 '06 #1
23 2895
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
Hi
I have a vector<charwhic h looks like this (a d d d a d s g e d d d d
d k)
I need to get the biggest count of consecutive 'd'. 5 in this example

I am toying with this method but not sure if it is optimal.

thanks

int k = 0;
vector::const_i terator i = find(v.begin(), v.end(), 'r')
while ( i != v.end() ) {
vector::const_i terator j = find(i, v.end(), any_thing_but 'r')
if ( (j - i) k ) k = (j - i)
i = j
}
I'll assume the 'r' was a typo. Shouldn't that last line be something
like "i = find( j, v.end(), 'r' );"?

This might be a useful time for for_each. (uncompiled, untested code)

struct count_consecuti ve: unary_function< char, void >
{
char comp;
unsigned count;
unsigned max_count;
count_same( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }
void operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned result() const { return max( count, max_count ); }
}

k = for_each( v.begin(), v.end(), count_consecuti ve( 'd' ) ).result();

The nice thing about the above is that it can be used in an initializer.
Jul 26 '06 #2
"Daniel T." <da******@earth link.netwrites:
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
Hi
I have a vector<charwhic h looks like this (a d d d a d s g e d d d d
d k)
I need to get the biggest count of consecutive 'd'. 5 in this example

I am toying with this method but not sure if it is optimal.

thanks

int k = 0;
vector::const_i terator i = find(v.begin(), v.end(), 'r')
while ( i != v.end() ) {
vector::const_i terator j = find(i, v.end(), any_thing_but 'r')
if ( (j - i) k ) k = (j - i)
i = j
}

I'll assume the 'r' was a typo. Shouldn't that last line be something
like "i = find( j, v.end(), 'r' );"?

This might be a useful time for for_each. (uncompiled, untested code)

struct count_consecuti ve: unary_function< char, void >
{
char comp;
unsigned count;
unsigned max_count;
count_same( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }
void operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned result() const { return max( count, max_count ); }
}

k = for_each( v.begin(), v.end(), count_consecuti ve( 'd' ) ).result();

The nice thing about the above is that it can be used in an initializer.
thank you for taking the time to post this, :) I am having hard time
understanding the code you gave because of my newbi status. I'd rather
write something I can grasp it for now till my level goes up.

here is my best shut

*************** * statistics.h *************** *
#ifndef STATISTICS_H
#define STATISTICS_H
#include <vector>
using std::vector;

#include <map>
using std::map;

class statistics
{
map<char, intmp;
vector<charv;
void stock_take();
int bigest_r(vector <charconst& cv);
bool not_r(char c);

public:
statistics(vect or<charconst& cv);
~statistics();
map<char,intget _counts;
};

#endif
*************** * statistics.cpp *************** *
#include <vector>
#include "statistics .h"

using namespace std;

statistics::sta tistics(vector< charconst& cv)
: v( cv )
{
statistics::sto ck_take();
}

void statistics::sto ck_take()
{
mp['c'] = count(v.begin() , v.end(), 'c');
mp['r'] = bigest_r(v);
}

bool statistics::not _r(char c)
{
return (c != 'r');
}

int statistics::big est_r(vector<ch arconst& cv)
{
int k = 0;
vector_iterator i = find(cv.begin() , v.end(), 'r');
while (i != cv.end()){
vector_iterator j = find_if(i, cv.end(), not_r);
if ( (j-i) k ) k = (j-i);
i = j;
}
return k;
}
};


*************** * statistics_test .cpp *************** *
#include <iostream>
using std::cout;

#include <vector>
using std::vector;

#include <utility>
using std::map;

#include "statistics .h"

int main() {

vector v = {c r r r d x c c d d d d k};
statistics st1(v);
cout << "c" << (st1.get_counts )[c]
<< "r" << (st1.get_counts )[r]
<< '\n';
}
Jul 27 '06 #3
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
"Daniel T." <da******@earth link.netwrites:
This might be a useful time for for_each.
First, let me clean up what I wrote:

struct count_consecuti ve: unary_function< char, void >
{
char comp;
unsigned count;
unsigned max_count;

count_consecuti ve( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }

void operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned result() const { return max( count, max_count ); }
};

k = for_each( v.begin(), v.end(), count_consecuti ve( 'd' ) ).result();
thank you for taking the time to post this, :) I am having hard time
understanding the code you gave because of my newbi status. I'd rather
write something I can grasp it for now till my level goes up.
That's fine. Let's look at the algorithm you wrote:
int statistics::big est_r(vector<ch arconst& cv)
{
int k = 0;
vector_iterator i = find(cv.begin() , v.end(), 'r');
while (i != cv.end()){
vector_iterator j = find_if(i, cv.end(), not_r);
if ( (j-i) k ) k = (j-i);
i = j;
}
return k;
}
Obviously your code doesn't compile, but I'm going to ignore that for
now and look at your algorithm:

a r r r a r s g e r r r r r k

what will your algorithm do with the chars above?

find will return element 1 (the second element in the array,) then
find_if will return element 4.

4 - 1 0 so k is assigned 3.

Now i will be set to point at element 4, and we loop back up.

That's not the end of the vector, so find_if will set j to point at
element 4 (the first element that is not_r.)

4 - 4 3 is false, so loop back up (with i and j both pointing at
element 4 still.)

Your stuck in an infinite loop.

You see, "i" is the beginning of your streak of 'r's, and "j" is the end
of the streak, but then you assign "i" to the end of the first streak of
'r's and expect things to still work. At the end of your while block,
you need to reset "i" to the beginning of the next streak of 'r's (hint,
use "find" again.)

As to the syntax... You need to define the type of "vector_iterato r" and
"not_r" must be a global function, not a member function. (You could
make it a member function but it would be much more complicated and
pointless.
Jul 27 '06 #4
"Daniel T." <da******@earth link.netwrites:
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
"Daniel T." <da******@earth link.netwrites:
This might be a useful time for for_each.

First, let me clean up what I wrote:

struct count_consecuti ve: unary_function< char, void >
{
char comp;
unsigned count;
unsigned max_count;

count_consecuti ve( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }

void operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned result() const { return max( count, max_count ); }
};

k = for_each( v.begin(), v.end(), count_consecuti ve( 'd' ) ).result();
what is : unary_function< char, void after the struct name? and what
does it do?
can I replace the word struct with class and expect the same results?
I will stick with your code, mine is few steps behind.
Jul 27 '06 #5
"Daniel T." <da******@earth link.netwrites:
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
"Daniel T." <da******@earth link.netwrites:
This might be a useful time for for_each.

First, let me clean up what I wrote:

struct count_consecuti ve: unary_function< char, void >
{
char comp;
unsigned count;
unsigned max_count;

count_consecuti ve( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }

void operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned result() const { return max( count, max_count ); }
};

k = for_each( v.begin(), v.end(), count_consecuti ve( 'd' ) ).result();
thank you for taking the time to post this, :) I am having hard time
understanding the code you gave because of my newbi status. I'd rather
write something I can grasp it for now till my level goes up.

That's fine. Let's look at the algorithm you wrote:
int statistics::big est_r(vector<ch arconst& cv)
{
int k = 0;
vector_iterator i = find(cv.begin() , v.end(), 'r');
while (i != cv.end()){
vector_iterator j = find_if(i, cv.end(), not_r);
if ( (j-i) k ) k = (j-i);
i = j;
}
return k;
}

Obviously your code doesn't compile, but I'm going to ignore that for
I am embedding what you suggested in my code but would need some
direction, if you could please

*************** * statistics.h *************** *
#ifndef STATISTICS_H
#define STATISTICS_H
#include <vector>
using std::vector;

#include <map>
using std::map;

class count_consecuti ve: unary_function< char, void >
{
char comp;
unsigned count;
unsigned max_count;

public:
count_consecuti ve(char value);
~count_consecut ive();
void operator()(char c);
unsigned result();
};
class statistics
{
map<char, intmp;
vector<charv;
void stock_take();
int bigest_r(vector <charconst& cv);

public:
statistics(vect or<charconst& cv);
~statistics();
map<char,intget _counts;
};

#endif


*************** * statistics.cpp *************** *
#include <vector>
using std::vector;

#include <algorithm>
using std::count;

#include "statistics .h"
count_consecuti ve::count_conse cutive( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }

void count_consecuti ve::operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned count_consecuti ve::result() const {
return max( count, max_count );
}

statistics::sta tistics(vector< charconst& cv)
: v( cv )
{
statistics::sto ck_take();
}

void statistics::sto ck_take()
{
mp['c'] = count(v.begin() , v.end(), 'c');
mp['r'] = bigest_r(v);
}
int statistics::big est_r(vector<ch arconst& cv)
{
int k = for_each( cv.begin(), cv.end(),
count_consecuti ve( 'd' ) ).result();
return k;

}
*************** * statistics_test .cpp*********** *****
#include <iostream>
using std::cout;

#include <vector>
using std::vector;

#include "statistics .h"

int main() {

vector v = {c r r r d x c c d d d d k};
statistics st1(v);
cout << "c" << (st1.get_counts )[c]
<< "r" << (st1.get_counts )[r]
<< '\n';
}
Jul 27 '06 #6
Gary Wessle wrote:
"Daniel T." <da******@earth link.netwrites:
>In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
"Daniel T." <da******@earth link.netwrites:

This might be a useful time for for_each.

First, let me clean up what I wrote:

struct count_consecuti ve: unary_function< char, void >
{
char comp;
unsigned count;
unsigned max_count;

count_consecuti ve( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }

void operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned result() const { return max( count, max_count ); }
};

k = for_each( v.begin(), v.end(), count_consecuti ve( 'd' ) ).result();

what is : unary_function< char, void after the struct name?
The base type.
and what does it do?
Derive from it.
can I replace the word struct with class and expect the same results?
You'd have to make things explicitly public, e.g. by replacing the first 2
lines with:

class count_consecuti ve: public unary_function< char, void >
{
public:
I will stick with your code, mine is few steps behind.
Jul 27 '06 #7
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
"Daniel T." <da******@earth link.netwrites:
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
"Daniel T." <da******@earth link.netwrites:
>
This might be a useful time for for_each.
First, let me clean up what I wrote:

struct count_consecuti ve: unary_function< char, void >
{
char comp;
unsigned count;
unsigned max_count;

count_consecuti ve( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }

void operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned result() const { return max( count, max_count ); }
};

k = for_each( v.begin(), v.end(), count_consecuti ve( 'd' ) ).result();

what is : unary_function< char, void after the struct name? and what
does it do?
can I replace the word struct with class and expect the same results?
I will stick with your code, mine is few steps behind.
It is defined in <functionalan d helps set up some typedefs. Strictly
speaking, it's not necessary for this example.
Jul 27 '06 #8
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
"Daniel T." <da******@earth link.netwrites:
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
thank you for taking the time to post this, :) I am having hard time
understanding the code you gave because of my newbi status. I'd rather
write something I can grasp it for now till my level goes up.
That's fine. Let's look at the algorithm you wrote:
int statistics::big est_r(vector<ch arconst& cv)
{
int k = 0;
vector_iterator i = find(cv.begin() , v.end(), 'r');
while (i != cv.end()){
vector_iterator j = find_if(i, cv.end(), not_r);
if ( (j-i) k ) k = (j-i);
i = j;
}
return k;
}
Obviously your code doesn't compile, but I'm going to ignore that for

I am embedding what you suggested in my code but would need some
direction, if you could please.
What's the first error the compiler give you and what line does it point
to?
Jul 27 '06 #9
"Daniel T." <da******@earth link.netwrites:
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
"Daniel T." <da******@earth link.netwrites:
In article <87************ @localhost.loca ldomain>,
Gary Wessle <ph****@yahoo.c omwrote:
>
thank you for taking the time to post this, :) I am having hard time
understanding the code you gave because of my newbi status. I'd rather
write something I can grasp it for now till my level goes up.
>
That's fine. Let's look at the algorithm you wrote:
>
int statistics::big est_r(vector<ch arconst& cv)
{
int k = 0;
vector_iterator i = find(cv.begin() , v.end(), 'r');
while (i != cv.end()){
vector_iterator j = find_if(i, cv.end(), not_r);
if ( (j-i) k ) k = (j-i);
i = j;
}
return k;
}
>
Obviously your code doesn't compile, but I'm going to ignore that for
I am embedding what you suggested in my code but would need some
direction, if you could please.

What's the first error the compiler give you and what line does it point
to?

the code and the error are as listed ( thank you for helping :) )

*************** * statistics.h *************** *
#ifndef STATISTICS_H
#define STATISTICS_H
#include <vector>
using std::vector;

#include <map>
using std::map;

class count_consecuti ve : public unary_function< char, void >
{

public:

char comp;
unsigned count;
unsigned max_count;
count_consecuti ve(char value);
~count_consecut ive();
void operator()(char c);
unsigned result();
};
class statistics
{
map<char, intmp;
vector<charv;
void stock_take();
int bigest_r(vector <charconst& cv);

public:
statistics(vect or<charconst& cv);
~statistics();
map<char,intget _counts;
};

#endif
*************** * statistics.cpp *************** *
#include <vector>
using std::vector;

#include <algorithm>
using std::count;

#include "statistics .h"
count_consecuti ve::count_conse cutive( char value )
: comp( value )
, count( 0 )
, max_count( 0 )
{ }

void count_consecuti ve::operator()( char c ) {
if ( c == comp )
++count;
else {
max_count = max( count, max_count );
count = 0;
}
}

unsigned count_consecuti ve::result() const {
return max( count, max_count );
}

statistics::sta tistics(vector< charconst& cv)
: v( cv )
{
statistics::sto ck_take();
}

void statistics::sto ck_take()
{
mp['c'] = count(v.begin() , v.end(), 'c');
mp['r'] = bigest_r(v);
}
int statistics::big est_r(vector<ch arconst& cv)
{
int k = for_each( cv.begin(), cv.end(),
count_consecuti ve( 'd' ) ).result();
return k;

}

*************** * statistics_test .cpp *************** *
#include <iostream>
using std::cout;

#include <vector>
using std::vector;

#include "statistics .h"

int main() {

vector v = {c r r r d x c c d d d d k};
statistics st1(v);
cout << "c" << (st1.get_counts )[c]
<< "r" << (st1.get_counts )[r]
<< '\n';
}
*************** * error *************** *
$ make
g++ -c -o statistics.o statistics.cpp
statistics.h:9: error: expected template-name before '<' token
statistics.h:9: error: expected `{' before '<' token
statistics.h:9: error: expected unqualified-id before '<' token
statistics.cpp: 10: error: invalid use of undefined type 'class count_consecuti ve'
statistics.h:9: error: forward declaration of 'class count_consecuti ve'
statistics.cpp: In constructor 'count_consecut ive::count_cons ecutive(char)':
statistics.cpp: 11: error: class 'count_consecut ive' does not have any field named 'comp'
statistics.cpp: 12: error: class 'count_consecut ive' does not have any field named 'count'
statistics.cpp: 13: error: class 'count_consecut ive' does not have any field named 'max_count'
statistics.cpp: At global scope:
statistics.cpp: 16: error: invalid use of undefined type 'class count_consecuti ve'
statistics.h:9: error: forward declaration of 'class count_consecuti ve'
statistics.cpp: In member function 'void count_consecuti ve::operator()( char)':
statistics.cpp: 17: error: 'comp' was not declared in this scope
statistics.cpp: 18: error: no pre-increment operator for type
statistics.cpp: 20: error: 'max_count' was not declared in this scope
statistics.cpp: 20: error: 'max' was not declared in this scope
statistics.cpp: 21: error: overloaded function with no contextual type information
statistics.cpp: At global scope:
statistics.cpp: 25: error: invalid use of undefined type 'class count_consecuti ve'
statistics.h:9: error: forward declaration of 'class count_consecuti ve'
statistics.cpp: In member function 'unsigned int count_consecuti ve::result() const':
statistics.cpp: 26: error: 'max_count' was not declared in this scope
statistics.cpp: 26: error: 'max' was not declared in this scope
statistics.cpp: In member function 'int statistics::big est_r(const std::vector<cha r, std::allocator< char&)':
statistics.cpp: 47: error: invalid use of undefined type 'class count_consecuti ve'
statistics.h:9: error: forward declaration of 'class count_consecuti ve'
make: *** [statistics.o] Error 1
fred@debian:~/myPrograms/backtest$
Jul 27 '06 #10

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

Similar topics

0
6689
by: Daniel Chartier | last post by:
Hello, all. I found a bit of code that lets me read an Excel file from and to a specifi range. See the code below. But what if I only want to specify the STARTING position and simply want it to continue reading down the column until it hits an empty cell? Does anyone know how to do this? Thanks! Here is the range-only code:
2
5979
by: Michael Jordan | last post by:
I'm hoping that someone here can give me some insight into a problem I'm running into with Python, pywin32 and Excel. All-in-all using Python and pywin32 is great but I've run into a strange problem with the range Offset property, I'm not getting the correct offset and the returned range is a single cell and not the same size as the original range. For example, when I enter the following lines of code in PythonWin : from...
3
3478
by: Michael Conroy | last post by:
Hi... Synposis... Throws exception: "Specified argument was out of the range of valid values." Read on for the juicy tidbits. MySimpleClassCol mscc=new MySimpleClassCol(); private void InitCombo() {
4
8466
by: IMS.Rushikesh | last post by:
Hi All, I am trying to execute below code but it gives me an COMException ///// Code Start //// public string GetName(Excel.Range range) { try { if (range.Name != null)
1
1771
by: h2lm2t | last post by:
Could anyone please take a look at this? I have a table with 3 columns: ID, ZIP and Count as below: Original Table ID ZIP Count 1 00001 12 2 00002 12 3 00003 11 4 00004 11
0
2868
by: uninvitedm | last post by:
Heya I've got a table of invoices, which have dates and customer_id's. What I need to get is the number of occurances for this customer for a 12-month range window. For example, if there's an invoice for october for a certain customer - i want to count how many other invoices appear are for this customer in the 12 months from that invoice date. Similarly, if there's an invoice in november, that should show the number of occurences 12 months...
1
5632
by: Bonzs | last post by:
I have troule with this macro... geting the used rsnge... Public strName As String, ws As Worksheet Sub Test() Workbooks.Open Filename:= _ "C:\Documents and Settings\User\Desktop\IT Development\Pricer.xls" 'Begins formatting the pricer for generating the EPB... strName = ActiveSheet.Name 'MsgBox strName MsgBox "The Used Range of this Worksheet is: " & GetUsedRange(ws)
1
3013
by: =?Utf-8?B?SkI=?= | last post by:
Hello As I debug the C# code with a break point and by pressing F11 I eventually get a message stating: ContextSwitchDeadlock was detected Message: The CLR has been unable to transition from COM context 0x17aeb8 to COM context 0x17abd8 for 60 seconds. The thread that owns the destination context/apartment is most likely either doing a non pumping wait or processing a very long running operation without pumping Windows messages.
1
1518
by: CoreyReynolds | last post by:
Hey all, Here's the culprit: Sub PopulateRange(Cell_Range As Range) Dim v Dim i As Long Dim j As Long Application.ScreenUpdating = False
6
18709
by: shashi shekhar singh | last post by:
Respected Sir, I am facing problem when i try to deploy my website on iis 7.0 on test page. i have to display some .mht files on iframe in gridview and error looks like below, Server Error in '/' Application. -------------------------------------------------------------------------------- Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index Description: An unhandled exception...
0
9541
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9370
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9321
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9247
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6796
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6074
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4602
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2782
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2215
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.