473,785 Members | 2,801 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Sizing an Application Window

Max
Hello,

Using VB.NET, I can activate an application by entering:

AppActivate(int ProcessID), where intProcessID is the
process ID of a running application.

Is it possible to set the size and location of the
application window?

Thank you,

Max
Nov 20 '05 #1
9 3483
Sure,

you can obtain window handle for app main window and use MoveWindow API
function on it.

[DllImport("User 32")]

internal static extern bool MoveWindow(IntP tr hWnd, int X, int Y, int
nWidth, int nHeight, bool bRepaint);
HTH

Alex
"Max" <an*******@disc ussions.microso ft.com> wrote in message
news:00******** *************** *****@phx.gbl.. .
Hello,

Using VB.NET, I can activate an application by entering:

AppActivate(int ProcessID), where intProcessID is the
process ID of a running application.

Is it possible to set the size and location of the
application window?

Thank you,

Max

Nov 20 '05 #2
* "Max" <an*******@disc ussions.microso ft.com> scripsit:
Using VB.NET, I can activate an application by entering:

AppActivate(int ProcessID), where intProcessID is the
process ID of a running application.

Is it possible to set the size and location of the
application window?


If you have its Window handle, you can try it with pinvoke on
'SetWindowPos' or 'MoveWindow'.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Nov 20 '05 #3
Max
-----Original Message-----
* "Max" <an*******@disc ussions.microso ft.com> scripsit:
Using VB.NET, I can activate an application by entering:
AppActivate(int ProcessID), where intProcessID is the
process ID of a running application.

Is it possible to set the size and location of the
application window?
If you have its Window handle, you can try it with

pinvoke on'SetWindowPo s' or 'MoveWindow'.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
.


Hello Herfried and thank you for the advice.

However, the 'SetWindowPos' and 'MoveWindow' functions
appear to be C functions. I am coding in VB.NET. How
can I access this functionality from VB.NET?

Thanks,

Max
Nov 20 '05 #4
* "Max" <an*******@disc ussions.microso ft.com> scripsit:
However, the 'SetWindowPos' and 'MoveWindow' functions
appear to be C functions. I am coding in VB.NET. How
can I access this functionality from VB.NET?


\\\
Public Declare Auto Function SetWindowPos Lib "user32.dll " ( _
ByVal hWnd As IntPtr, _
ByVal hWndInsertAfter As IntPtr, _
ByVal X As Int32, _
ByVal Y As Int32, _
ByVal cx As Int32, _
ByVal cy As Int32, _
ByVal uFlags As UInt32 _
) As Boolean

Public Declare Auto Function MoveWindow Lib "user32.dll "( _
ByVal hWnd As IntPtr, _
ByVal X As Int32, _
ByVal Y As Int32, _
ByVal nWidth As Int32, _
ByVal nHeight As Int32, _
ByVal bRepaint As Boolean _
) As Boolean
///

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Nov 20 '05 #5
Thank You !!!

-----Original Message-----
* "Max" <an*******@disc ussions.microso ft.com> scripsit:
However, the 'SetWindowPos' and 'MoveWindow' functions
appear to be C functions. I am coding in VB.NET. How
can I access this functionality from VB.NET?
\\\
Public Declare Auto Function SetWindowPos

Lib "user32.dll " ( _ ByVal hWnd As IntPtr, _
ByVal hWndInsertAfter As IntPtr, _
ByVal X As Int32, _
ByVal Y As Int32, _
ByVal cx As Int32, _
ByVal cy As Int32, _
ByVal uFlags As UInt32 _
) As Boolean

Public Declare Auto Function MoveWindow Lib "user32.dll "( _ ByVal hWnd As IntPtr, _
ByVal X As Int32, _
ByVal Y As Int32, _
ByVal nWidth As Int32, _
ByVal nHeight As Int32, _
ByVal bRepaint As Boolean _
) As Boolean
///

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
.

Nov 20 '05 #6
* <an*******@disc ussions.microso ft.com> scripsit:
Thank You !!!


If you have problems in calling the functions, please let us know.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Nov 20 '05 #7
Thank you, again for your help.

I've tried the function MoveWindow. The function
executes without reporting an error, however, the window
is not resized and the function returns "False".

I have added System.Runtime. Interopservices to my project
imports.

My code is shown below (the relevant subroutine is
entitled "btnStartCAMMas ter_Click"). I have commented
out the custom application that I am trying to start and
used "notepad.ex e" instead:

Public Class frmAutoRun
Inherits System.Windows. Forms.Form

#Region " Windows Form Designer generated code "

