Does anyone know of a way of validating controls on a WPF page so that when a control has invalid data the user is prevented from navigating to the next page.
Hello,
I have a windows service, written in VB.Net. I want to create a install package for this service that will prompt th user to provide the service name. This is so tah when the service is released to DEV-UAT-PRD this "domain" is added to the service name without the need to rebuild the...
Here is my HTML
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head...
I have a label and a textbox in a panel on my form. In the form load event I can set the visiblity property to false, but on postback I want to set the visibility to true but I get the error
Unable to find control with id 'TextBox2' that is associated with the Label 'LabelTextBox2'
even when...
Hello,
We have a document template linked to a text file which contains delimited records. Merge fields have been added but now need to be removed. When we delete the field and save the template everything seems fine until we close and then reopen the document, the field is somehow back...
I have a diffgram that I want to 'load' into a SQL 2000 database. After trying the examples on the microsoft site I am getting an error :
Failed to load library sqlxmlx.dll. Please make sure it is properly installed and registered.
I have tried to register the dll but it won't allow it. I...
Hi,
I am working on a project that will require PDF documents to be filled in electronically and saved to a laptop. Then later when the laptop is reconnected to the internet the data from the PDF forms can be submitted back to a webserver.
I have created a form using acrobat 6 professional...
Users of my system book appointments in their Outlook calendars to indicate they are available to conduct interviews at certain times. I need to be able to request a certain time and date from outlook if there is an appoint booked with a heading saying that they are 'Free' then I need to rebook...
Using the window.print I get the print dialogue box. Is there anyway to prevent this. The application is an intranet application and WILL NOT be used outside this company.
I have a table in an access db which holds information about bank account numbers. An account can appear in the table more than once with a different status code. I need to see if an account has all the possible status codes and exclude them from the recordset if they have.
The records appear...
I have a textarea on my .asp page. It contains upto 17 lines of varying length text with a carriage return line feed on the end of each line. I need to split this string into 17 separate string using javascript and store these new strings in hidden variables on the page.
I have run this code and it works on my machine. You have to move the javascript to the <head> portion of the file, hope this works...
<Head>
<script language="JavaScript">
function espacevide(){
if (document.formu.login.value == "")
{
alert("Vous devez inscrire...
Sorry, didn't see the alert try this
<%@ Language=VBScript %>
<%
DIM login
DIM password
login = request.form("login")
password = Request.Form("password")
if (login="rros017" and password="osaka98a") then
'**** WANT TO GO TO rros017.html, HOW TO DO...
If your problem is that you are not able to retrieve the data in the login and password variables make sure the page that is padding them uses the "post" method.
To send the user to their own page
if (login="rros017" and password="osaka98a") then
**** WANT TO...
I have an Access Database which I access from a VB app. My problem is I run reports which are held in the database and when I run these reports the user then has access to the database. I want to hide everything apart from the report but can't find a way to do it from the VB App
It looks like you have no data source
adoConn.Open "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=; " & dbPath
move the semi-colon to the end of the statement
adoConn.Open "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE= " & dbPath & ";"
I have an access database with a number of reports that I want to run from VB. I have no problem displaying four of them but the fifth takes at least two date parameters in the where clause. I have tried supplying the two dates in the forms
([DateOrdered] >= 13/10/01 And [DateOrdered] <=...
Hi,
I am trying to get a flexgrid to automatically resize when a form resizes. The grid currently resizes but is substantially smaller then the container form. This is the code I am using to resize the grid on a maximized form.
Me.WindowState = vbMaximized
With fgRecords...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.