473,670 Members | 2,527 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Lengthy SQL String In VBA (Requesting Help With Line Continuation and Concatenation)

Don
Hi,

I have an SQL string that I'm trying to code into VBA and it's giving
me trouble. I tried to use line continuation and concatenation as best
I can to make it work. However, I'm stuck. I know that there are
limitations to the length of the string but I can't break it up
properly. I'm also thinking that I need to use multiples occurrences of
strsql to do so but I'm not sure how.

Can someone please tell me how to break this string up?

This is what I have right now (I know that wrapping is going to skew
it):

Dim strSQL As String
strsql = "SELECT * FROM "&InventorySour ce&""&_
"WHERE(((["&InventorySour ce&"].NRMU_NO_1=Form s.frmMainSearch .NRMU_NO_1)
Or (Forms.frmMainS earch.NRMU_NO_1 ) Is Null)"&_
"And ((["&InventorySour ce&"].USETYPE=Forms. frmMainSearch.U SETYPE) Or
(Forms.frmMainS earch.USETYPE) Is Null)"&_
"And ((["&InventorySour ce&"].LANDCOVER=Form s.frmMainSearch .LANDCOVER)
Or (Forms.frmMainS earch.LANDCOVER ) Is Null)"&_
"And ((["&InventorySour ce&"].DOM1=Forms.frm MainSearch.DOM1 ) Or
(Forms.frmMainS earch.DOM1) Is Null)"&_
"And ((["&InventorySour ce&"].DOM2=Forms.frm MainSearch.DOM2 ) Or
(Forms.frmMainS earch.DOM2) Is Null)"&_
"And ((["&InventorySour ce&"].DOM3=Forms.frm MainSearch.DOM3 ) Or
(Forms.frmMainS earch.DOM3) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP1=Forms. frmMainSearch.A GE2SP1) Or
(Forms.frmMainS earch.AGE2SP1) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP2=Forms. frmMainSearch.A GE2SP2) Or
(Forms.frmMainS earch.AGE2SP2) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP3=Forms. frmMainSearch.A GE2SP3) Or
(Forms.frmMainS earch.AGE2SP3) Is Null)"&_
"And ((["&InventorySour ce&"].MGTCON=Forms.f rmMainSearch.MG TCON) Or
(Forms.frmMainS earch.MGTCON) Is Null)"&_
"And ((["&InventorySour ce&"].MGTACT=Forms.f rmMainSearch.MG TACT) Or
(Forms.frmMainS earch.MGTACT) Is Null)"&_
"And ((["&InventorySour ce&"].ADDINFO=Forms. frmMainSearch.A DDINFO) Or
(Forms.frmMainS earch.ADDINFO) Is Null)"&_
"And ((["&InventorySour ce&"].BASAL=Forms.fr mMainSearch.BAS AL) Or
(Forms.frmMainS earch.BASAL) Is Null)"&_
"And ((["&InventorySour ce&"].DIAM=Forms.frm MainSearch.DIAM ) Or
(Forms.frmMainS earch.DIAM) Is Null)"&_
"And ((["&InventorySour ce&"].REGEN=Forms.fr mMainSearch.REG EN) Or
(Forms.frmMainS earch.REGEN) Is Null)"&_
"And ((["&InventorySour ce&"].EUAGED=Forms.f rmMainSearch.EU AGED) Or
(Forms.frmMainS earch.EUAGED) Is Null)"&_
"And ((["&InventorySour ce&"].MUD=Forms.frmM ainSearch.MUD) Or
(Forms.frmMainS earch.MUD) Is Null)"&_
"And ((["&InventorySour ce&"].METAL=Forms.fr mMainSearch.MET AL) Or
(Forms.frmMainS earch.METAL) Is Null)"&_
"And ((Forms.frmMain Search.STARTDAT E Is Null) Or
(Forms.frmMainS earch.ENDDATE Is Null)"&_
"Or (["&InventorySour ce&"].DATE Between Forms.frmMainSe arch.STARTDATE
And Forms.frmMainSe arch.ENDDATE))" &_
"And ((Forms.frmMain Search.MINACR Is Null) Or
(Forms.frmMainS earch.MAXACR Is Null)"&_
"Or (["&InventorySour ce&"].ACREAGE Between Forms.frmMainSe arch.MINACR
And Forms.frmMainSe arch.MAXACR))"& _
"And ((["&InventorySour ce&"].UpWet=Forms.fr mMainSearch.UPW ET) Or
(Forms.frmMainS earch.UPWET Is Null)));"

