Viewing VB6.0 Windows Form In "windows Server 2008"

May 21, 2009

I am facing problem in displaying VB 6.0 windows form when it is accessed from activeX control on windows server 2008 Is there any work around or any patch available to resolve this issue

View 2 Replies


ADVERTISEMENT

.net - Some Kind Of Error, Possibly When Viewing A Windows Form In The Designer?

Jun 24, 2009

I though I had solved this problem, but it is back:Code generation for property 'SelectedPeople' failed. Error was: 'Type 'ECS.Entities.Persistency.Person' in Assembly 'ECS, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable.'The property on the error message is a List(Of Person) and for some reason it trigger this error, for almost anything I do, and its getting really anoying.Okanswering to the answers here is a little more information about the problem.

Yes it is during design time, it happens bascially anytime a open a form that has a UserControl that contains the Selected property in it, sometimes it happens even if I don't have focus on the form, also if I try to compile/run it happens and the message come in the form of a Message Box with just a OK, ECS.Entities.Persistency.Person is just a LINQ to SQL Generated Class, this should not matter at all to the problem, although I have added the attribute before the posting.he reason that this happens is because the Designer attempts to put the property on the Property Panel, and for that to happen, serialization happens.tryed to hide the property from the designer by using this attributes.

<DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)> _
<Browsable(False)> _
Public Property SelectedPeople() As List(Of Person)

[code].....

View 3 Replies

C# - Windows Form + Database (Sql Server)+ Windows Mobile Application?

Mar 17, 2011

i am doing project of Order Accepting system for five star hotels.Scenario is Waiter will accept order using Window Mobile which is Connected to WiFi present in hotel.I want to communicate to database(Sql Server) present on My Machine (Computer present in kitchen) through WiFi and Add order into table present inside database. This should notify my application present on Compter and should print order. After completion of Order Application from kitchen will notify to waiter about completion. My problem is How to Communicate with database present on Remote computer using WiFi from windows Mobile.

View 2 Replies

SQL Server 2008 Configuration For Client Server (Windows Form) Application

Apr 6, 2012

Case : I'm creating an application (desktop application) with VB.NET (actually windows form), and using SQL Server Express 2008 for its database.

[Code]...

View 1 Replies

Showing / Hiding A Form On Windows Server 2008 RD Web Access

Mar 21, 2011

I'm having an issue with my app where IE will get brought to the front of the screen when I am switching between forms. Basically I have a form with the man menu which consist of a few command buttons that will start up another form once a user clicks on the button. I do not want the users loading up multiple forms in my application, so once they load one form I end up hiding the main form. So my code looks as shown below when a button is clicked.

[Code]...

View 6 Replies

VS 2008 Create Windows Service Using Windows Form Common Control?

May 3, 2012

It is possible to create windows service using windows form control in vb.net. give me the url or links. The windows forms control such as, Timer control, list-box, notify-icon control etc.

View 1 Replies

Better Control For Viewing Videos Than Windows Media Player?

Dec 6, 2011

having lot of problems playing a video on a form.Is there a better control for viewing videos than windows media player? For video resource files, what should the build action be? Will a form which has a 32-bit windows media player control on it work on a 64-bit computer?For some reason, the following code does not work:

