IRC Clients And MDI / Microsoft Moving Away From MDI?

Apr 30, 2012

i was just wondering what other options we have. MDI seems to be main feature most clients have.Would you use one if building an irc client? I started off with out one. Half way threw decided to start using one.

View 2 Replies


ADVERTISEMENT

Moving From Microsoft Access 2007 To Sql Server 2005

Aug 5, 2009

I have MS Access 2007 Databases and VBA modules associated with it.I Now want to upgrade my project so as to use Sql Server 2005 and Vb.net using visual studio.net.Can any one suggest Complete details on the transfer without much hassle or data loss.?

View 3 Replies

Free EBook "Moving To Microsoft Visual Studio 2010"?

Sep 19, 2010

Free eBook "Moving to Microsoft Visual Studio 2010"? [URL]...

View 6 Replies

Making Moving Percentages Into A Moving Graph?

Oct 5, 2008

I have this:

Private m_PerformanceCounter As New _
System.Diagnostics.PerformanceCounter( _
"Processor", "% Processor Time", "_Total")

[code]......

View 4 Replies

ERROR[HY000][Microsoft][ODBC Microsoft Access Driver]Could Not Find File '(unknown)'.

Oct 8, 2011

I'm currently doing a project that includes access 2010 My question will be what driver can I use for an access 2010 *.accdb type file? For a *.mdb it works perfectly well with

ConnString ="Driver={Microsoft Access Driver (*.mdb)};Dbq=" & Application.StartupPath & "\CITSDB.mdb;Uid=Admin;Pwd=123;"

But, when I changed the mbd to accdb:

ConnString ="Driver={Microsoft Access Driver (*.accdb)};Dbq=" & Application.StartupPath & "\CITSDB.accdb;Uid=Admin;Pwd=123;"

It resulted in errors:

ERROR[HY000][Microsoft][ODBC Microsoft Access Driver]Could not find file '(unknown)'.
ERROR[IM006][Microsoft][ODBC Driver Manager]SQLSetConnetAttr failed
ERROR[HY000][Microsoft][ODBC Microsoft Access Driver]Could not find file '(unknown)'

And then it shows me that my code for

If dsLogin.Tables(0).Rows.Count = 1 Then
IndexOutOfRangeException was unhandled
Cannot find table 0

I knew it must be the driver but I don't know what accdb driver I can use for the connstring.

View 3 Replies

Filling Array From Microsoft SQL Server Compact 3.5 Table In Microsoft

Aug 7, 2009

I have a database with one table.I'd like to populate an array with the values in the table so that I can work with the data.How do I copy the data from the table to the array?I am able to view the data with a DataGridView but can't find any info on extracting the data to an array or variable.

View 2 Replies

.net - ERROR [22018] [Microsoft][ODBC Microsoft Access Driver] Data Type Mismatch In Criteria Expression

Dec 7, 2011

