Connect Two Computers Similar?

Dec 27, 2007

What is a good way to do networking? I tried this example, but it did not work. [URL]

how to connect two computers similar to how you would with Winsock. Also, I would like to be able to send an image, but I can figure that out later.

View 35 Replies


ADVERTISEMENT

.NET Simple .exe Will Run On Some Computers But Not Others (should All Be Same/similar Build)?

Sep 22, 2009

I created a simple desktop app (really simple) and did a network clickonce deployment. It works fine on most computers.BUT nothing on one computer (computer A). No message, no start menu, nothing. App has no dependencies other than .NET framework. If I just copy the exe onto the same computers, it works fine on all computers except computer A.Computer A has the correct framework installed. When I double click the exe it does nothing - no message, no error, not showing up in task manager, notta. I tried more than one application and it performs the same.

View 4 Replies

LAN To LAN Connection - Connect All The Computers In A Server

Jan 29, 2011

How can i connect all the computers in a server using vb.net 2005 or latest version of vb.net.?

Scenario: 10 computers in a computer room. connecting it to a server.

View 1 Replies

Remote Desktop - Modify That Program To Allow Me To Connect To Computers Not On My Network?

Jun 12, 2011

I have created a program that allows me to remotely access computers on my network (not all done by me i found some code online) however i want to modify that program to allow me to connect to computers not on my network. How can i go about doing this? My program consists of a client and a server. When the server runs it listens for the client on the client side i enter the IP address and it connects so i can send remote commands to the remote system.

View 4 Replies

VS 2010 Winsock - Can't Connect To Any Online Computers (using Port 7771)

Mar 18, 2012

I am facing a situation with winsock. My application successfully connects to any computer that is connected on my router but i can't connect to any online computers (using port 7771). It simply doesn't connect without any kind errors. Any ideas? I am using port 7771 as local and remote port.

View 9 Replies

Detect Connected Computers In A LAN Using Visual Basic And Connect It Using A Client Application?

Mar 10, 2009

I would like to ask how to connect our application to connected computers in a LAN.Will I use the winsock control?How can I run queries using a server database?Any answers are welcome.

View 3 Replies

Know If An Array Of Lists Contains Similar Items (similar Lists)?

May 20, 2010

I know how to check whether an item exists in a list using (MyList.Contains), But I do not know how to check the whole list. For example (use one button and one richtextbox):

[Code]...

View 14 Replies

Application Can't Connect To Local MySQL But Can Connect From Command

Sep 30, 2011

We have a VB.Net application which works fine in our tests in different Windows XP SP3 machines. However there is one machine in which is displaying this error:

Unable to connect to any of the specified MySQL hosts

Using the mysql command, we can successfully connect to the database. We already checked for any other application or firewall that could be blocking the connection but it seems fine. We also reinstalled the system (no errors during the installation) but the MySQL error message doesn't change.

The system settings are exactly the same as in the other computers. We are using "localhost" as server in the connection string. The "hosts" file has its default values (nothing strange in there).

View 1 Replies

Cannot Connect To Microsoft Life Cam (but Can Connect To Built In Webcam)

Jan 16, 2012