If System.Diagnostics.Debugger.IsAttached() Then
strVidFilePath = System.IO.Path.GetFullPath(Application.StartupPath & "....
esources")[code].....

View 6 Replies

Deployment :: In Windows Vista/7 There Are Some Restriction On Folder Viewing

Jun 1, 2009

I have nerver used my application in windows vista or windows 7.It turns that WinXp SP 2 supports great but when i run it in windows 7 , it shows error like this but I can't install MDAC28 in windows 7 Because it is for windows 9x.Isn't vista/7 contain JetOledb components?.I have some other questions too in windows vista/7 there are some restriction on folder viewing .. In few of application , I used to save some info in system32 folder now those applications are also working.How we can save infos in windows 7 at system directory?

View 19 Replies

Registry Program - Moving Applications From Windows 2000 To New Server Windows 2003 ?

Feb 7, 2010

I am working on moving applications from Windows 2000 to new server Windows 2003 R2(64 Bit). I noticed that there are some VB programs and config files for those programs have been placed in Windows 2000 Registry. Some other applications are using them from different servers.Why do we use registry here? How can i move these to registry in windows 2003? Can I just move these or do I have to write VB programs to place them in 2003 registry?

View 1 Replies

Windows Service Unable To Access A File In Program In Windows 2003 Server

Mar 12, 2010

I have a .net Windows Service developed in VB.net. I have a settings file in the root directory called Connections.XML and I am setting the basedirectory [code]...

When I schedule the service this is working absolutely fine in my Windows XP machine. But when I installed the same service in our development server (Windows 2003 64 bit Server) for some reason it is not able to locate this file.

View 1 Replies

When Transfer System To A Machine Running Windows Xp Or Windows 2003 Server It Builds Successfully

Sep 25, 2011

I am building a Setup project for a Web system using Visual Studio 2008. I upgraded my development machine from Windows Xp to Windows 7. The problem started with Windows 7. Whenever I try to build I get the above error. I ve tried several solutions given online but I ve failed to get a solution. When I transfer the system to a machine running Windows Xp or Windows 2003 Server it builds successfuly.

View 4 Replies

Scroll In Windows Forms Treeview Only On Windows Server 2003

Apr 10, 2012

I have a problem with scroll in a treeview in a Windows forms application (Framework version 3.5).

The strange thing about the problem is that on Windows XP, Windows 7 and Windows 2008 the scroll works as excepted, but in Windows Server 2003 SP2 the scrolling doesn't work. Enable/disable Visual Styles doesn't seem to make a difference on Server 2003.

Steps to reproduce the error:

1. Add a treeview to a form and add x nr of root items (and 1 sub item to each item).

2. Expand a number of nodes. The non-standard thing here is that we are changing the node integral height because we display a usercontrol with the treenode (See example of the code below).

3. When you scroll afterwards, you cannot scroll to the bottom node. The scrollbar is all the way down, but we are not seeing the last node.

Public Shared Sub SetNModeHeight(ByVal Node As TreeNode, ByVal IntegralHeight As Integer)
'Create instance of tvitemex structure.

[Code]....

View 2 Replies

Socket Server, Windows Form App?

Jun 7, 2010

i took this code from another example, it works fine but it a windows console application.i took the code into a windows form app but it looks like i have to change somethingto start, it says client is not defined, so what should i use?lient.startClient(clientSocket, Convert.ToString(counter))

Dim serverSocket As New TcpListener(8888)
Dim clientSocket As TcpClient
Dim counter As Integer

[code].....

View 4 Replies

Access 97 And Windows Server 2008 R2 Farm Server?

Oct 26, 2010

We are currently using Access 97 as our database. This resides on the remote farm server (which is a Windows 2008 R2 server). We are using a front end vb6 exe which accesses the back end data.Occasionally we are getting corruption to our database and we have to make sure everyone exits the software to allow us to repair/compact it. There are 2 physical servers, each running 2 virtual machines. When the user logs onto the farm using RDP, they go to one of these 4 virtual machines.We are getting all kinds of corruption, some where # characters have been inserted into the top of one table, some where the indexes are corrupted, and some where access needs to repair the database.

View 1 Replies

Upgraded Our Job Server To Windows Server 2008?

Sep 2, 2009

We recently upgraded our job server to Windows Server 2008. We have jobs we run manually in a folder (c:Custom Programs). Some programs are console programs others are have a gui. This one program has a gui.It also has a progress bar that shows the progress of the job when you click the go button. Of course it spawns a thread to do the processing. This thread creates a log file to write errors and other things too.

The problem is when the program goes to create the log file an access not authorized error is thrown. I checked the permission on the folder. All users are allowed to create/edit/append/execute. Pretty much everything except take ownership. Also, there's nothing that denies anything. So I see no reason why this isn't working. We can get this to work by using the run as administrator option when we first run the program. However, we don't view this as unacceptable solution. My only thought is the spawned thread isn't getting the same permission set as the program. Am I correct or does something think it's something else.

[Code]...

View 11 Replies

Mass Email Using Sql Server 2005 In Windows Form

Jun 29, 2009

I am doing a project on sending mass email. My codes should be able to read contacts/email from the SQL Server 2005 database and send mass email with attachments.Below are my codes for sending email. My windows application limitation is that it can only send email from a valid email address to a valid address one at a time with the help of a relay server. Also, it doesn't allow the user to attach attachments and could not read from the sql server database.[code]

View 1 Replies

Mass Email Using Sql Server 2005 In Windows Form?

Jun 29, 2009

I am doing a project on sending mass email. My codes should be able to read contacts/email from the SQL Server 2005 database and send mass email with attachments.

Below are my codes for sending email. My windows application limitation is that it can only send email from a valid email address to a valid address one at a time with the help of a relay server. Also, it doesn't allow the user to attach attachments and could not read from the sql server database.[code]...

View 7 Replies

Insert Xml Data To Sql Server 2005 Table Using Windows Form?

Jan 23, 2012

I have exported data from a SQL Server table into a XML file and the output looks like this:

Filename = 11190.xml
Table name = LRTest
<NewDataSet>

[Code].....

Now I want to save the above XML file into my SQL Server 2005 table

With the same columns using vb.net windows forms, in every exported xml file there are 100 to 200 records. .

View 1 Replies

Is Sql Server Needed For Run Windows Form Solution With Sql Database As Back End

Nov 26, 2010

I am using a vb.Net 2010 and sql server 2005.I want to run a solution that is windows form to another computer.There is No centralized server.

View 1 Replies

Sql Server - Passing Parameter To Crystal Report In Windows Form?

Mar 16, 2011

i am working on visual stdio 2008(vb.net) and sql server 2008 i working on crystal report 9 i have created a stored procedure in sql server i have add this procedure in crystal report data expert now i just want to pass a parameter to crystal report so that it will show me data in crystal report?

View 2 Replies

Sql Server - Update By Taking Values From Textboxes On Windows Form?

Sep 16, 2011

I want to take the values from textboxes on a windows form and then update the values in the sql server database...I want to update only those fields for which a value has been entered by the user and leave the fields for which the textboxes are left empty by the user.....How can I generate the query dynamically for such a situation???

Edit:

I haven't yet coded for the update option...Here is my insertion code and i wanted to implement the update feature the same way just couldn't figure out how i can generate the query dynamically....It's a Booking System application

[Code]....

View 1 Replies

VS 2008connect A Login Form In Windows Application To Remote Server?

May 3, 2012

I am having trouble in creating a login form in my windows application.If i create a login form with its database local to the system ,it works fine .But my requirement is that the database is placed on a remote server so that the login is secured.When the user tries to use the application he first needs to login.When he puts the username and password in the login form it should send the data to a remote server for authentication.

View 12 Replies

.Net And Windows Search (Win 2008 (x86) Server)?

Nov 17, 2011

We have migrated one of our websites from a windows 2003 machine with IIS5 installed.Search within the website also used an indexing service to search within a Catalog "index_pdf".The catalog indexed a folder on the server and Adobe iFilter 6.0 was used to be able to search through the pdf files. While migrating, we switched to another OS -> Windows 2008 (x86). On this machine we installed but now searching through .pdf documents doesn't work. We tested the website on a different server with different versions of PDF iFilters but unfortunatly without any result. Even on a Windows 2008 (x64) server with the 64 bit version of Adobe PDF iFilter we couldn't search through .pdf files.

Our findings:The classic Indexing Service in combination with classic ASP works. (filtering on pdf hasn't been tested)The classing Indexing Service in combination with ASP.NET doesn't work.On windows 2008 servers we have to use Windows Search, because IIS7.x communicates on a different way with the Indexing Service.Now we have to find a way to rewrite our excisting VB.NET code to a way in which it wil work with the new Indexing Service which we don't know to well yet.My question is how to approach this.

View 1 Replies

Impersonate On Windows Server 2008?

Aug 6, 2011

does anyone have a sample on how to impersonate on a windows 2008 server? my impersonate does not seem to work with 2008 server

[Code]...

View 7 Replies

VB 2008 And Windows Server 2003?

Mar 2, 2009

I am NOT allowed to install into Windows Server GAC. I am allowed to upload my program files to a shared drive, not the operating system drive.To begin, I created a simple Class Library .dll and uploaded the entire project folder to the shared drive. I have absolute permission to do anything with this drive and the computer. This class library has only (1) public property.I created a client exe. with a reference to the shared drive .dll. I do not want a local copy of the .dll into my client folder. I want all clients to use this shared copy on my shared drive. And I repeat, I do not want to install into the GAC. I also have full permissions on my terminal.I have created a key file (.snk) for my .dll, and set up assembly information (public id) and tested.I have tried without key(.snk file), and removed assembly information, and tested.Can someone point me into the direction to install/or not to install a MyClass.dll on a shared driveand be able to reference it from other applications?I do not want to use ASP.NET. This is just a base class. This is not a Web service. It seems Windows server 2003 wants this installed into the GAC (C:WindowsAssembly)I have to be missing something.

View 5 Replies

Change The Background Of The Form To Look Like That Of Windows Mobility Center In Windows Vista?

Apr 10, 2012

How can I change the background of my form to look like that of Windows Mobility Center in Windows Vista?

View 2 Replies

Form Controls Changes From The Windows 7 Format To Older Formats On Runtime While Running .net Windows Application

May 15, 2012

I have seen this happen before but am not sure how I resolved it in the past. On runtime the controls of my form change from the windows 7/vista format to an older version format as shown in the attached image.

How to display the controls in the format on the left (new windows format)

View 1 Replies

Create Windows Service Using Windows Form Controls In Program?

May 3, 2012

It is possible to create windows service using windows form control in vb.net.If yes then please give me the url or links.

View 1 Replies

.net 2.0 Windows Service Not Running On Server 2008?

Dec 4, 2009

I have a windows service written in .net framework 2.0. This service installs and runs perfectly fine on both XP and windows server 2003.We have a new 2008 box that we are migrating over to, so need to get this windows service up and running.When i try to 'start' the windows service on the 2008 machine, i get "Windows could not start the <service> service on local computer. Error 1053: The service did not respond to the start or control request in a timely fashion."I have searched everywhere looking for an answer, and all I could find was a fix attributed to .net framework 1.1 for this same error. That; however, is not applicable here, as the service was written in 2.0.

View 3 Replies

Connecting To SQL Server 2008 Using Windows Authentication

Dec 15, 2011

I have one more question. I am connectinag to SQL Server 2008, not express, and I keep getting the "login failed for user "...""[code]

View 7 Replies







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