Thanks in advance for any input!

Don

Sep 28 '06 #1
13 14667
Don

What does this piece of your query , ["&InventorySour ce&"] , refer to ? What
is the purpose of the ampersands (&) used in that?
I don't think length is the problem. In the QBE panel, SQL View I think
queries are limited to 254 characters. In VBA code I believe
the character limit of an SQL string is 32,000 characters.
"Don" <dk*****@twcny. rr.comwrote in message
news:11******** *************@m 73g2000cwd.goog legroups.com...
Hi,

I have an SQL string that I'm trying to code into VBA and it's giving
me trouble. I tried to use line continuation and concatenation as best
I can to make it work. However, I'm stuck. I know that there are
limitations to the length of the string but I can't break it up
properly. I'm also thinking that I need to use multiples occurrences of
strsql to do so but I'm not sure how.

Can someone please tell me how to break this string up?

This is what I have right now (I know that wrapping is going to skew
it):

Dim strSQL As String
strsql = "SELECT * FROM "&InventorySour ce&""&_
"WHERE(((["&InventorySour ce&"].NRMU_NO_1=Form s.frmMainSearch .NRMU_NO_1)
Or (Forms.frmMainS earch.NRMU_NO_1 ) Is Null)"&_
"And ((["&InventorySour ce&"].USETYPE=Forms. frmMainSearch.U SETYPE) Or
(Forms.frmMainS earch.USETYPE) Is Null)"&_

Sep 28 '06 #2
rkc
Don wrote:
Hi,

I have an SQL string that I'm trying to code into VBA and it's giving
me trouble.
Store the beast in a table and read it into the variable.
Sep 28 '06 #3
Don
Sorry. It must be lucky for me to post to these groups. Everytime that
I do, I figure out a solution. Again, I apologize for using up the
bandwidth.

Don
Don wrote:
Hi,

I have an SQL string that I'm trying to code into VBA and it's giving
me trouble. I tried to use line continuation and concatenation as best
I can to make it work. However, I'm stuck. I know that there are
limitations to the length of the string but I can't break it up
properly. I'm also thinking that I need to use multiples occurrences of
strsql to do so but I'm not sure how.

Can someone please tell me how to break this string up?

This is what I have right now (I know that wrapping is going to skew
it):

Dim strSQL As String
strsql = "SELECT * FROM "&InventorySour ce&""&_
"WHERE(((["&InventorySour ce&"].NRMU_NO_1=Form s.frmMainSearch .NRMU_NO_1)
Or (Forms.frmMainS earch.NRMU_NO_1 ) Is Null)"&_
"And ((["&InventorySour ce&"].USETYPE=Forms. frmMainSearch.U SETYPE) Or
(Forms.frmMainS earch.USETYPE) Is Null)"&_
"And ((["&InventorySour ce&"].LANDCOVER=Form s.frmMainSearch .LANDCOVER)
Or (Forms.frmMainS earch.LANDCOVER ) Is Null)"&_
"And ((["&InventorySour ce&"].DOM1=Forms.frm MainSearch.DOM1 ) Or
(Forms.frmMainS earch.DOM1) Is Null)"&_
"And ((["&InventorySour ce&"].DOM2=Forms.frm MainSearch.DOM2 ) Or
(Forms.frmMainS earch.DOM2) Is Null)"&_
"And ((["&InventorySour ce&"].DOM3=Forms.frm MainSearch.DOM3 ) Or
(Forms.frmMainS earch.DOM3) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP1=Forms. frmMainSearch.A GE2SP1) Or
(Forms.frmMainS earch.AGE2SP1) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP2=Forms. frmMainSearch.A GE2SP2) Or
(Forms.frmMainS earch.AGE2SP2) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP3=Forms. frmMainSearch.A GE2SP3) Or
(Forms.frmMainS earch.AGE2SP3) Is Null)"&_
"And ((["&InventorySour ce&"].MGTCON=Forms.f rmMainSearch.MG TCON) Or
(Forms.frmMainS earch.MGTCON) Is Null)"&_
"And ((["&InventorySour ce&"].MGTACT=Forms.f rmMainSearch.MG TACT) Or
(Forms.frmMainS earch.MGTACT) Is Null)"&_
"And ((["&InventorySour ce&"].ADDINFO=Forms. frmMainSearch.A DDINFO) Or
(Forms.frmMainS earch.ADDINFO) Is Null)"&_
"And ((["&InventorySour ce&"].BASAL=Forms.fr mMainSearch.BAS AL) Or
(Forms.frmMainS earch.BASAL) Is Null)"&_
"And ((["&InventorySour ce&"].DIAM=Forms.frm MainSearch.DIAM ) Or
(Forms.frmMainS earch.DIAM) Is Null)"&_
"And ((["&InventorySour ce&"].REGEN=Forms.fr mMainSearch.REG EN) Or
(Forms.frmMainS earch.REGEN) Is Null)"&_
"And ((["&InventorySour ce&"].EUAGED=Forms.f rmMainSearch.EU AGED) Or
(Forms.frmMainS earch.EUAGED) Is Null)"&_
"And ((["&InventorySour ce&"].MUD=Forms.frmM ainSearch.MUD) Or
(Forms.frmMainS earch.MUD) Is Null)"&_
"And ((["&InventorySour ce&"].METAL=Forms.fr mMainSearch.MET AL) Or
(Forms.frmMainS earch.METAL) Is Null)"&_
"And ((Forms.frmMain Search.STARTDAT E Is Null) Or
(Forms.frmMainS earch.ENDDATE Is Null)"&_
"Or (["&InventorySour ce&"].DATE Between Forms.frmMainSe arch.STARTDATE
And Forms.frmMainSe arch.ENDDATE))" &_
"And ((Forms.frmMain Search.MINACR Is Null) Or
(Forms.frmMainS earch.MAXACR Is Null)"&_
"Or (["&InventorySour ce&"].ACREAGE Between Forms.frmMainSe arch.MINACR
And Forms.frmMainSe arch.MAXACR))"& _
"And ((["&InventorySour ce&"].UpWet=Forms.fr mMainSearch.UPW ET) Or
(Forms.frmMainS earch.UPWET Is Null)));"