I'm working on an application where I'm using an webcam image. I have code that works when using the built in iSight (It's an Apple running boot camp windows 7) camera. However after installing a second USB powered Microsoft Life Cam I am unable to connect to this second camera. When runnign this code I only ever get one input device:

Private Sub LoadDeviceList()
Dim strName As String = Space(100)
Dim strVer As String = Space(100)

[Code].....

View 3 Replies

Can't Connect To MySQL - Unable To Connect To Any Of The Specified Hosts

May 29, 2012

I am trying to connect to my remote MySql Database within Visual Studio using the compact framework.

I can successfully add a data source and preview the data within the IDE so assume that the connection is ok regarding Connection strings and remote access.

However, when I attempt to access the data using any run time control I get the following error when the table is loaded using the .fill method.

MySql.Data.MySqlClient.MySqlException was unhandled
ErrorCode=-2147467259
Message="Unable to connect to any of the specified MySQL hosts."

[Code]....

View 9 Replies

Why Are C# And .NET So Similar?

Oct 15, 2010

Also, if they are so similar then why do they exist separately?

View 3 Replies

API / Something To Use Similar To PrintScreen?

Jun 7, 2009

Is there an API or something I can use similar to PrintScreen?

I want to be able to select everything inside of a panel and then print it.

View 6 Replies

BGW With Similar Coding But Different Approach?

May 18, 2012

I've two BGW with similar coding but different approach, My second BGW shows me "NOT RESPONDING" whenever i try move/click/focus to form while the BGW is running.

VB
RichTextBox2.AppendText("Some Text")
process2.ReportProgress(inc)
My.Computer.Network.DownloadFile(andpic, "pics/" & spliti(0) & nnum & ".png")
My.Computer.Network.UploadFile("pics/" & spliti(0) & nnum & ".png", "ftp://ftp.mywebsite.com/domains/mywebsite/public_html/Pics/" & spliti(0) & nnum & ".png", "users", "password")
WebBrowser1.Navigate("Mywebsite")

I've taken out number of things that i think is causing this error Are they the cause of "NOT RESPONDING" ?

View 4 Replies

Checking For Similar Duplicates?

Sep 4, 2009

I have a web site where users enter company names to use in the rest of the app. However, recently I've noticed that similar duplicates are appearing, e.g. someone will enter EastTec Solicitors another will enter EastTec Solicitors Ltd someone else will enter EastTec Solictors (missed the i out in Solicitors), when there should only be one entry of EastTec Solicitors. What is the best way of checking the database for entries similar to what they have entered? How would you about checking for spelling mistakes as well like the Solicitors one?

View 7 Replies

Creating Something Similar To Spy++ Tool

Mar 9, 2010

What I need to do is be able to enumerate pretty much all hWnds and locate any TextBox (outside of my program) and get information about it (eg: Name if any, text in it, etc).

[Code]...

View 1 Replies

Developing A Program That Is Similar To ATM?

Feb 22, 2011

I'm developing a program that is similar to ATM but I can not keep track of various clients so that each may have their account

View 7 Replies

Getting Similar Program Like SerialCommChat For Uses?

May 9, 2011

I've been using the 2006 SerialCommChat program to do my programming functions.This only has CommPort availability and I'm needing both Commport and what I guess they call a Virtual Port known as the USB Ports.

View 5 Replies

How To Create A Similar Structure

May 28, 2010

I'm trying to create an enumerable class, similar to System.Drawing.Color - My goal is to have places in the code where I can define a variable as the type of my structure, then be presented a list of static values to pick from.I'd also like to use this for a property of a UserControl.I don't know if I'm using the right setup here with the class, structure, etc.I'm just trying to mimic the Drawing.Color class.I'm creating a Public Class called Person.Inside it, I have two Public ReadOnly Properties for Name and Age, their corresponding Members, and a Constructor to create a new Person.Second, I have a Structure called Persons and it has two ReadOnly Properties: Billy and Sally.[code]In my attempt, I get the full freaking .net class library in my intellisense list. Using Drawing.Color, I get a nice pre-defined list of values to pick from.No extra methods.No constructors.Just values.

View 16 Replies

How To Treat Two Similar Types As One

Feb 28, 2009

In VB.NET, I am trying to talk to a webservice (that can't be changed) to create and update customer data.The CreateCustomer service expects an object of type ConsumerPerson and the ChangeCustomer service expects an object of type ChangeData.The properties of these two object are exactly the same, so I thought it would be wise to just set the properties using one single function.

View 5 Replies

Mid Function In Java - Similar To VB?

Feb 2, 2012

In Visual Basic I used to use the Mid function to loop through a string and examine each character, i.e. like this:

[Code]...

Question is, how would I go about doing something similar using Java?

View 3 Replies

Needs Similar Coding For Treeview?

Dec 26, 2008

I want similar coding for treeview, where for linklabel is as follows.

Private Sub LinkLabel8_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel8.LinkClicked
WebBrowser1.Navigate(Application.StartupPath & "\source\test.html\")

[code].....

View 6 Replies

Program Similar To Spy++ For .NET Applications?

Feb 29, 2012

I've looked around and I haven't found anything that fits my needs.I wish for the program to be able to intercept the Win32 (?) messages that are being sent to my own application, which is written in Visual Basic.As a side note, is "intercept the Win32 messages" the correct phrasing?Either way, an elaboration won't hurt; I wish for the spy tool to intercept the same messages that I would programmatically intercept with WndProc, i.e: the SendMessages and PostMessages.

I wish to make it clear that I am not seeking a program that intercepts the .NET framework events.

Edits:I can see my window and the handles of its child controls, but I do not receive any messages.I am using Windows 7 64 bit.My Spy++ version is 8.00.50727 Semi-solved; I have got a Spy++ alternative ([Window Detective][1]) to work on my virtual machine, which I am most certainly happy with, and would definitely not mind settling for. Although I am still wondering why all the "spy-like" programs I found did not work on my "main" PC... but I guess I needn't care.

View 1 Replies

Search For Similar Images?

Nov 9, 2011

Like my computer have 3 image, and this is the location of these 3 image:

C:/A.jpg
C:/B.jpg
D:/C.jpg

And this is the 3 image preview: now if we use eye common sense, we will saw that A.jpg is similar with C.jpg (just think that C.jpg is not animated) But now if i use VB.net to find the for the similar image, how can this be? (just like the searching function on computer but this is searching for similar images, and also what google images does (google image have a function that search for similar images))

View 12 Replies

Similar Classes With Different Signatures?

Aug 18, 2009

I have two classes:

Public Class Subscribing
Private _subscribingObjects As IList(Of String)
Public Sub Add(ByVal obj As SubscribeObject)[code].....

Is there a more elegant way to add do this? One class would suffice, but since the Add methods have different arguments, then one really wouldn't work.

View 4 Replies

Similar Pronouncing Words?

Jul 17, 2009

Suppose there exists 'Hello' in the DB, i dont want the user to 'Halo' or 'Helo' or any other same pronouncing word?

View 4 Replies

Similar To The Ternary Operator In .net?

Mar 29, 2011

I saw this in some vb.net source code:Dim sTest As String = "" & drTest("column")

I was told that if drTest("column") is nothing, then sTest will be assigned "", so it is in effect doing:

Dim sTest As String = If("",Nothing,drTest("column"))What is the downside of doing it the first way I showed?

What is the difference between using If and IIf?

View 2 Replies

Sql - Getting Max(Date) Out Of Similar Dates

Dec 22, 2010

I have a table which has the following Columns

TransDate(varchar20) , Name(varchar20), Address(varchar20), Amount(int), Balance(int)

Now i need to get "Recent Balance" which i am getting using the following Query Select Balance from myTable where TransDate = (Select Max(TransDate) from myTable) This query is giving me proper result if there is only one entry per day like below

10/12/2010 SomeName SomeAddress 1000 1000
10/13/2010 SomeName SomeAddress 1000 2000
10/14/2010 SomeName SomeAddress 1000 3000

But what if i have more than 1 entries per day as shown below?

10/12/2010 SomeName SomeAddress 1000 1000
10/12/2010 SomeName SomeAddress 1000 2000
10/12/2010 SomeName SomeAddress 1000 3000

How to get the "most recent balance" using the above date format?

View 4 Replies

Sql - Getting Max(Date) Out Of Similar Dates?

Jun 2, 2011

I have a table which has the following ColumnsTransDate(varchar20) , Name(varchar20), Address(varchar20), Amount(int), Balance(int)Now i need to get "Recent Balance" which i am getting using the following QuerySelect Balance from myTable where TransDate = (Select Max(TransDate) from myTable)This query is giving me proper result if there is only one entry per day like below

View 7 Replies

.net - Injecting Into Games (Similar To XFire)?

Apr 19, 2011

How does xFire place itself inside of games?

View 1 Replies

.net - Sites Which A Similar Program Or Web-exam?

May 5, 2009

Are there any sites which a similar program or web-exam? The best example I can give is Auto-it's "Auto-it 1,2,3" found here.This is for an absolute-beginner,

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved