Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. viper1777

    ASP.Net Configuration

    Hi, I have sorted this by adding a custom membership provider to the web.config file. Can any please elaborate on TipGiver's comments about encrypting the connection string in web.config. I have google many resourses on this, but these are all for programmatically decrypting the connection...
  2. viper1777

    ASP.Net Configuration

    Hi, I am a relative newbie to ASP.NET 2.0. I have created a web site (ClimbYorkshire.com - Still under development) and I was wanting to add Forms Authentication to the site. I have watched a couple of webcasts from MS and they tell me to use the ASP.NET Configuration and then click on the...
  3. viper1777

    CPU spec for SQL Server 2000

    Hi, It depends on the amount of work you plan to use it for. I have a 1.2 Ghz Athlon with 256Mb of RAM and it runs SQL 2000 with no problems when developing applications. Not sure how it would perform under heavy load...? Thanx! Dave Shaw Nothing is Impossible, it is just something I haven't...
  4. viper1777

    Syntax help

    Hi, The pipe is an Or operator Thanx! Dave Shaw Nothing is Impossible, it is just something I haven't got round to doing. - Me History admires the wise, but elevates the brave. - Edmund Morris
  5. viper1777

    Stop Job Based on SP Return Value?

    Hi, Here is some code to create a proc that will return an integer. In this eg it queries the top id field in my_table and if it equals 1 then it returns a 1, else it returns 0. create proc sp_test as declare @id int select top 1 @id=[id] from my_table --print @id --debug code if @id = 1...
  6. viper1777

    Delphi Dlls in C#

    Hi, I have fixed this also, nothing a good nights sleep can't cure. :-) The cause was that I was passing strings to the Delphi DLL, so I was using ShareMem Unit. But it was not the first unit in the Uses Declaration. That will teach me for deleting the useful comments provided by Delphi. Doh...
  7. viper1777

    Delphi Dlls in C#

    Hi, I have fixed this also, nothing a good nights sleep can't cure. :-) The cause was that I was passing strings to the Delphi DLL, so I was using ShareMem Unit. But it was not the first unit in the Uses Declaration. That will teach me for deleting the useful comments provided by Delphi. Doh...
  8. viper1777

    Delphi Dlls in C#

    I have now overcome this problem, however. I am now getting a BroadcastEventWindow.2.0.0.0.33 when I close my application. I am then getting RunTime Error 217 once then getting RunTime Error 216 followed by 'The Memory Could not be "Read"' message in a Continuous Loop until I Kill my...
  9. viper1777

    Delphi Dlls in C#

    Cheer Chip, I have now overcome this problem, however. I am now getting a BroadcastEventWindow.2.0.0.0.33 when I close my application. I am then getting RunTime Error 217 once then getting RunTime Error 216 followed by 'The Memory Could not be "Read"' message in a Continuous Loop until I Kill...
  10. viper1777

    Visual Studio 2005 Beta 2 - Missing Options

    Have you install Visual Studio Team System 2005 instead of the Normal Developer version? I ordered the DVD from MS and found that I had one disk for Team System and one for the Normal VS 2005, this is the one for standalone development and will most likley one the tutorial is talking about...
  11. viper1777

    Delphi Dlls in C#

    Hi, I have a Delphi 6 DLL that I need to run from C#.Net 2.0. I have some problems with it though. Here Goes: The Delphi Decalration is : function M_Login(ip : PChar; port : LongInt; uci : PChar; vol : PChar; pass : PChar; user : PChar) : LongInt; stdCall; And the C# Declaration is ...
  12. viper1777

    Delphi Dlls in C#

    Hi, I have a Delphi 6 DLL that I need to run from C#.Net 2.0. I have some problems with it though. Here Goes: The Delphi Decalration is : function M_Login(ip : PChar; port : LongInt; uci : PChar; vol : PChar; pass : PChar; user : PChar) : LongInt; stdCall; And the C# Declaration is ...
  13. viper1777

    How to Create a Boss Key?

    If you did not want to use F12, but wanted to user Ctrl+F12 ,for example, you could Register a HotKey. I have not got VB.NET code for this but I have managed it in Delphi. If not when the form is hiden you could use the GetASyncKeyState Function from User32.dll. Again I have VB6 Source but not...
  14. viper1777

    Boneheaded question of the day

    You can always user RENAME "My Douments" "My Old Documents" Hope this helps. Thanx! Dave Shaw History admires the wise, but elevates the brave. - Edmund Morris
  15. viper1777

    Reluctant windows Update?

    I have had this also. Try re-installing IE6 SP1 with Outlook Express from Mircosoft. http://www.microsoft.com/downloads/details.aspx?FamilyID=1e1550cb-5e5d-48f5-b02b-20b602228de6&displaylang=en This should then let you install the update. If this fails, goto the MS website and download the...
  16. viper1777

    Stored Procedure Syntax

    Hi, This code will select the time stamp from the database and if it is null assign it to the current date/time. If I remeber rightly there are cleaner ways to do this, but this is the easiest. DECLARE @myActiveSinceTS TIMESTAMP select @myActiveSinceTS=pilotActiveSinceTimestamp from pilot...
  17. viper1777

    Templates

    Thanks. I thougth I had seen it somewhere before. I am sticking with VS2003 at the moment but now you mention it I do remeber seeing it in VS2005. Thanx! Dave Shaw
  18. viper1777

    Templates

    Hi, I am fairly new to visual studio web development, I can do the back end (C# and VB) stuff OK, but I am having some problems with the Web Page Development. Simply, is there any way I can develop a template that I can use to base all other pages on. But can still be dynamically updates when...
  19. viper1777

    SQL Server Jobs

    Hi, I have created an SQL job from a Delphi application using ADO. Mainly I have used the sp_add_job and associated commands. I have added a job, 2 steps and a schedule. I then query the job I created for the job_id and insert into msdb..sysjobservers. I do this to get the runnabke status of...
  20. viper1777

    Scheduled Tasks Hiding Applications

    Hi, I am using MSM Console on Windows 2000 A Server, and I have scheduled task to call a batch file to shut down the console and perform a backup. When this happens though the batch file runs and should then restart the MSM application in the DOS window of the batch file. MSM is a DOS Console...

Part and Inventory Search

Back
Top