|
Hello Dave
Thanks for your reply! I am actually on internship and my company asked me to write a vb.net program to synchronize to a central server. I am totally clueless about it...with nobody to really guide me... Basically there are 3 servers, 1 running on server 2003 and the other 2 on NT4. Correct me if I am wrong. I have to upgrade the other 2 stations to server 2003 before I can test my synchro program? Can I use msmq to synchronise the server? How do I send and receive messages using msmq? Pardon me if my questions sounds dumb. Thanks!
|
|
|
|
|
The base server doesn't really matter, so long as all three servers are running the same PXE Server software. If not, you'll have to make that happen. If the PXE server software requires 2003 to run, then yes, you'll have to upgrade those base servers to 2003. Get it?
After that, it's just a matter of managing an inventory of files on all three servers and copying the last updated version to the other two.
Can you use MSMQ? I wouldn't recommend it. Do you really need to add that level of compexity to get this job done?
RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
|
|
|
|
|
Need help on where to download a free full version Flex Cell 2.0 .net framework... pls help badly needed... links are highly appreciated......
:->
|
|
|
|
|
You asked this before. There answer is not going to change. And quit spamming a bunch of forums with the same question. It's very rude.
http://www.grid2000.com/[^] is the only place you're going to get this from and it's only the trial version that's free.
THERE IS NO FREE "FULL VERSION" AVAILABLE THAT IS LEGAL! If you want pirated versions of controls, you've come to the wrong place to ask where to get them.
RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
|
|
|
|
|
Well, out of the 18 posts you have on CP, 1/3rd of them have asked this very question. And you specifically asked for the "full version", for which there is no free legal download. If all you wanted was the free trial version, a simple Google search for "Flex Cell 2.0" would have given you the answer in under 10 seconds.
RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
|
|
|
|
|
Hello,
I am having a problems in regards with date formats... pls help me, on how to display the day of the week as .....
example: if the date is "2/15/2006, Wednesday" ...
the word "Wednesday" will be the only one displayed in vb2005.net windows form..... tnx and more power
|
|
|
|
|
Try this...
Date.Now.DayOfWeek.ToString()
|
|
|
|
|
You can use
Now.DayOfWeek.ToString
'OR
Now.ToString("dddd")
!alien!
|
|
|
|
|
hello everybody:
i am new to VB.net I have to design a custom web server control which validates itself on client side and server-side. which means that i would not use a seperate custom validator for validation, but it should be a part of the custom control itself.and this validation would be done on clientside first, and incase javascript is off in browser then validation is done on server side.
The description of the custom control is as follows:
its a date control which has 3 dropdowns(dds).one for month, second for days and third for days.it has two properties isDOB(boolean) and getDate which returns the date in the format mm/dd/yyyy.
one method setDate which takes the string inn the format mm/dd/yyyy.This will set date according to the input string.
can somebody point me to the rite direction.any help would be deeply appreciated.
Thanks
Cheers!
AB
|
|
|
|
|
Hi, Im a pretty experienced VBA programmer trying to make the leap to VB.NET. Im working on my first real vb.net project and Im getting a little stuck. I have 2 tables, a Contact table and a Call table. Each record in the Contact table has multiple corresponding records in the Call table. I would like my form to display a Contact record and all the corresponding Call records. The way I would do this in VBA is I would have a main form with the contact info and then make a continuous subform with all the Call records that I would insert onto the main form. Then I would just link the primary key fields. Unfortunately there do not appear to be subforms in vb.net
I tried using a GridView control, but I was hoping to have labels and text boxes; not have it look like a spreadsheet.
I hope this all make sense.
Thank you.
|
|
|
|
|
Hi, I was wondering if you have had any luck with your continuos form? I have been searching for any help with this for the past few months and nothing out there seems work the same way the access continuous forms work. If you have any idea how to create a continuous form in vb.net could you send me a message back? thanks
eatwork
|
|
|
|
|
I'm having the same problem with both VB.Net 2005 forms and the SQL Server 2005 Reporting services. With ASP.Net there is the possibility of a GridView with a formatted template column, but I have not found anything for VB.Net Winformd of the SQL Server Rpt Svc.. Why would MS take away such a useful interface design approach??
|
|
|
|
|
Hello,
Is there any way to make a console application to receive any argument?
Thank you
|
|
|
|
|
Uhhh... you mean like this?
Public Sub Main(ByVal args() As String)
' Add code here.
End Sub
|
|
|
|
|
does it work that way?
How do I use it?
huehehe... it's too simple huh?
Thank you
|
|
|
|
|
eagertolearn wrote: it's too simple huh?
This is beginner's stuff. I'm thinking you should get a good VB.NET book, because this is typically covered in the first or second chapter.
Here's a quick summary. You add a string array to your Main function as shown below. This array will be populated with command line arguments on startup. Meaning an array entry for every "space" separated argument.
' This code outputs every command line argument given to the app.
Public Sub Main(ByVal args() As String)
Dim argument As String
For Each argument In args
Console.WriteLine(argument)
Next
End Sub
-- modified at 15:10 Tuesday 14th February, 2006
|
|
|
|
|
Folkes,
how are you all ,i would like to ask how can i list all the available Databases in a selected sqlserver!
thank you
|
|
|
|
|
This question really belongs in the SQL / ADO / ADO.NET forum.
You can list all the databases on a SQL Server with the following query on a connection to the master database:
SELECT name FROM sysdatabases
ColinMackay.net
"Man who stand on hill with mouth open will wait long time for roast duck to drop in." -- Confucius
"If a man empties his purse into his head, no man can take it away from him, for an investment in knowledge pays the best interest." -- Joseph E. O'Donnell
|
|
|
|
|
We have several applications which generate e-mails automatically.
These are usually scheduled reports or event notifications.
Our company has decided to upgrade all e-mail to outlook 2003.
In my tests any software generated e-mail using Outlook 2003 needs a human intervention to confirm the email is a genuine e-mail and has not been generated by malicious software.
Is there any way to turn this confirmation feature off?
Regards
Sandie
swain@dalkia.co.uk
-- modified at 9:53 Tuesday 14th February, 2006
|
|
|
|
|
Instead of sending the email through outlook, send the email message directly to the smtp server.
|
|
|
|
|
Thanks KaptinKrunch,
At the moment I have no idea how to do that but it is something to work with.
Sandie
|
|
|
|
|
Take a look at the SMTP RFC
http://www.faqs.org/rfcs/rfc821.html"
Clip taken from the RFC
A Typical SMTP Transaction Scenario
This SMTP example shows mail sent by Smith at host USC-ISIF, to
Jones, Green, and Brown at host BBN-UNIX. Here we assume that
host USC-ISIF contacts host BBN-UNIX directly. The mail is
accepted for Jones and Brown. Green does not have a mailbox at
host BBN-UNIX.
-------------------------------------------------------------
R: 220 BBN-UNIX.ARPA Simple Mail Transfer Service Ready
S: HELO USC-ISIF.ARPA
R: 250 BBN-UNIX.ARPA
S: MAIL FROM:<Smith@USC-ISIF.ARPA>
R: 250 OK
S: RCPT TO:<Jones@BBN-UNIX.ARPA>
R: 250 OK
S: RCPT TO:<Green@BBN-UNIX.ARPA>
R: 550 No such user here
S: RCPT TO:<Brown@BBN-UNIX.ARPA>
R: 250 OK
S: DATA
R: 354 Start mail input; end with <CRLF>.<CRLF>
S: Blah blah blah...
S: ...etc. etc. etc.
S: .
R: 250 OK
S: QUIT
R: 221 BBN-UNIX.ARPA Service closing transmission channel
Scenario 1
-------------------------------------------------------------
|
|
|
|
|
In Outlook 2000, it's under the Tools menu, Macro, Security...
RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
|
|
|
|
|
If you really do need to have these emails sent through Outlook 9as opposed to KaptinKrunch's suggestion) then there is a way of bypassing the security but it involves quite a lot of work - using Extended MAPI (requires C++ or Delphi). There are also one or two utilities - one is called Outlook Redemption, I think.
Kevin
|
|
|
|
|
i am using cache to store the dataset like this
cache.insert("Key",dataset)
and i am using this cached data in button like this
dim ds as dataset
ds=cache("Key")
Here it is showing cache data as nothing
Can any body help me
narayana
|
|
|
|