473,767 Members | 2,226 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Re-use snippets of code

I've seen how people have snippets of code stored over by the tool box and
then can drag them into a code page. What do you call this and what's a
reference on how to do this?

Thanks.

--
mo*******@nospa m.com
Nov 21 '05 #1
5 1600
Hi
It is called the ClipBoard Ring. Basically it allows you to copy and
paste or cut and paste from your code window into it. You can then drag
code snippets from it back into code windows as you need them.

Here is the Help item from VS:
To use the Clipboard ring

1.. Cut or copy some text from your code. Use CTRL+X to cut or CTRL+C to
copy. The last item you cut or copy into the Clipboard Ring is the current
item for pasting.
2.. Use CTRL+SHIFT+V to paste the Clipboard Ring's current item to the
current document.
3.. Repeatedly press CTRL+SHIFT+V to cycle through the entries in the
Clipboard Ring until you get to the one you want to permanently paste in the
document. Each time you press CTRL+SHIFT+V, the Editor replaces the last
entry you pasted from the Clipboard Ring so that you end up with only the
last one you selected. The item you stop on then becomes the current item.
4.. Move to another location or cancel the selection. You can use
CTRL+SHIFT+V to paste the current item again or cycle the Clipboard Ring to
a new item.

"moondaddy" <mo*******@nosp am.com> wrote in message
news:e0******** ******@TK2MSFTN GP15.phx.gbl...
I've seen how people have snippets of code stored over by the tool box and
then can drag them into a code page. What do you call this and what's a
reference on how to do this?

Thanks.

--
mo*******@nospa m.com

Nov 21 '05 #2
Thanks

--
mo*******@nospa m.com
"Ged Mead" <ge*********@te sco.net> wrote in message
news:5A******** ***@newsfe2-gui.ntli.net...
Hi
It is called the ClipBoard Ring. Basically it allows you to copy and
paste or cut and paste from your code window into it. You can then drag
code snippets from it back into code windows as you need them.

Here is the Help item from VS:
To use the Clipboard ring

1.. Cut or copy some text from your code. Use CTRL+X to cut or CTRL+C to
copy. The last item you cut or copy into the Clipboard Ring is the current
item for pasting.
2.. Use CTRL+SHIFT+V to paste the Clipboard Ring's current item to the
current document.
3.. Repeatedly press CTRL+SHIFT+V to cycle through the entries in the
Clipboard Ring until you get to the one you want to permanently paste in
the
document. Each time you press CTRL+SHIFT+V, the Editor replaces the last
entry you pasted from the Clipboard Ring so that you end up with only the
last one you selected. The item you stop on then becomes the current item.
4.. Move to another location or cancel the selection. You can use
CTRL+SHIFT+V to paste the current item again or cycle the Clipboard Ring
to
a new item.

"moondaddy" <mo*******@nosp am.com> wrote in message
news:e0******** ******@TK2MSFTN GP15.phx.gbl...
I've seen how people have snippets of code stored over by the tool box
and
then can drag them into a code page. What do you call this and what's a
reference on how to do this?

Thanks.

--
mo*******@nospa m.com


Nov 21 '05 #3
Hi,

Here is how to add a tab to the toolbox that contains some code
snippit. Here is some code for a console app.

Imports EnvDTE

Module Module1

Sub Main()

Dim myDTE As DTE

myDTE =
CType(Microsoft .VisualBasic.In teraction.Creat eObject("Visual Studio.DTE.7.1" ),
DTE)

Dim objToolbox As ToolBox

Dim colTbxTabs As ToolBoxTabs

Dim objTab As ToolBoxTab

Dim colTbxItems As ToolBoxItems

Dim objTbxItem As ToolBoxItem

objToolbox = CType(myDTE.Win dows.Item(Const ants.vsWindowKi ndToolbox).Obje ct,
ToolBox)

colTbxTabs = objToolbox.Tool BoxTabs

' look to see if tab exists

Dim bFound As Boolean = False

Dim tbtDelete As ToolBoxTab

For Each t As ToolBoxTab In colTbxTabs