Thanks in advance for any input!

Don
Sep 28 '06 #4
Don
Sorry. It must be lucky for me to post to these groups. Everytime that
I do, I figure out a solution. Again, I apologize for using up the
bandwidth.

Don
Don wrote:
Hi,

I have an SQL string that I'm trying to code into VBA and it's giving
me trouble. I tried to use line continuation and concatenation as best
I can to make it work. However, I'm stuck. I know that there are
limitations to the length of the string but I can't break it up
properly. I'm also thinking that I need to use multiples occurrences of
strsql to do so but I'm not sure how.

Can someone please tell me how to break this string up?

This is what I have right now (I know that wrapping is going to skew
it):

Dim strSQL As String
strsql = "SELECT * FROM "&InventorySour ce&""&_
"WHERE(((["&InventorySour ce&"].NRMU_NO_1=Form s.frmMainSearch .NRMU_NO_1)
Or (Forms.frmMainS earch.NRMU_NO_1 ) Is Null)"&_
"And ((["&InventorySour ce&"].USETYPE=Forms. frmMainSearch.U SETYPE) Or
(Forms.frmMainS earch.USETYPE) Is Null)"&_
"And ((["&InventorySour ce&"].LANDCOVER=Form s.frmMainSearch .LANDCOVER)
Or (Forms.frmMainS earch.LANDCOVER ) Is Null)"&_
"And ((["&InventorySour ce&"].DOM1=Forms.frm MainSearch.DOM1 ) Or
(Forms.frmMainS earch.DOM1) Is Null)"&_
"And ((["&InventorySour ce&"].DOM2=Forms.frm MainSearch.DOM2 ) Or
(Forms.frmMainS earch.DOM2) Is Null)"&_
"And ((["&InventorySour ce&"].DOM3=Forms.frm MainSearch.DOM3 ) Or
(Forms.frmMainS earch.DOM3) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP1=Forms. frmMainSearch.A GE2SP1) Or
(Forms.frmMainS earch.AGE2SP1) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP2=Forms. frmMainSearch.A GE2SP2) Or
(Forms.frmMainS earch.AGE2SP2) Is Null)"&_
"And ((["&InventorySour ce&"].AGE2SP3=Forms. frmMainSearch.A GE2SP3) Or
(Forms.frmMainS earch.AGE2SP3) Is Null)"&_
"And ((["&InventorySour ce&"].MGTCON=Forms.f rmMainSearch.MG TCON) Or
(Forms.frmMainS earch.MGTCON) Is Null)"&_
"And ((["&InventorySour ce&"].MGTACT=Forms.f rmMainSearch.MG TACT) Or
(Forms.frmMainS earch.MGTACT) Is Null)"&_
"And ((["&InventorySour ce&"].ADDINFO=Forms. frmMainSearch.A DDINFO) Or
(Forms.frmMainS earch.ADDINFO) Is Null)"&_
"And ((["&InventorySour ce&"].BASAL=Forms.fr mMainSearch.BAS AL) Or
(Forms.frmMainS earch.BASAL) Is Null)"&_
"And ((["&InventorySour ce&"].DIAM=Forms.frm MainSearch.DIAM ) Or
(Forms.frmMainS earch.DIAM) Is Null)"&_
"And ((["&InventorySour ce&"].REGEN=Forms.fr mMainSearch.REG EN) Or
(Forms.frmMainS earch.REGEN) Is Null)"&_
"And ((["&InventorySour ce&"].EUAGED=Forms.f rmMainSearch.EU AGED) Or
(Forms.frmMainS earch.EUAGED) Is Null)"&_
"And ((["&InventorySour ce&"].MUD=Forms.frmM ainSearch.MUD) Or
(Forms.frmMainS earch.MUD) Is Null)"&_
"And ((["&InventorySour ce&"].METAL=Forms.fr mMainSearch.MET AL) Or
(Forms.frmMainS earch.METAL) Is Null)"&_
"And ((Forms.frmMain Search.STARTDAT E Is Null) Or
(Forms.frmMainS earch.ENDDATE Is Null)"&_
"Or (["&InventorySour ce&"].DATE Between Forms.frmMainSe arch.STARTDATE
And Forms.frmMainSe arch.ENDDATE))" &_
"And ((Forms.frmMain Search.MINACR Is Null) Or
(Forms.frmMainS earch.MAXACR Is Null)"&_
"Or (["&InventorySour ce&"].ACREAGE Between Forms.frmMainSe arch.MINACR
And Forms.frmMainSe arch.MAXACR))"& _
"And ((["&InventorySour ce&"].UpWet=Forms.fr mMainSearch.UPW ET) Or
(Forms.frmMainS earch.UPWET Is Null)));"

Thanks in advance for any input!

Don
Sep 28 '06 #5
Rather than writing your sql like this:

"Select * from tbl1 " & _
"Where ..."

use a string variable like this:

Dim strSql As String

StrSql = "Select * from tbl1 "
StrSql = StrSql & "Where .... "
StrSql = StrSql & "... "
...

I used to use the _ (underscore) method , but if you ever needed to
modify something or check for a problem in the string - debugging - it
was a real pain. By using the string Variable method, you can easily
add/exclude stuff on the string. In VB.Net it is even eaiser

strSql = "Select * from tbl1 "
strSql += "WHere ... "
strSql += "..... "

Rich

*** Sent via Developersdex http://www.developersdex.com ***
Sep 28 '06 #6
Don wrote:
I have an SQL string that I'm trying to code into VBA and it's giving
me trouble. I tried to use line continuation and concatenation as best
I can to make it work. However, I'm stuck. I know that there are
limitations to the length of the string but I can't break it up
properly. I'm also thinking that I need to use multiples occurrences of
strsql to do so but I'm not sure how.

Can someone please tell me how to break this string up?
There's a limit to the number of line continuations you can have.
However, a string variable is quite large and this doesn't look like
it's anywhere near that value (my Oracle statements on a nightmare
schema exceed 120k characters - too big for an SQL statement, but they
can easily be stored in a string variable.).

Just break it up where you have the line breaks. I also throw in vbcrlf
to make things a bit more readable if I want to debug.print it, but
these are optional (though Oracle - I know you're using Jet - gets mad
at me for lengthy lines without a break):

strsql = "SELECT * FROM "&InventorySour ce&"" & vbcrlf

strsql = strsql &
"WHERE(((["&InventorySour ce&"].NRMU_NO_1=Form s.frmMainSearch .NRMU_NO_1)
Or (Forms.frmMainS earch.NRMU_NO_1 ) Is Null)" & vbcrlf

etc, etc

BTW, the clause:

(Forms.frmMainS earch.NRMU_NO_1 ) Is Null

doesn't make sense to me. You're referring to criteria for a form
control and not a table field from whatever table is specified by
InventorySource . Unless NRMU_NO_1 is a listing of actual field names.
I also wouldn't construct the dynamic SQL this way - instead of using
form references, I'd take the value of the control of the form and plonk
it right into the SQL statement.

--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Whatcha doin?" - Ditto "TIM-MAY!!" - Me
Sep 28 '06 #7
Don wrote:
Sorry. It must be lucky for me to post to these groups. Everytime that
I do, I figure out a solution. Again, I apologize for using up the
bandwidth.
I find the same thing. Very often when we ask a question on a NG or in
a person to person situation, we end up thinking about the problem in
just a little more different way in order to try and express the issue
to others. And often that's enough to spark a Eureka moment. 8)