I have an error ERROR [22018] [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression. and I've been trying to solve this but unfortunately I couldn't get the hack of this error. I'm a newbie in dotNet.

Public Sub LogInContinue(ByVal senter As Object, ByVal e As EventArgs)
Dim LibDS As DataSet = New DataSet
Dim LibDA As OdbcDataAdapter = New OdbcDataAdapter("SELECT * FROM tblUserAccount WHERE Uname='" & txtUserName.Text & "'", LibConn)

[code]......

View 2 Replies

Fetching Data From A Microsoft SQL Server Compact 3.5 Table Into A Microsoft Visual Basic 2008 Express Edition Application?

Aug 7, 2009

I am building a VB 2008 Express Edition application.I have built a database (with a single table) using SQL Server Compact 3.5 and have connected it to the project. I am able to view and edit the data using a DataGridView on a second form (tutorial made this very easy). I need to work with the data in the table within the application. how to easily load the entire table into an array or even read the table a row or cell at a time so that I can make all of the data available for manipulation within the application (the tutorials only seem to show how to display the data).

View 7 Replies

Connect Microsoft VB Data To Microsoft SQL Server 2008 R2?

May 8, 2011

I am developing a database system using Microsoft Visual Basic 2010 and Microsoft SQL Server 2008 R2. Honestly i don't have any knowledge on how to connect the data in VB to Microsoft SQL Server 2008 R2, so kindly anyone could support me with tutorial videos or ebook or any reference

View 4 Replies

How To Connecting Clients To Sql Server

Jul 26, 2010

I created application database by vb.net and sql server 2005 now I have some computer on the one of them I installed sqlserver 2005 and other (Clients) computers I installed Application how I can connecting my application to sql server on the pc1 or how I can using connection string.

View 2 Replies

Import XML Too Many Clients At The Same Time?

May 17, 2010

XML is used as one of our main integration points. it comes over by many clients at a time but too many clients importing at the same time can slow down our database to a crawl. Someone has to have solved a problem like this. I am basically using VB to parse through the data and import what i want and don't want.

View 2 Replies

Make Clients On Sql Server?

Jun 9, 2011

How to make clients on sql server i mean when i will install my application on clients how i will connect it with sql server?

View 3 Replies

Pass Messages To Clients?

Feb 4, 2011

I'm developing an application, which will have a common db in a server (SQLServer db) and the client PCs will have my program installed - in a LAN.

So, my question is, when the users in the client PC wants to pass some messages (for eg: one of the user got a message from his boss that all of them are requested to meet him). That is, I want to implement a communication system through my app. It will be a common message system. That is, just like a shoutbox.

So, do I have to use a TCP based communication system or just use a timer to check the db for any new messages and display them ?

View 2 Replies

Retrieve The Clients IP Address?

Jul 1, 2011

How can I retrieve the clients IP address that in use of my application? Is there's a code that retrieves a value from clients computer running application?

View 4 Replies

Server With Multiple Clients?

Mar 8, 2011

i want to designe a simple program that have one server and multiple clients.i program with vb.net,but dont know anything about winsock, can you send me a sample code for start.

View 1 Replies

Threading Clients Using A Tcp Listener?

Dec 2, 2009

(Using vb 2008 express.)

I am trying to create a server to send clients text on request. I am using a tcp listener to accept clients then send each client to a thread in a threadpool which deals with each client's request then closes the client connection. It seems to work fine but I would like to know how it works. Using the listen loop below I cant help feeling I should be sending some values to the threaded sub. How does it know which client each thread is dealing with?

Sub ListenLoop()
Looop:
Client = Server.AcceptTcpClient

[Code].....

View 1 Replies

Using Mail To (works On Some Clients, Does Not On Others)

Aug 27, 2010

with XP and Outlook it works perfect, with Vista it does not.

Any chance to get it running on all clients? The source is very simple.

Trying to send some Input data using mailto.

Always works, but on some clients everything is in the subjet and not in the body! Other clients seem to be ok.[code....]

View 3 Replies

VS 2008 Instances With Tcp Clients

Oct 4, 2009

I am programming a chat like application using Tcp. Now I have a probem. I am going to have loads and loads of data being transferred so I will have to use 4 seperate ports.[code...]

My problem is for me to use a maximum of 4 ports all together transferring data from the client(s) to the server(s) I will need 4 clients and 4 servers. I need to open 4 instances of 4 clients. I was going to put a client in a form and then when the client is running it creates 4 instances of that form but than there would be too much confusion going on. I think there my be a way to use Classes instead of forms.

[code...]

View 6 Replies

VS 2010 TCP/IP Clients In ListBox

Oct 7, 2011

I am trying to make a host so that as clients connect they will appear in a list box. I can get multiple connections going, but the list box remains empty.

[code]...

View 7 Replies

Asp.net - Disable GZIP Compression For IE6 Clients?

May 5, 2009

We need to conditionally disable GZIP compression if user's browser is IE6 (it hangs browser for 5min) in few pages of larger site. Server is IIS7 and has compression for static content turned on - want that compression left working if user agent is not Mozilla/4.0. ASPX code sample anyone? Alternatively, code to conditionally redirect to the same page on another site (could create another virtual site with compression disabled) but need to pass all parameters (GET/POST).

View 1 Replies

Asp.net - Smtp Clients `SendAsync()` Method?

Mar 18, 2012

Protected Sub btnLocalSubmit_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnLocalSubmit.Click
Dim logic = New connections
logic.emailsToSend(User.Identity.Name, getURL, reportedBy)[code]....

I am using the smtp clients SendAsync() function to send out emails asynchronously...but this function does not work ...why?? i do not get any email..when i send it Synchronously...i get the emails, this means my settings are correct...so what is wrong with the SendAsync() method??

View 1 Replies

C# - Write A Warehouse Program Which Has Near 80 Clients?

Aug 16, 2011

I want to write a warehouse program which has near 80 clients.My program has to make some reports and control entrance and exit of commodities in warehouse and store data in SQL Server Database.I need to know that which one is better: using windows application which give me a lot of feathers or creating website which reduce my ability in using objects?I have to mention that my clients will not increase.

View 4 Replies

Handling Multiple Clients With TcpListener?

Jun 25, 2009

I have been programming a TcpListener Program and I have everything working right! So far... Except that when I have multiple clients connecting to my Server... I used a try catch statement to catch the error and it says that tcplistener doesn't allow multi connections... think creating a new thread for each connection sounds like the most reasonible answer but I can't grasp the concept of it...

Here is my frmMain:
Imports System.IO
Imports System.Net

[code].....

View 1 Replies

Notify Clients About New Releases Automatically?

Apr 21, 2011

In our company we have some specific softwares that have several releases during a year and we were wondering to notify the clients about new releases automatically. How can we code this functionality? I mean from where should we begin? we have an ftp which will contain those files. And How is that possible for us just to do the upgrade without uninstall and re-installing the whole package?

View 2 Replies

RFC - Listen For Connecting Clients Using TcpListener?

Oct 8, 2011

I posted this code in another thread as an example of how to listen for connecting clients using TcpListener.it is a small part of a larger project, its all my own work,

Imports System.Net
Imports System.Net.Sockets
Public Class Server[code].....

View 2 Replies

Send Message To All Multithreaded Clients?

Aug 2, 2010

Given the code, ss there a way to propagate messages send from any of the multithreaded chat client to all the other chat client:

First the main will call startClient:
Public Sub startClient(ByVal inClientSocket As TcpClient, _
ByVal clineNo As String)

[code]......

View 1 Replies

Sending Data To Clients From A Server In Vb?

Aug 27, 2010

Actually I have created a chat application is it possible to send data to particular client only?

View 1 Replies

VS 2005 Managing Increments On Different Clients?

May 5, 2009

I have a program in accounting that is used by many clients and users at the same time in a network. Many modules have a reference no. like in the receipt that increments upon saving, it also Checks whether that reference no. is already in used.

However problem arises when the many users use the same module at the same time. My question is How do you manage incremental values on each client's PC? Their local system somehow competes for the next incremental no.

View 4 Replies

[2008] Chat Clients Connected ?

Feb 28, 2009

Using this example here, do you think it would be possible to develop it to show who is connected to the server?

View 10 Replies

Allow Multiple IE Browser Clients With Unique Sessions In IIS 6.0?

Mar 2, 2011

I have a ASP.Net VB.Net application, which I developed an deployed in about 2004. I have just upgraded it to a new server and IIS 6.0. The application requires users to login from IE it and maintains their State using sessions on the server. I would like the users to be able to have multiple browsers open, each running with unique data on their client system. Is this possible, if so, what do I need to do?

View 4 Replies







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