If t.Name = "WMI Code" Then

tbtDelete = t

bFound = True

End If

Next

If bFound Then tbtDelete.Delet e()

objTab = colTbxTabs.Add( "WMI Code")

objTab.Activate ()

Dim sbCode As New System.Text.Str ingBuilder

sbCode.Append(" ' Add a Reference to System.Manageme nt" & ControlChars.Cr Lf)

sbCode.Append(" Dim moReturn As Management.Mana gementObjectCol lection" &
ControlChars.Cr Lf)

sbCode.Append(" Dim moSearch As Management.Mana gementObjectSea rcher" &
ControlChars.Cr Lf)

sbCode.Append(" Dim mo As Management.Mana gementObject" & ControlChars.Cr Lf)

sbCode.Append(" " & ControlChars.Cr Lf)

sbCode.Append(" moSearch = New Management.Mana gementObjectSea rcher(""Select *
from Win32_LogicalDi sk"")" & ControlChars.Cr Lf)

sbCode.Append(" moReturn = moSearch.Get" & ControlChars.Cr Lf)

sbCode.Append(" For Each mo In moReturn" & ControlChars.Cr Lf)

sbCode.Append(" Dim strOut As String" & ControlChars.Cr Lf)

sbCode.Append(" strOut = String.Format(" "Drive {0} - Drive Type {1}"",
mo(""Name""), mo(""DriveType" "))" & ControlChars.Cr Lf)

sbCode.Append(" Trace.WriteLine (strOut)" & ControlChars.Cr Lf)

sbCode.Append(" Next" & ControlChars.Cr Lf)

objTab.ToolBoxI tems.Add("Logic alDisk", sbCode.ToString ,
vsToolBoxItemFo rmat.vsToolBoxI temFormatText)

sbCode = New System.Text.Str ingBuilder

sbCode.Append(" ' Add a Reference to System.Manageme nt" & ControlChars.Cr Lf)

sbCode.Append(" Dim moReturn As Management.Mana gementObjectCol lection" &
ControlChars.Cr Lf)

sbCode.Append(" Dim moSearch As Management.Mana gementObjectSea rcher" &
ControlChars.Cr Lf)

sbCode.Append(" Dim mo As Management.Mana gementObject" & ControlChars.Cr Lf)

sbCode.Append(" " & ControlChars.Cr Lf)

sbCode.Append(" moSearch = New Management.Mana gementObjectSea rcher(""Select *
from Win32_Group"")" & ControlChars.Cr Lf)

sbCode.Append(" moReturn = moSearch.Get" & ControlChars.Cr Lf)

sbCode.Append(" For Each mo In moReturn" & ControlChars.Cr Lf)

sbCode.Append(" Trace.WriteLine (mo(""Name""))" & ControlChars.Cr Lf)

sbCode.Append(" Next" & ControlChars.Cr Lf)

objTab.ToolBoxI tems.Add("Group s", sbCode.ToString ,
vsToolBoxItemFo rmat.vsToolBoxI temFormatText)

sbCode = New System.Text.Str ingBuilder

sbCode.Append(" ' Add a Reference to System.Manageme nt" & ControlChars.Cr Lf)

sbCode.Append(" Dim moReturn As Management.Mana gementObjectCol lection" &
ControlChars.Cr Lf)

sbCode.Append(" Dim moSearch As Management.Mana gementObjectSea rcher" &
ControlChars.Cr Lf)

sbCode.Append(" Dim mo As Management.Mana gementObject" & ControlChars.Cr Lf)

sbCode.Append(" " & ControlChars.Cr Lf)

sbCode.Append(" moSearch = New Management.Mana gementObjectSea rcher(""Select *
from Win32_Process"" )" & ControlChars.Cr Lf)

sbCode.Append(" moReturn = moSearch.Get" & ControlChars.Cr Lf)

sbCode.Append(" For Each mo In moReturn" & ControlChars.Cr Lf)

sbCode.Append(" Dim arOwner(2) As String" & ControlChars.Cr Lf)