--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Whatcha doin?" - Ditto "TIM-MAY!!" - Me
Sep 28 '06 #8
"Kc-Mass" <co********@com cast.netwrote in
news:v7******** *************** *******@comcast .com:
What does this piece of your query , ["&InventorySour ce&"] , refer
to ? What is the purpose of the ampersands (&) used in that?
I don't think length is the problem. In the QBE panel, SQL View I
think queries are limited to 254 characters. In VBA code I
believe the character limit of an SQL string is 32,000 characters.
That's not true about a saved query. I have one query over 11,000
characters in length (yes, it's a horror show; it was even longer
before I converted some of it to user-defined functions). I think
the length limitation is the same.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Sep 28 '06 #9
Tim Marshall <TI****@PurpleP andaChasers.Moe rtheriumwrote in
news:ef******** **@coranto.ucs. mun.ca:
Don wrote:
>Sorry. It must be lucky for me to post to these groups. Everytime
that I do, I figure out a solution. Again, I apologize for using
up the bandwidth.

I find the same thing. Very often when we ask a question on a NG
or in a person to person situation, we end up thinking about the
problem in just a little more different way in order to try and
express the issue to others. And often that's enough to spark a
Eureka moment. 8)
I start about 3 times as many posts as actually end up getting
posted, because in the process of putting it down in writing, I
solve it, because explaining it to someone else makes me think about
it differently and come up with the solution.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Sep 28 '06 #10

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

Similar topics

2
2185
by: Jasper Recto | last post by:
I have a statement that I can't seem to use Line Continuations on it: Progress = "V:\PROGRESS\bin\prowin32.exe V:\VANTAGE\db\vantage.db_ -ininame V:\VANTAGE\vantage.ini -pf V:\VANTAGE\db\Vantage.pf -N TCP -H loc-vntg -S epic52 -ld vantage -p v:\" & ReportPath & ReportName & " -rand 2 -q -basekey ini" This is all one line and when I try to use line continuation ( _ ) I keep getting errors.
1
3777
by: lophiomys | last post by:
Hi, I have an extra long attribute value, and can't find a way to wrap it over several short lines in my text editor, so that it stays nicely human readable. Is there a line-continuation escape-code for attribute values, which could be used in a std text edior for writing nicely formatted xml?
2
2163
by: lekshminair | last post by:
hello friends, can u help me. how to print first string in a line.(before first space) for example: String str={"Hello world java"} output Hello
34
2727
by: Umesh | last post by:
I want to extract a string abc*xyz from a text file. * indicates arbitrary no. of characters. I'm only able to do it when the string has definite no. of characters or the string length is constant: i.e. five or the string is abc????? xyz How can i generalize it for any length of the string?
11
2412
by: Gustaf | last post by:
Some error handling code: catch (System.Xml.XmlException e) { Console.WriteLine("Error in " + e.SourceUri + ": " + e.Message); return; } The output:
6
9297
by: kimiraikkonen | last post by:
Hi, I want to save all the item content of a listbox line by line into a simple text file then recall them when my project is opened. For example listbox1 contains: That - item1 Group -item2 Is -item3 Really -item4
6
1976
by: Russ P. | last post by:
I've always appreciated Python's lack of requirement for a semi-colon at the end of each line. I also appreciate its rules for automatic line continuation. If a statement ends with a "+", for example, Python recognizes that the statement obviously must continue. I've noticed, however, that the same rule does not apply when a line ends with "and," "or," or "not." Yes, it's a minor point, but shouldn't the same rule apply? Seems like it...
3
4441
by: MLH | last post by:
I don't understand why (a) works and compiles but (b) does not... (a) Set qdfTemp = .CreateQueryDef("", _ "SELECT * FROM Employees") (b) Set qdfTemp = .CreateQueryDef("", _ "SELECT DISTINCTROW tblPmtsRcd.PmtID, tblPmtsRcd.InvoiceNumber, tblPmtsRcd.VehicleJobID,
1
1516
by: sreemathy2000 | last post by:
My requirement is to read/write a javascript file in a windows applications. this javascript file is used by my website.. function test { var a; //start dim obj ={'abc','bcd','cde','def'}; //end Some other code here }
0
8384
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8896
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
8659
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...
0
7410
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6211
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
5683
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
4208
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...
1
2798
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 we have to send another system
2
2035
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.