Topics
-
- 0 replies
- 926 views
Hi I have a Access 2003 database that works fine with .NET 2005 using a OLDDB connection under British UK. I changed my regional setting to use Galician and now the database table fields cannot be read. Does anybody know why? -Paul
Last reply by Data Danger, -
- 0 replies
- 1.2k views
Can anyone please help me as I don't know why this is happening. I am using crystal reports and when I run my project within vs2005 it runs fine. However when I create my installer and install the software I get the following error when trying to run the application: Unknown Query Engine Error All the crystal dll's get installed and I have verified the database as per outher solutions that I have come across. But this still does not solve the problem, can anyone help? Thanks in advance Simon
Last reply by lidds, -
-
- Moderators
- *Experts*
- Administrators
- 13 replies
- 5k views
I want to update a textbox and also change the HTML elements. Error: A potentially dangerous Request.Form value was detected from the client (TextBox1="<br> <h1> a <h1/>"). Description: Request Validation has detected a potentially dangerous client input value, and processing of the request has been aborted. This value may indicate an attempt to compromise the security of your application, such as a cross-site scripting attack. You can disable request validation by setting validateRequest=false in the Page directive or in the configuration section. However, it is strongly recommended that your application explicitly check all inputs in this cas…
Last reply by Eduardo Lorenzo, -
-
- 2 replies
- 959 views
I'm modifying an existing .net website and in the HTML the previous developer using <%# Function Name %> several times in his HTML to call a function and return the value to the screen. I've always used <%= Function Name %>to do the same thing. Is there a difference in the 2 methods of doing this? Thanks!
Last reply by CJLeit, -
-
- Administrators
- 2 replies
- 1.1k views
VBNET 2003 Framework 1.1 I'm trying to understand how to deploy a .NET website in the similar manner as was done in VB6 i.e. the asp pages sit on a webserver in the DMZ and the VB6 Business Rules and Data Access DLLs sit on an application server behind the firewall and are executed as COM+ proxies on the webserver. Am I correct in assuming the DLL that contains the ASPX 'codebehind' must remain on the webserver? How do I move the .NET Business Rules and Data Access DLLs to sit on an application server behind the firewall? Still use COM+? How? TIA
Last reply by Nate Bross, -
-
- 2 replies
- 1.8k views
I am trying to make use of a .NET DLL I created from an older ASP application. When I run the Server.CreateObject I get nothing. I have re written this DLL from an old VB6 dll. I tested the DLL with a .net app and it does work so it is not the dll. i set all the interop stuff up on the build and dit the regasm on the server. The asp clasic seems to not even try to access the dll, no errors no signs of life whatsoever. The asp page stll loads but returns none of the data the dll is designed to retrieve. Is it possible to do what I am trying to do or is this a fools venture.
Last reply by Nate Bross, -
-
- Leaders
- Administrators
- 4 replies
- 1.5k views
I have a class that has 4 properties, one of which is a string. I make a collection of these class objects like so: List<MyObject> myObjects = new List<MyObject>(); I then start throwing new objects in the collection: MyObject m = new MyObject(); m.name = "yatta"; m.id = 12; m.isBig = true; m.dbl = 12.5; myObjects.Add(m); My question is: how can I find out if there is already an object in the collection that has one of the properties at a specific value so I don't add it again? For example if my next object had a name of "yatta" I would not want to add it again. But how can I find out if it is already in there? I know that I can do the fo…
Last reply by Wraith, -
-
-
- Administrators
- 1 reply
- 1.1k views
I have a MS SQL Server 2000 database. That custimers need to access 24/7. I need to migrate that data to a SQL Server 2005 database for testing. What is the best method for accomplishing this? Should I copy the data files from the current server to the new server, and import the copied 2000 data file? Can sql 2005 restore a 2000 backup? Any suggestions shall be greatly appreciated.
Last reply by PlausiblyDamp, -
-
- 1 reply
- 932 views
I have created a set of dynamic/on-the-fly controls including labels. my problem is I can't seem to be able to set the label's font size! :mad: I have tried Font.Size, Font.Name = "Verdana, X-Small", casting a string to unit, none worked. Right now i am looking at the logic because i create the controls before the page_init and then set the values on postback. please help me.
Last reply by Eduardo Lorenzo, -
- 1 reply
- 1.4k views
I've added a gridview to my page, gridview1. Then in code behind ive added a couple of lines gridview1.datasource = dtFeedback gridview1.databind The IDE finds gridview1 no problem and intellisense works fine. When I try and run it it fails with build errors, none are shown in the normal window however when I go into the output window. It shows error BC30451: Name 'GridView1' is not declared. error BC30451: Name 'GridView1' is not declared I've tried deleting the Gridview and recreating it but its still the same, i've exited VWD and tried again, still the same! Thanks
Last reply by Mondeo, -
-
- Administrators
- 2 replies
- 1.4k views
How do you do that cool little logo thing? I don't even know what to call it to look it up I tried the usual 'View Source' on pages that had it and found nothing, as well
Last reply by TheWizardofInt, -
-
-
- Leaders
- 2 replies
- 971 views
I don't know what happened but since a few days ago, VS 2005 simply compiles all code and ignores sintaxe or any other kind of errors... How to fix this? Please, it's slowing down my production :(
Last reply by EFileTahi-A, -
-
- 1 reply
- 965 views
Hi! I am new to working with xml files, and need to know if I am on the right track... The file is supposed to show the schema of a database: <?xml version="1.0" encoding="utf-8" ?> - <Schema> - <Tables> - <Table Name="Categories"> - <Fields> <Field>Description</Field> </Fields> </Table> - <Table Name="Customers"> - <Fields> <Field>CompanyName</Field> <Field>ContactName</Field> <Field>ContactTitle</Field> </Fields> </Table> - <Table Name="Employees"> - <Fields> <Field>Country</Field> <Field>EmployeeID</F…
Last reply by Shurik12, -
-
- Administrators
- 1 reply
- 1.1k views
I want to use a customised asp.net 2.0 login control. Basically my username and password and submit imagebutton are built into my site navigation bar. Is there anyway to do somthing like this when my submit button is pressed. Private Sub btnSubmit_Click handles btnSubmit.Click Dim loginControl as New Web.UI.LoginControl loginControl.username = txtMyUsername.text loginControl.password = txtMyPassword.text loginControl.DoSubmit End Sub Thanks
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 1 reply
- 922 views
How do I initialize a TextBox whose TextMode is "password", with a password?
Last reply by PlausiblyDamp, -
-
- 0 replies
- 863 views
hey guys! I got a discount voucher for this certification exam.. 70-536 TS: Microsoft .Net Framework 2.0 - Application Development Foundation please give me links for reviewers and tips so you can help ma pass... thanks in advance.. please hurry.. voucher expires Dec 31, 2006
Last reply by Eduardo Lorenzo, -
-
- Leaders
- 9 replies
- 5k views
I'm really into old school video gaming (i.e. NES/SNES/Genesis). I'm getting into DirectX, using Direct3D to make 2D games. Given a bitmap that contains a number of tile images (i.e. a tile sheet, aka sprite sheet), does anyone have any tips for loading up the bitmap and chopping it into textures (one texture per tile)? Or any other relevant recommendations while we are at it? I've only started learning yesterday, so any advice would be helpful, and it seems to be pretty difficult to find specific, helpful information on the topic.
Last reply by snarfblam, -
-
- 0 replies
- 1.6k views
I have three alternative bits of code that I can use to refresh the property grid when a property changes other than through the user changing it through the propertygrid. These are shown below: Public Class Form1 Dim WithEvents h As New ABC Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Me.PropertyGrid1.SelectedObject = h End Sub Private Sub h_paintgrid() Handles h.paintgrid Me.PropertyGrid1.Refresh() End Sub End Class Public Class ABC Event paintgrid() Private def As Long <System.ComponentModel.RefreshProperties(System.ComponentModel.RefreshProperties.Repaint)> Public Propert…
Last reply by rbulph, -
-
- Administrators
- 3 replies
- 1.1k views
Could someone please help, I have been trying to spot the problem but I can't seem to see the problem. CREATE PROCEDURE [dbo].[spSearchComm] @project as varchar(50), @search as varchar(255) AS declare @strQuery varchar(8000) declare @strOrig varchar(3) set @strOrig = 'Yes' set @strQuery = 'SELECT * FROM commentsTbl WHERE projName=' + @project + ' and original=' + @strOrig + ' and commtitle like ' + @search + ' or commDesc like ' + @search + ' or commAction like ' + @search exec (@strQuery) GO [code] It is giving the following error but I everything things to be fine: Incorrect syntax near the keyword 'or' Thanks Simon
Last reply by lidds, -
-
- 1 reply
- 1.5k views
I have this data (below). I need to pull out several bits of data. In the Example below, I need to pull the values: The Paradox ["Guild"] = The Paradox ["Motd"] and then this 'data' from each 'member' ["Sindogg"] = { ["Note"] = "", ["Zone"] = "Westfall", ["Group"] = "no", ["Class"] = "Druid", ["Level"] = 24, ["Name"] = "Sindogg", ["Rank"] = "Alt", { Any ideas, C#, VB are welcome. myProfile = { ["Malorne"] = { ["Guild"] = { ["Guild"] = "The Paradox", ["Date"] = "12/04/06 18:21:16", ["Hour"] = 18, ["Locale"] = "enUS", ["Minute"] = 21, ["Mo…
Last reply by Nate Bross,
-
Who's Online 0 Members, 0 Anonymous, 53 Guests (See full list)
- There are no registered users currently online