sbCode.Append(" mo.InvokeMethod (""GetOwner" ", arOwner)" & ControlChars.Cr Lf)

sbCode.Append(" Dim strOut As String" & ControlChars.Cr Lf)

sbCode.Append(" strOut = String.Format(" "{0} Owner {1} Domain {2}"",
mo(""Name""), arOwner(0), arOwner(1))" & ControlChars.Cr Lf)

sbCode.Append(" Trace.WriteLine (strOut)" & ControlChars.Cr Lf)

sbCode.Append(" Next" & ControlChars.Cr Lf)

objTab.ToolBoxI tems.Add("Proce ssOwner", sbCode.ToString ,
vsToolBoxItemFo rmat.vsToolBoxI temFormatText)

sbCode = New System.Text.Str ingBuilder

sbCode.Append(" ' Add a Reference to System.Manageme nt" & ControlChars.Cr Lf)

sbCode.Append(" Dim moReturn As Management.Mana gementObjectCol lection" &
ControlChars.Cr Lf)

sbCode.Append(" Dim moSearch As Management.Mana gementObjectSea rcher" &
ControlChars.Cr Lf)

sbCode.Append(" Dim mo As Management.Mana gementObject" & ControlChars.Cr Lf)

sbCode.Append(" " & ControlChars.Cr Lf)

sbCode.Append(" moSearch = New Management.Mana gementObjectSea rcher(""Select *
from Win32_Processor "")" & ControlChars.Cr Lf)

sbCode.Append(" moReturn = moSearch.Get" & ControlChars.Cr Lf)

sbCode.Append(" For Each mo In moReturn" & ControlChars.Cr Lf)

sbCode.Append(" Dim strOut As String" & ControlChars.Cr Lf)

sbCode.Append(" strOut = String.Format(" "{0} - ID {1}"", mo(""Name""),
mo(""ProcessorI D""))" & ControlChars.Cr Lf)

sbCode.Append(" Trace.WriteLine (strOut)" & ControlChars.Cr Lf)

sbCode.Append(" Next" & ControlChars.Cr Lf)

objTab.ToolBoxI tems.Add("Proce ssor", sbCode.ToString ,
vsToolBoxItemFo rmat.vsToolBoxI temFormatText)

' Add a Reference to System.Manageme nt

Dim moReturn As Management.Mana gementObjectCol lection

Dim moSearch As Management.Mana gementObjectSea rcher

Dim mo As Management.Mana gementObject

