473,395 Members | 1,488 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

word automation vb.net

I've been building an application that will merge fields in a text file with
a word template, save the resulting word file out to the user's hard drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at the
end of the process due to the file being locked by the email process. It
appears to take longer than the code takes to complete due to virus checking
software that intercepts the mail before releasing it (at least that's what
I've narrowed it down to).

I don't want to leave the file around after the code has completed. And I
don't think I want to hold up the completion of the code process until the
email gets sent in case the email process takes longer on some machines than
others.

I'm not sure if there is a better way to handle the attachment in the code
so I don't have to save a file to the user's desktop. Or if I can use a
deattach process that I can trigger from code to delete the file later. Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

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

WordDoc.SaveAs(sSaveFileName)
Do While Not WordDoc.Saved
Application.DoEvents()
Loop
WordDoc.Close(Word.WdSaveOptions.wdDoNotSaveChange s)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File.Delete(sSaveFileName)


Nov 27 '06 #1
12 3420
sorry bud it is as simple as Word Automation

but of course; Microsoft doesn't support vb6 anymore so you're shit out
of luck

I would build a time machine and go back to the 90s and never bother
with VB.NOT

-Susie, DBA

Steve wrote:
I've been building an application that will merge fields in a text file with
a word template, save the resulting word file out to the user's hard drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at the
end of the process due to the file being locked by the email process. It
appears to take longer than the code takes to complete due to virus checking
software that intercepts the mail before releasing it (at least that's what
I've narrowed it down to).

I don't want to leave the file around after the code has completed. And I
don't think I want to hold up the completion of the code process until the
email gets sent in case the email process takes longer on some machines than
others.

I'm not sure if there is a better way to handle the attachment in the code
so I don't have to save a file to the user's desktop. Or if I can use a
deattach process that I can trigger from code to delete the file later. Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

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

WordDoc.SaveAs(sSaveFileName)
Do While Not WordDoc.Saved
Application.DoEvents()
Loop
WordDoc.Close(Word.WdSaveOptions.wdDoNotSaveChange s)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File.Delete(sSaveFileName)
Nov 27 '06 #2
BK
Disregard "Susie", he/she/it suffers from split personalities and none
of them are real programmers....

I think you want to look at the SmtpClient.SendCompleted documentation,
that's what you are missing.

Nov 27 '06 #3
You need a WordDoc.Quit after your WordDoc.Close.
_________________________________
The Grim Reaper

"Steve" <s.*****@comcast.netwrote in message
news:eO**************@TK2MSFTNGP03.phx.gbl...
I've been building an application that will merge fields in a text file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at the
end of the process due to the file being locked by the email process. It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed. And I
don't think I want to hold up the completion of the code process until the
email gets sent in case the email process takes longer on some machines
than
others.

I'm not sure if there is a better way to handle the attachment in the code
so I don't have to save a file to the user's desktop. Or if I can use a
deattach process that I can trigger from code to delete the file later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

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

WordDoc.SaveAs(sSaveFileName)
Do While Not WordDoc.Saved
Application.DoEvents()
Loop
WordDoc.Close(Word.WdSaveOptions.wdDoNotSaveChange s)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File.Delete(sSaveFileName)


Nov 27 '06 #4
But this will close the word application which the user running the program
will want to keep open for printing the active document. I am trying to
blindly send an email (legit) during the process.

Steve

"The Grim Reaper" <gr*********@REMOVEbtopenworld.comwrote in message
news:-N********************@bt.com...
You need a WordDoc.Quit after your WordDoc.Close.
_________________________________
The Grim Reaper

"Steve" <s.*****@comcast.netwrote in message
news:eO**************@TK2MSFTNGP03.phx.gbl...
I've been building an application that will merge fields in a text file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at
the
end of the process due to the file being locked by the email process.
It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed. And
I
don't think I want to hold up the completion of the code process until
the
email gets sent in case the email process takes longer on some machines
than
others.

I'm not sure if there is a better way to handle the attachment in the
code
so I don't have to save a file to the user's desktop. Or if I can use a
deattach process that I can trigger from code to delete the file later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

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

WordDoc.SaveAs(sSaveFileName)
Do While Not WordDoc.Saved
Application.DoEvents()
Loop
WordDoc.Close(Word.WdSaveOptions.wdDoNotSaveChange s)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File.Delete(sSaveFileName)




Nov 27 '06 #5
Could you save a separate copy as a temp file and send that
in the e-mail and then delete it?

Robin S.
--------------------------
"Steve" <s.*****@comcast.netwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
But this will close the word application which the user running the
program
will want to keep open for printing the active document. I am trying to
blindly send an email (legit) during the process.

Steve

"The Grim Reaper" <gr*********@REMOVEbtopenworld.comwrote in message
news:-N********************@bt.com...
>You need a WordDoc.Quit after your WordDoc.Close.
_________________________________
The Grim Reaper

"Steve" <s.*****@comcast.netwrote in message
news:eO**************@TK2MSFTNGP03.phx.gbl...
I've been building an application that will merge fields in a text file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved at
the
end of the process due to the file being locked by the email process.
It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed.
And
I
don't think I want to hold up the completion of the code process until
the
email gets sent in case the email process takes longer on some machines
than
others.

I'm not sure if there is a better way to handle the attachment in the
code
so I don't have to save a file to the user's desktop. Or if I can use
a
deattach process that I can trigger from code to delete the file later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

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

WordDoc.SaveAs(sSaveFileName)
Do While Not WordDoc.Saved
Application.DoEvents()
Loop
WordDoc.Close(Word.WdSaveOptions.wdDoNotSaveChange s)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File.Delete(sSaveFileName)




Nov 27 '06 #6
Actually, I discovered it's locked by vshost.exe - which appears to only be
shut down when the host application is shut down. I guess VB2005 uses
vshost.exe for performance improvement/debugging.

Anyway, not sure what to do for now. Note: I'm developing the application
as I type this.

Any ideas from anyone?

Robin:

How would I create a temp copy of the file?

Steve

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:Wb******************************@comcast.com. ..
Could you save a separate copy as a temp file and send that
in the e-mail and then delete it?

Robin S.
--------------------------
"Steve" <s.*****@comcast.netwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
But this will close the word application which the user running the
program
will want to keep open for printing the active document. I am trying to
blindly send an email (legit) during the process.

Steve

"The Grim Reaper" <gr*********@REMOVEbtopenworld.comwrote in message
news:-N********************@bt.com...
You need a WordDoc.Quit after your WordDoc.Close.
_________________________________
The Grim Reaper

"Steve" <s.*****@comcast.netwrote in message
news:eO**************@TK2MSFTNGP03.phx.gbl...
I've been building an application that will merge fields in a text
file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved
at
the
end of the process due to the file being locked by the email process.
It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least
that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed.
And
I
don't think I want to hold up the completion of the code process
until
the
email gets sent in case the email process takes longer on some
machines
than
others.

I'm not sure if there is a better way to handle the attachment in the
code
so I don't have to save a file to the user's desktop. Or if I can
use
a
deattach process that I can trigger from code to delete the file
later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

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

WordDoc.SaveAs(sSaveFileName)
Do While Not WordDoc.Saved
Application.DoEvents()
Loop
WordDoc.Close(Word.WdSaveOptions.wdDoNotSaveChange s)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File.Delete(sSaveFileName)





Nov 28 '06 #7
The only reason I'd create a second (temp) copy is
because you said you want to leave Word open for the
user to print the information in the Word document.
But if Word is open, the file is still locked.

The problem is, if you leave it open, and don't
save it (so it's nowhere), you can't e-mail it.
And if you save it, you can't delete it because
you want to leave it open for your user. And
when he gets around to closing Word, your application
has already released control of it, and you can't go
back and delete it.

I used to create CSV files and then open them
in Excel using OLE Automation. The user could then
save the file as an Excel file to wherever he
wanted to.

My program let go of the file as soon as it
showed it to the user in Excel. But I still had
the pesky CSV files, and couldn't delete them
if the user still had them open.

So this is what I did: I created the files in my
application directory and named them with a specific
pattern, like Temp_yymmddhhmmss.csv.

Then every time they started up the application,
it would delete any files it found in the application
folder with the pattern Temp_*.csv.

Okay, it's tacky, but it worked, and I'm open to
other suggestions. Since they ran the app all the
time, it was always "self-cleaning". The other nice
thing about it was if they didn't save the Excel
file, they could go open the CSV before they
started up the app again and get their data.

So you could save the Word document in the same fashion
to somewhere (the windows temp folder? the application
folder?) and e-mail it and leave it open. And when
your app starts up, go delete any that you find. Be
sure to catch the exception of the file being locked,
in case they still have it open. If you put it
in the windows temp folder, I'd name it something
really specific, like MyAppName_Temp_yymmddhhmmss.doc,
so you don't accidentally delete something else
when you go back to delete them.

You can access the name of the Windows temp folder
using this (VB2005):

Dim tempFolder as String = New Path.GetTempPath

You could get a temporary file name like this, too,
but then you couldn't delete them yourself (also VB2005):

Dim tempFileName as String = New Path.GetTempFileName

If they don't run your app more than once, I don't
know that I would do this. The temp files don't get
deleted automatically. If you *do* do this, and save
them to the Windows temp folder, and they hardly ever
run your app, I'd save them with GetTempFileName name.

By the way, when you double-click on an attachment
in Outlook and open it, it saves it to the Windows
temp folder and then opens it. It must have some
kind of clean-up, or maybe not.

I hope that helps. Other ideas are welcome!

Robin S.
-------------------------------------

"Steve" <s.*****@comcast.netwrote in message
news:eL**************@TK2MSFTNGP04.phx.gbl...
Actually, I discovered it's locked by vshost.exe - which appears to only
be
shut down when the host application is shut down. I guess VB2005 uses
vshost.exe for performance improvement/debugging.

Anyway, not sure what to do for now. Note: I'm developing the application
as I type this.

Any ideas from anyone?

Robin:

How would I create a temp copy of the file?

Steve

"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:Wb******************************@comcast.com. ..
>Could you save a separate copy as a temp file and send that
in the e-mail and then delete it?

Robin S.
--------------------------
"Steve" <s.*****@comcast.netwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
But this will close the word application which the user running the
program
will want to keep open for printing the active document. I am trying
to
blindly send an email (legit) during the process.

Steve

"The Grim Reaper" <gr*********@REMOVEbtopenworld.comwrote in message
news:-N********************@bt.com...
You need a WordDoc.Quit after your WordDoc.Close.
_________________________________
The Grim Reaper

"Steve" <s.*****@comcast.netwrote in message
news:eO**************@TK2MSFTNGP03.phx.gbl...
I've been building an application that will merge fields in a text
file
with
a word template, save the resulting word file out to the user's hard
drive,
and then email the file as an attachment.

The problem I'm having is that I can't delete the word file I saved
at
the
end of the process due to the file being locked by the email
process.
It
appears to take longer than the code takes to complete due to virus
checking
software that intercepts the mail before releasing it (at least
that's
what
I've narrowed it down to).

I don't want to leave the file around after the code has completed.
And
I
don't think I want to hold up the completion of the code process
until
the
email gets sent in case the email process takes longer on some
machines
than
others.

I'm not sure if there is a better way to handle the attachment in
the
code
so I don't have to save a file to the user's desktop. Or if I can
use
a
deattach process that I can trigger from code to delete the file
later.
Or
something else.

I've attached a snippet of the code below:

Thanks
Steve

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

WordDoc.SaveAs(sSaveFileName)
Do While Not WordDoc.Saved
Application.DoEvents()
Loop
WordDoc.Close(Word.WdSaveOptions.wdDoNotSaveChange s)

' Email the Saved Merge Document.

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail)

' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing

' Delete the temporary files.

System.IO.File.Delete(sSaveFileName)






Nov 28 '06 #8
So this is what I did: I created the files in my
application directory and named them with a specific
pattern, like Temp_yymmddhhmmss.csv.

Then every time they started up the application,
it would delete any files it found in the application
folder with the pattern Temp_*.csv.
I do this with temporary files. Typically I generate a hundred or so during
an average running session, which are all in a user data directory. This
directory is cleaned during program startup.

Nov 28 '06 #9
Steve wrote:
' Release the references.

WordMailMerge = Nothing
WordDoc = Nothing
WordApp = Nothing
Setting the objects to Nothing does not release them. For COM objects
you need to call Marshal.ReleaseComObject.

Nov 28 '06 #10
Thanks -- that makes me feel better. I just couldn't think
of another way. I was afraid I was going to get a lot of
negative feedback for the method I chose!

Robin S.
-------------------------------
"Robinson" <bb*@bbb.comwrote in message
news:lq******************************@giganews.com ...
>
>So this is what I did: I created the files in my
application directory and named them with a specific
pattern, like Temp_yymmddhhmmss.csv.

Then every time they started up the application,
it would delete any files it found in the application
folder with the pattern Temp_*.csv.

I do this with temporary files. Typically I generate a hundred or so
during an average running session, which are all in a user data directory.
This directory is cleaned during program startup.

Nov 28 '06 #11
I figured out a solution to my problem. After client.send, I issue a
mymail.dispose. It releases the hold on the file which allows me to delete
it.

Steve

-----

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail
myMail.Dispose()


"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:Nd******************************@comcast.com. ..
Thanks -- that makes me feel better. I just couldn't think
of another way. I was afraid I was going to get a lot of
negative feedback for the method I chose!

Robin S.
-------------------------------
"Robinson" <bb*@bbb.comwrote in message
news:lq******************************@giganews.com ...
So this is what I did: I created the files in my
application directory and named them with a specific
pattern, like Temp_yymmddhhmmss.csv.

Then every time they started up the application,
it would delete any files it found in the application
folder with the pattern Temp_*.csv.
I do this with temporary files. Typically I generate a hundred or so
during an average running session, which are all in a user data
directory.
This directory is cleaned during program startup.



Nov 29 '06 #12
Woohoo! Thanks for letting us know.
Congrats.
Robin S.
--------------------------------------
"Steve" <s.*****@comcast.netwrote in message
news:ua**************@TK2MSFTNGP03.phx.gbl...
>I figured out a solution to my problem. After client.send, I issue a
mymail.dispose. It releases the hold on the file which allows me to
delete
it.

Steve

-----

Dim Fromaddress As New MailAddress("fromaddress")
Dim Toaddress As New MailAddress("toaddress")
Dim myMail As New MailMessage(Fromaddress, ToAddress)
myMail.Subject = "test"
Dim AttachmentFile As Attachment = New Attachment(sSaveFileName)
myMail.Attachments.Add(AttachmentFile)
myMail.Priority = MailPriority.High
Dim client As New SmtpClient
client.Host = "hostaddress"
client.Send(myMail
myMail.Dispose()


"RobinS" <Ro****@NoSpam.yah.nonewrote in message
news:Nd******************************@comcast.com. ..
>Thanks -- that makes me feel better. I just couldn't think
of another way. I was afraid I was going to get a lot of
negative feedback for the method I chose!

Robin S.
-------------------------------
"Robinson" <bb*@bbb.comwrote in message
news:lq******************************@giganews.co m...
>
So this is what I did: I created the files in my
application directory and named them with a specific
pattern, like Temp_yymmddhhmmss.csv.

Then every time they started up the application,
it would delete any files it found in the application
folder with the pattern Temp_*.csv.

I do this with temporary files. Typically I generate a hundred or so
during an average running session, which are all in a user data
directory.
This directory is cleaned during program startup.



Nov 30 '06 #13

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

Similar topics

1
by: mickeydisn | last post by:
Sub: C++ Word automation Extract text hello. I want extact text form a word document using a visual c++ programme. I have see a lot of documentation. and my analysis is that I must use a...
12
by: Cheval | last post by:
Has anyone had any problems with inter-office automation between MS Word and MS Access in Office 2003? I have recently installed office 2003 in a new folder and have left the older office 2000...
6
by: Colleyville Alan | last post by:
I have an application that has an Access table that stores the locations of slides in a Powerpoint file. This used to work fine when there were about 4 files and 200 slides. The database would...
2
by: kids | last post by:
Does anybody know any reason which could cause Ms. word automation to crash? I try to call word automation to open a document and use find and replace function. For some reason it works but I...
4
by: Daniel | last post by:
Hello, i have a problem with the word automation from c#. First, i want to mention, that i don't have any dependencies from word in my c#-project, i want to use the system.reflection model to...
0
by: mharris | last post by:
I need help with merging two Word documents into one through C# code. The problem isn't so much getting the documents put into one as it is maintaining the appropriate formatting, or rather...
2
by: Radek | last post by:
Hi, I have got such problem: in my directory "C:\folder" I have 3 files in MS WORD (having tables, images etc), these are: "1.doc", "2.doc", "3.doc". I want to write an application (C# of...
4
by: Yohancef Chin | last post by:
Hi, Being fairly new to .NET I am looking for a way to call MS Word from an event on a webform, and after the user is finished save that created document to an SQL Server database. Has anyone...
5
by: Daniel Walzenbach | last post by:
Hi, I need to know how I could populate a word file from within ASP.NET and stream it out to some user (I can rely on all users have at least Word XP installed). The preferable solution would be...
10
by: cj2 | last post by:
I open a word template in VB and add values to the bookmarks then save the document as as pdf. When I then go to close the document it pops up a save as dialog box. It's already saved the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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...
0
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...

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.