Public Sub New()
MyBase.New()

'This call is required by the Windows Form
Designer.
InitializeCompo nent()

'Add any initialization after the
InitializeCompo nent() call

End Sub

'Form overrides dispose to clean up the component
list.
Protected Overloads Overrides Sub Dispose(ByVal
disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Disp ose()
End If
End If
MyBase.Dispose( disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.Componen tModel.IContain er

'NOTE: The following procedure is required by the
Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents pnlTop As System.Windows. Forms.Panel
Friend WithEvents splHorizontalTo p As
System.Windows. Forms.Splitter
Friend WithEvents pnlBottom As
System.Windows. Forms.Panel
Friend WithEvents splHorizontalBo ttom As
System.Windows. Forms.Splitter
Friend WithEvents pnlLeft As
System.Windows. Forms.Panel
Friend WithEvents splVertical As
System.Windows. Forms.Splitter
Friend WithEvents sbrStatus As
System.Windows. Forms.StatusBar
Friend WithEvents pnlLeftTop As
System.Windows. Forms.Panel
Friend WithEvents Splitter1 As
System.Windows. Forms.Splitter
Friend WithEvents pnlLeftBottom As
System.Windows. Forms.Panel
Friend WithEvents mnuMain As
System.Windows. Forms.MainMenu
Friend WithEvents pnlRight As
System.Windows. Forms.Panel
Friend WithEvents btnStartCAMMast er As
System.Windows. Forms.Button
Friend WithEvents btnShowHideCAMM aster As
System.Windows. Forms.Button
<System.Diagnos tics.DebuggerSt epThrough()> Private
Sub InitializeCompo nent()
Dim resources As System.Resource s.ResourceManag er
= New System.Resource s.ResourceManag er(GetType
(frmAutoRun))
Me.pnlTop = New System.Windows. Forms.Panel
Me.splHorizonta lTop = New
System.Windows. Forms.Splitter
Me.pnlBottom = New System.Windows. Forms.Panel
Me.sbrStatus = New System.Windows. Forms.StatusBar
Me.splHorizonta lBottom = New
System.Windows. Forms.Splitter
Me.pnlLeft = New System.Windows. Forms.Panel
Me.pnlLeftBotto m = New System.Windows. Forms.Panel
Me.btnShowHideC AMMaster = New
System.Windows. Forms.Button
Me.btnStartCAMM aster = New
System.Windows. Forms.Button
Me.Splitter1 = New System.Windows. Forms.Splitter
Me.pnlLeftTop = New System.Windows. Forms.Panel
Me.splVertical = New System.Windows. Forms.Splitter
Me.mnuMain = New System.Windows. Forms.MainMenu
Me.pnlRight = New System.Windows. Forms.Panel
Me.pnlBottom.Su spendLayout()
Me.pnlLeft.Susp endLayout()
Me.pnlLeftBotto m.SuspendLayout ()
Me.SuspendLayou t()
'
'pnlTop
'
Me.pnlTop.Dock =
System.Windows. Forms.DockStyle .Top
Me.pnlTop.Locat ion = New System.Drawing. Point(0,
0)
Me.pnlTop.Name = "pnlTop"
Me.pnlTop.Size = New System.Drawing. Size(240, 56)
Me.pnlTop.TabIn dex = 3
'
'splHorizontalT op
'
Me.splHorizonta lTop.Dock =
System.Windows. Forms.DockStyle .Top
Me.splHorizonta lTop.Location = New
System.Drawing. Point(0, 56)
Me.splHorizonta lTop.Name = "splHorizontalT op"
Me.splHorizonta lTop.Size = New System.Drawing. Size
(240, 3)
Me.splHorizonta lTop.TabIndex = 4
Me.splHorizonta lTop.TabStop = False
'
'pnlBottom
'
Me.pnlBottom.Co ntrols.Add(Me.s brStatus)
Me.pnlBottom.Do ck =
System.Windows. Forms.DockStyle .Bottom
Me.pnlBottom.Lo cation = New System.Drawing. Point
(0, 494)
Me.pnlBottom.Na me = "pnlBottom"
Me.pnlBottom.Si ze = New System.Drawing. Size(240,
56)
Me.pnlBottom.Ta bIndex = 5
'
'sbrStatus
'
Me.sbrStatus.Lo cation = New System.Drawing. Point
(0, 34)
Me.sbrStatus.Na me = "sbrStatus"
Me.sbrStatus.Si ze = New System.Drawing. Size(240,
22)
Me.sbrStatus.Ta bIndex = 0
Me.sbrStatus.Te xt = "StatusBar1 "
'
'splHorizontalB ottom
'
Me.splHorizonta lBottom.Dock =
System.Windows. Forms.DockStyle .Bottom
Me.splHorizonta lBottom.Locatio n = New
System.Drawing. Point(0, 491)
Me.splHorizonta lBottom.Name
= "splHorizontalB ottom"
Me.splHorizonta lBottom.Size = New
System.Drawing. Size(240, 3)
Me.splHorizonta lBottom.TabInde x = 6
Me.splHorizonta lBottom.TabStop = False
'
'pnlLeft
'
Me.pnlLeft.Cont rols.Add(Me.pnl LeftBottom)
Me.pnlLeft.Cont rols.Add(Me.Spl itter1)
Me.pnlLeft.Cont rols.Add(Me.pnl LeftTop)
Me.pnlLeft.Dock =
System.Windows. Forms.DockStyle .Left
Me.pnlLeft.Loca tion = New System.Drawing. Point(0,
59)
Me.pnlLeft.Name = "pnlLeft"
Me.pnlLeft.Size = New System.Drawing. Size(200,
432)
Me.pnlLeft.TabI ndex = 7
'
'pnlLeftBottom
'
Me.pnlLeftBotto m.BackColor =
System.Drawing. SystemColors.Co ntrol
Me.pnlLeftBotto m.Controls.Add
(Me.btnShowHide CAMMaster)
Me.pnlLeftBotto m.Controls.Add
(Me.btnStartCAM Master)
Me.pnlLeftBotto m.Dock =
System.Windows. Forms.DockStyle .Fill
Me.pnlLeftBotto m.Location = New
System.Drawing. Point(0, 99)
Me.pnlLeftBotto m.Name = "pnlLeftBot tom"
Me.pnlLeftBotto m.Size = New System.Drawing. Size
(200, 333)
Me.pnlLeftBotto m.TabIndex = 11
'
'btnShowHideCAM Master
'
Me.btnShowHideC AMMaster.Dock =
System.Windows. Forms.DockStyle .Bottom
Me.btnShowHideC AMMaster.Locati on = New
System.Drawing. Point(0, 287)
Me.btnShowHideC AMMaster.Name
= "btnShowHideCAM Master"
Me.btnShowHideC AMMaster.Size = New
System.Drawing. Size(200, 23)
Me.btnShowHideC AMMaster.TabInd ex = 1
Me.btnShowHideC AMMaster.Text = "Show CAMMaster"
'
'btnStartCAMMas ter
'
Me.btnStartCAMM aster.Dock =
System.Windows. Forms.DockStyle .Bottom
Me.btnStartCAMM aster.Location = New
System.Drawing. Point(0, 310)
Me.btnStartCAMM aster.Name = "btnStartCAMMas ter"
Me.btnStartCAMM aster.Size = New
System.Drawing. Size(200, 23)
Me.btnStartCAMM aster.TabIndex = 0
Me.btnStartCAMM aster.Text = "Start CAMMaster"
'
'Splitter1
'
Me.Splitter1.Do ck =
System.Windows. Forms.DockStyle .Top
Me.Splitter1.Lo cation = New System.Drawing. Point
(0, 96)
Me.Splitter1.Na me = "Splitter1"
Me.Splitter1.Si ze = New System.Drawing. Size(200,
3)
Me.Splitter1.Ta bIndex = 10
Me.Splitter1.Ta bStop = False
'
'pnlLeftTop
'
Me.pnlLeftTop.D ock =
System.Windows. Forms.DockStyle .Top
Me.pnlLeftTop.L ocation = New System.Drawing. Point
(0, 0)
Me.pnlLeftTop.N ame = "pnlLeftTop "
Me.pnlLeftTop.S ize = New System.Drawing. Size(200,
96)
Me.pnlLeftTop.T abIndex = 9
'
'splVertical
'
Me.splVertical. Location = New System.Drawing. Point
(200, 59)
Me.splVertical. Name = "splVertica l"
Me.splVertical. Size = New System.Drawing. Size(3,
432)
Me.splVertical. TabIndex = 8
Me.splVertical. TabStop = False
'
'pnlRight
'
Me.pnlRight.Doc k =
System.Windows. Forms.DockStyle .Fill
Me.pnlRight.Loc ation = New System.Drawing. Point
(203, 59)
Me.pnlRight.Nam e = "pnlRight"
Me.pnlRight.Siz e = New System.Drawing. Size(37,
432)
Me.pnlRight.Tab Index = 9
'
'frmAutoRun
'
Me.AutoScaleBas eSize = New System.Drawing. Size(5,
13)
Me.ClientSize = New System.Drawing. Size(240, 550)
Me.Controls.Add (Me.pnlRight)
Me.Controls.Add (Me.splVertical )
Me.Controls.Add (Me.pnlLeft)
Me.Controls.Add (Me.splHorizont alBottom)
Me.Controls.Add (Me.pnlBottom)
Me.Controls.Add (Me.splHorizont alTop)
Me.Controls.Add (Me.pnlTop)
Me.Icon = CType(resources .GetObject
("$this.Icon "), System.Drawing. Icon)
Me.Menu = Me.mnuMain
Me.Name = "frmAutoRun "
Me.Text = "PentaLogix AutoPanel Control Center"
Me.pnlBottom.Re sumeLayout(Fals e)
Me.pnlLeft.Resu meLayout(False)
Me.pnlLeftBotto m.ResumeLayout( False)
Me.ResumeLayout (False)

End Sub

#End Region
Dim CAM As New Process
Dim intCAMProcessID As Integer
Dim hndCAMWindowHan dle As IntPtr
Dim CAMStyle As New ProcessWindowSt yle
Dim blnCAMMasterSho wing As Boolean = False

Public Declare Auto Function SetWindowPos
Lib "user32.dll " ( _
ByVal hWnd As IntPtr, _
ByVal hWndInsertAfter As IntPtr, _
ByVal X As Int32, _
ByVal Y As Int32, _
ByVal cx As Int32, _
ByVal cy As Int32, _
ByVal uFlags As UInt32 _
) As Boolean

Public Declare Auto Function MoveWindow
Lib "user32.dll " ( _
ByVal hWnd As IntPtr, _
ByVal X As Int32, _
ByVal Y As Int32, _
ByVal nWidth As Int32, _
ByVal nHeight As Int32, _
ByVal bRepaint As Boolean _
) As Boolean

Private Sub frmAutoRun_Load (ByVal sender As Object,
ByVal e As System.EventArg s) Handles MyBase.Load
Me.btnShowHideC AMMaster.Enable d = False
End Sub

Private Sub btnCheckListDir ectory_MouseHov er(ByVal
sender As System.Object, ByVal e As System.EventArg s)
Handles btnStartCAMMast er.MouseHover
Me.btnStartCAMM aster.BackColor =
SystemColors.Co ntrolLightLight
End Sub

Private Sub btnCheckListDir ectory_MouseLea ve(ByVal
sender As System.Object, ByVal e As System.EventArg s)
Handles btnStartCAMMast er.MouseLeave
Me.btnStartCAMM aster.BackColor =
SystemColors.Co ntrol
End Sub

Private Sub btnStartCAMMast er_Click(ByVal sender As
System.Object, ByVal e As System.EventArg s) Handles
btnStartCAMMast er.Click
CAMStyle = ProcessWindowSt yle.Normal
'CAM = CAM.Start("C:\P rogram
Files\Pentalogi x\CAMMaster Beta\CAMMaster. exe")
CAM = CAM.Start("note pad.exe")
intCAMProcessID = CAM.Id
hndCAMWindowHan dle = CAM.Handle
Dim blnItWorked As Boolean = False
blnItWorked = MoveWindow(hndC AMWindowHandle, 100,
100, 300, 200, True)
Me.btnShowHideC AMMaster.Enable d = True
Me.btnShowHideC AMMaster.Text = "Hide CAMMaster"
blnCAMMasterSho wing = True

End Sub

Private Sub btnShowHideCAMM aster_Click(ByV al sender
As System.Object, ByVal e As System.EventArg s) Handles
btnShowHideCAMM aster.Click
If blnCAMMasterSho wing = True Then
Me.btnShowHideC AMMaster.Text = "Show
CAMMaster"
CAMStyle = ProcessWindowSt yle.Minimized
blnCAMMasterSho wing = False
Else
Me.btnShowHideC AMMaster.Text = "Hide
CAMMaster"
AppActivate(int CAMProcessID)
CAMStyle = ProcessWindowSt yle.Normal
blnCAMMasterSho wing = True
End If
End Sub

End Class

Nov 20 '05 #8
* <an*******@disc ussions.microso ft.com> scripsit:
Public Declare Auto Function MoveWindow
Lib "user32.dll " ( _
ByVal hWnd As IntPtr, _
ByVal X As Int32, _
ByVal Y As Int32, _
ByVal nWidth As Int32, _
ByVal nHeight As Int32, _
ByVal bRepaint As Boolean _
) As Boolean [...] Private Sub btnStartCAMMast er_Click(ByVal sender As
System.Object, ByVal e As System.EventArg s) Handles
btnStartCAMMast er.Click
CAMStyle = ProcessWindowSt yle.Normal
'CAM = CAM.Start("C:\P rogram
Files\Pentalogi x\CAMMaster Beta\CAMMaster. exe")
CAM = CAM.Start("note pad.exe")
intCAMProcessID = CAM.Id
hndCAMWindowHan dle = CAM.Handle


'CAM.Handle' will return a process handle, not a window handle. You may
want to use 'CAM.MainWindow Handle' instead. I didn't test it, so please
let us know if it works.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
Nov 20 '05 #9
Max
That worked !

Thank you very much !!!

-----Original Message-----
* <an*******@disc ussions.microso ft.com> scripsit:
Public Declare Auto Function MoveWindow
Lib "user32.dll " ( _
ByVal hWnd As IntPtr, _
ByVal X As Int32, _
ByVal Y As Int32, _
ByVal nWidth As Int32, _
ByVal nHeight As Int32, _
ByVal bRepaint As Boolean _
) As Boolean[...]
Private Sub btnStartCAMMast er_Click(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles
btnStartCAMMast er.Click
CAMStyle = ProcessWindowSt yle.Normal
'CAM = CAM.Start("C:\P rogram
Files\Pentalogi x\CAMMaster Beta\CAMMaster. exe")
CAM = CAM.Start("note pad.exe")
intCAMProcessID = CAM.Id
hndCAMWindowHan dle = CAM.Handle


'CAM.Handle' will return a process handle, not a window

handle. You maywant to use 'CAM.MainWindow Handle' instead. I didn't test it, so pleaselet us know if it works.

--
Herfried K. Wagner
MVP · VB Classic, VB.NET
<http://www.mvps.org/dotnet>
.

Nov 20 '05 #10

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

Similar topics

2
1451
by: DVan | last post by:
Is there a way to set the window size on a <form action="add.ASP" method="POST"> <input type="hidden" name="AComputer" value="<% =AC %>"> This open in a full window I have this other way without using the form <input type="submit" value="ARecord" name="Add" onClick="window.open('add.asp','add','width=500,height=300')"> This sizes it for me nice, but I can't pass the values I need.
1
1800
by: J.Storta | last post by:
Prior to using style sheets, I used tables to lay out my pages. I always used percentages when specifying widths so that the page would fit nicely in the browsers regardless of the size of the window. Now that I have started to use style sheets for layout purposes, I am faced with some odd results when I try to create pages that are resizable. I end up with boxes that jump down underneath other elements if the window is resized too...
2
2057
by: Ville Voipio | last post by:
I have a small problem; I would like to have a reasonable minimum size for a wx.Window. A simplified version of my code: s = wx.SplitterWindow(self, -1) curves = wx.Notebook(s) curve = wx.Window(curves, ID_BLANKCURVE, style=wx.SUNKEN_BORDER,
11
2920
by: N. Graves | last post by:
I have checked the "Alignment and Sizing" toolbar but when I want to use in on aligning several form object the toolbar buttons stay grayed out. What am I missing. Thanks! N. Graves
1
2359
by: Andrei Zinca | last post by:
When I resize my window, the sizing grip from the status bar doesn't dissapear. The funny thing is that if i create a graphics object and dispose it before the creation of the status bar everything works fine. Maybe someone can help me with this problem. Thanks! Here's my StatusBar initialization routine void InitStatusBar() {
3
1189
by: Neil Kiser | last post by:
I am trying to locate either a sample routine for or to at least acquire the knowledge of how to determine how large of a window to create to hold a text string. From my search so far, it would seem that this is a common request, but I have yet to come across an example solution. I have a situation in which I need to size a window accurately, or either I have to guess what the largest the window could ever be and set it to a flat...
1
2683
by: Steve | last post by:
I am trying to figure out how I can center and size a word application active window within my vb.net form when the word document is open using automation so that the word window doesn't extend beyond/overlap the form window (top, left, width or top). Thanks Steve
0
942
by: tshad | last post by:
I have 2 labels that hold the name of different images. <asp:Label ID="Logo" runat="server"/> <asp:Label ID="CompanyPicture" runat="server"/>&nbsp;&nbsp;&nbsp;&nbsp; I have 2 links that open the windows to preview these images. The previewed images are done on separate html pages that do nothing but display the image. function OpenLogoPreviewWindow()
0
9645
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
9480
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
10324
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
10147
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
10090
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,...
1
7499
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
6739
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();...
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2879
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.