moSearch = New Management.Mana gementObjectSea rcher("Select * from
Win32_Group")

moReturn = moSearch.Get

For Each mo In moReturn

Trace.WriteLine (mo("Name"))

Next

End Sub

End Module

Ken

------------------------

"moondaddy" <mo*******@nosp am.com> wrote in message
news:e0******** ******@TK2MSFTN GP15.phx.gbl...
I've seen how people have snippets of code stored over by the tool box and
then can drag them into a code page. What do you call this and what's a
reference on how to do this?

Thanks.

--
mo*******@nospa m.com

Nov 21 '05 #4
Hi,

The clipboard ring wont be there after you close the ide. See my
reply on how to add a tab to the toolbox with some code snippits.

Ken
----------------
"Ged Mead" <ge*********@te sco.net> wrote in message
news:5A******** ***@newsfe2-gui.ntli.net...
Hi
It is called the ClipBoard Ring. Basically it allows you to copy and
paste or cut and paste from your code window into it. You can then drag
code snippets from it back into code windows as you need them.

Here is the Help item from VS:
To use the Clipboard ring

1.. Cut or copy some text from your code. Use CTRL+X to cut or CTRL+C to
copy. The last item you cut or copy into the Clipboard Ring is the current
item for pasting.
2.. Use CTRL+SHIFT+V to paste the Clipboard Ring's current item to the
current document.
3.. Repeatedly press CTRL+SHIFT+V to cycle through the entries in the
Clipboard Ring until you get to the one you want to permanently paste in the
document. Each time you press CTRL+SHIFT+V, the Editor replaces the last
entry you pasted from the Clipboard Ring so that you end up with only the
last one you selected. The item you stop on then becomes the current item.
4.. Move to another location or cancel the selection. You can use
CTRL+SHIFT+V to paste the current item again or cycle the Clipboard Ring to
a new item.

"moondaddy" <mo*******@nosp am.com> wrote in message
news:e0******** ******@TK2MSFTN GP15.phx.gbl...
I've seen how people have snippets of code stored over by the tool box and
then can drag them into a code page. What do you call this and what's a
reference on how to do this?

Thanks.

--
mo*******@nospa m.com


Nov 21 '05 #5
Hi,

Sorry forgot to mention you need to add a reference to envdte
for this to work. Sample works best if you build the app and run it with
vs.net closed.

Ken
---------------------
"Ken Tucker [MVP]" <vb***@bellsout h.net> wrote in message
news:Ol******** ******@tk2msftn gp13.phx.gbl...
Hi,

Here is how to add a tab to the toolbox that contains some code
snippit. Here is some code for a console app.

Imports EnvDTE

Module Module1

Sub Main()

Dim myDTE As DTE

myDTE =
CType(Microsoft .VisualBasic.In teraction.Creat eObject("Visual Studio.DTE.7.1" ),
DTE)

Dim objToolbox As ToolBox

Dim colTbxTabs As ToolBoxTabs

Dim objTab As ToolBoxTab

Dim colTbxItems As ToolBoxItems

Dim objTbxItem As ToolBoxItem

objToolbox = CType(myDTE.Win dows.Item(Const ants.vsWindowKi ndToolbox).Obje ct,
ToolBox)

colTbxTabs = objToolbox.Tool BoxTabs

' look to see if tab exists

Dim bFound As Boolean = False

Dim tbtDelete As ToolBoxTab

For Each t As ToolBoxTab In colTbxTabs

If t.Name = "WMI Code" Then

tbtDelete = t

bFound = True

End If

Next

If bFound Then tbtDelete.Delet e()

objTab = colTbxTabs.Add( "WMI Code")

objTab.Activate ()

Dim sbCode As New System.Text.Str ingBuilder

sbCode.Append(" ' Add a Reference to System.Manageme nt" & ControlChars.Cr Lf)

sbCode.Append(" Dim moReturn As Management.Mana gementObjectCol lection" &
ControlChars.Cr Lf)

sbCode.Append(" Dim moSearch As Management.Mana gementObjectSea rcher" &
ControlChars.Cr Lf)

sbCode.Append(" Dim mo As Management.Mana gementObject" & ControlChars.Cr Lf)

sbCode.Append(" " & ControlChars.Cr Lf)

sbCode.Append(" moSearch = New Management.Mana gementObjectSea rcher(""Select *
from Win32_LogicalDi sk"")" & ControlChars.Cr Lf)

sbCode.Append(" moReturn = moSearch.Get" & ControlChars.Cr Lf)

sbCode.Append(" For Each mo In moReturn" & ControlChars.Cr Lf)

sbCode.Append(" Dim strOut As String" & ControlChars.Cr Lf)

sbCode.Append(" strOut = String.Format(" "Drive {0} - Drive Type {1}"",
mo(""Name""), mo(""DriveType" "))" & ControlChars.Cr Lf)

sbCode.Append(" Trace.WriteLine (strOut)" & ControlChars.Cr Lf)

sbCode.Append(" Next" & ControlChars.Cr Lf)

objTab.ToolBoxI tems.Add("Logic alDisk", sbCode.ToString ,
vsToolBoxItemFo rmat.vsToolBoxI temFormatText)

sbCode = New System.Text.Str ingBuilder

sbCode.Append(" ' Add a Reference to System.Manageme nt" & ControlChars.Cr Lf)

sbCode.Append(" Dim moReturn As Management.Mana gementObjectCol lection" &
ControlChars.Cr Lf)

sbCode.Append(" Dim moSearch As Management.Mana gementObjectSea rcher" &
ControlChars.Cr Lf)

sbCode.Append(" Dim mo As Management.Mana gementObject" & ControlChars.Cr Lf)

sbCode.Append(" " & ControlChars.Cr Lf)

sbCode.Append(" moSearch = New Management.Mana gementObjectSea rcher(""Select *
from Win32_Group"")" & ControlChars.Cr Lf)

sbCode.Append(" moReturn = moSearch.Get" & ControlChars.Cr Lf)

sbCode.Append(" For Each mo In moReturn" & ControlChars.Cr Lf)

sbCode.Append(" Trace.WriteLine (mo(""Name""))" & ControlChars.Cr Lf)

sbCode.Append(" Next" & ControlChars.Cr Lf)

objTab.ToolBoxI tems.Add("Group s", sbCode.ToString ,
vsToolBoxItemFo rmat.vsToolBoxI temFormatText)

sbCode = New System.Text.Str ingBuilder

sbCode.Append(" ' Add a Reference to System.Manageme nt" & ControlChars.Cr Lf)

sbCode.Append(" Dim moReturn As Management.Mana gementObjectCol lection" &
ControlChars.Cr Lf)

sbCode.Append(" Dim moSearch As Management.Mana gementObjectSea rcher" &
ControlChars.Cr Lf)

sbCode.Append(" Dim mo As Management.Mana gementObject" & ControlChars.Cr Lf)

sbCode.Append(" " & ControlChars.Cr Lf)

sbCode.Append(" moSearch = New Management.Mana gementObjectSea rcher(""Select *
from Win32_Process"" )" & ControlChars.Cr Lf)

sbCode.Append(" moReturn = moSearch.Get" & ControlChars.Cr Lf)

sbCode.Append(" For Each mo In moReturn" & ControlChars.Cr Lf)

sbCode.Append(" Dim arOwner(2) As String" & ControlChars.Cr Lf)

sbCode.Append(" mo.InvokeMethod (""GetOwner" ", arOwner)" & ControlChars.Cr Lf)

sbCode.Append(" Dim strOut As String" & ControlChars.Cr Lf)

sbCode.Append(" strOut = String.Format(" "{0} Owner {1} Domain {2}"",
mo(""Name""), arOwner(0), arOwner(1))" & ControlChars.Cr Lf)

sbCode.Append(" Trace.WriteLine (strOut)" & ControlChars.Cr Lf)

sbCode.Append(" Next" & ControlChars.Cr Lf)

objTab.ToolBoxI tems.Add("Proce ssOwner", sbCode.ToString ,
vsToolBoxItemFo rmat.vsToolBoxI temFormatText)

sbCode = New System.Text.Str ingBuilder

sbCode.Append(" ' Add a Reference to System.Manageme nt" & ControlChars.Cr Lf)

sbCode.Append(" Dim moReturn As Management.Mana gementObjectCol lection" &
ControlChars.Cr Lf)

sbCode.Append(" Dim moSearch As Management.Mana gementObjectSea rcher" &
ControlChars.Cr Lf)

sbCode.Append(" Dim mo As Management.Mana gementObject" & ControlChars.Cr Lf)

sbCode.Append(" " & ControlChars.Cr Lf)

sbCode.Append(" moSearch = New Management.Mana gementObjectSea rcher(""Select *
from Win32_Processor "")" & ControlChars.Cr Lf)

sbCode.Append(" moReturn = moSearch.Get" & ControlChars.Cr Lf)

sbCode.Append(" For Each mo In moReturn" & ControlChars.Cr Lf)

sbCode.Append(" Dim strOut As String" & ControlChars.Cr Lf)

sbCode.Append(" strOut = String.Format(" "{0} - ID {1}"", mo(""Name""),
mo(""ProcessorI D""))" & ControlChars.Cr Lf)

sbCode.Append(" Trace.WriteLine (strOut)" & ControlChars.Cr Lf)

sbCode.Append(" Next" & ControlChars.Cr Lf)

objTab.ToolBoxI tems.Add("Proce ssor", sbCode.ToString ,
vsToolBoxItemFo rmat.vsToolBoxI temFormatText)

' Add a Reference to System.Manageme nt

Dim moReturn As Management.Mana gementObjectCol lection

Dim moSearch As Management.Mana gementObjectSea rcher

Dim mo As Management.Mana gementObject

moSearch = New Management.Mana gementObjectSea rcher("Select * from
Win32_Group")

moReturn = moSearch.Get

For Each mo In moReturn

Trace.WriteLine (mo("Name"))

Next

End Sub

End Module

Ken

------------------------

"moondaddy" <mo*******@nosp am.com> wrote in message
news:e0******** ******@TK2MSFTN GP15.phx.gbl...
I've seen how people have snippets of code stored over by the tool box and
then can drag them into a code page. What do you call this and what's a
reference on how to do this?

Thanks.

--
mo*******@nospa m.com


Nov 21 '05 #6

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

Similar topics

4
6429
by: Craig Bailey | last post by:
Anyone recommend a good script editor for Mac OS X? Just finished a 4-day PHP class in front of a Windows machine, and liked the editor we used. Don't recall the name, but it gave line numbers as well as some color coding, etc. Having trouble finding the same in an editor that'll run on OS X. -- Floydian Slip(tm) - "Broadcasting from the dark side of the moon"
11
4010
by: James | last post by:
My form and results are on one page. If I use : if ($Company) { $query = "Select Company, Contact From tblworking Where ID = $Company Order By Company ASC"; }
8
4417
by: Beowulf | last post by:
Hi Guru's, I have a query regarding using PHP to maintain a user profiles list. I want to be able to have a form where users can fill in their profile info (Name, hobbies etc) and attach an image, which will upload the record to a mySql db so users can then either view all profiles or query.. I.e. show all males in UK, all femails over 35 etc. Now, I'm not asking for How to do this but more what would be the best way? I've looked at...
2
106616
by: sky2070 | last post by:
i have two file with jobapp.html calling jobapp_action.php <HTML> <!-- jobapp.html --> <BODY> <H1>Phop's Bicycles Job Application</H1> <P>Are you looking for an exciting career in the world of cyclery? Look no further! </P> <FORM NAME='frmJobApp' METHOD=post ACTION="jobapp_action.php"> Please enter your name:
1
13655
by: Brian | last post by:
I have an array like this: $events = array( array( '2003-07-01', 'Event Title 1', '1' //ID Number (not unique) ), array( '2003-07-02',
2
5313
by: JW | last post by:
I wanted have this as part of a flood control script: <? echo ("Flood control in place - please wait " . $floodinterval . " seconds between postings."); sleep(5); // go back two pages echo "<script>window.history.go(-2);</script>"; exit; ?>
6
3516
by: Chris Krasnichuk | last post by:
Hello every one, Does anyone know how to make php work on your computer? please reply I need help Chris
2
3342
by: Frans Schmidt | last post by:
I want to make a new database with several tables, so I did the following: <?php CREATE DATABASE bedrijf; CREATE TABLE werknemers (voornaam varchar(15), achternaam varchar(20), leeftijd tinyint(3), adres varchar(30), woonplaats varchar(20),
3
5387
by: Dell Sala | last post by:
I have recently enabled the PHP 4.2.1 that comes pre-installed on OS X. After making all the prescribed changes to the httpd.conf file php seems to work fine. I would like to make some changes to the php.ini file, but I can't find it. phpinfo() tells me that it is in /usr/lib but don't see the file there (or anywhere else). Even after creating my own php.ini file in /usr/lib my changes aren't acknowledged on the phpinfo() page. ...
20
11666
by: bb | last post by:
I'm not a Perl programmer nor a Linux adherent. What are the advantages of LAMP vs.the Java model for building data-driven websites? I do a fair amount of development using Tomcat/JSP/Servlets with Struts for clients. I see more and more ads for LAMP/PHP developers. What are the advantages and tradeoffs? All opinions welcomed....
0
9571
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9404
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
10168
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...
1
9959
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
6651
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
5279
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...
0
5423
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3929
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
3532
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.