Topics
-
-
- Administrators
- 1 reply
- 1.1k views
I was learning the ftp from this url http://support.microsoft.com/default.aspx?scid=kb;en-us;832679#top I got this error when buliding the solution Error Name 'StrIP' is not declared. Error Name 'output' is not declared. Warning Access of shared member, constant member, enum member or nested type through an instance; qualifying expression will not be evaluated. and etc. What went wrong. I am using xp pro and vs 2005 :rolleyes: Please Help Help
Last reply by PlausiblyDamp, -
-
-
- Administrators
- 4 replies
- 4.7k views
Hi all I have the a web.config file, that has a encrypted connection string in it. I am getting the following error: I have found that I need to decrypt the key using the following command in the dos prompt: aspnet_regiis.exe -pd "connectionStrings" -app "/connectionTest" The problem that I am encountering at the moment is I am unsure what to submit in as the "connectionStrings" and "/connectionTest". Has anyone employed this command before? Mike55.
Last reply by PlausiblyDamp, -
-
- 2 replies
- 1.6k views
I am working on Asp.net and iam trying to use the netmeeting com object to make a chating application, but i need to use my own design chating windows and the functionallity of the netmeeting. The question is can i do that and if yes please give some hints and sample codes.
Last reply by yogs, -
- 2 replies
- 1.6k views
I have 1 form, with 2 sets of information: Billing Address <submit button> Credit Card Information <Submit Button> When a user presses the enter button after typing something, the first <submit button> is automatically used. How can I make it so.. if the user is typing in credit card info, and he hits enter.. the <submit button> for CC info will be submited instead of the other? thanks!
Last reply by bri189a, -
- 1 reply
- 3.5k views
Help! I have a web application (VB.net codebehind) that has been working on my test server for ages. Now, I had to do a little maintenance on it for the customer, and I now cannot log on to the site! It uses Integrated Windows authentication. I have had the authentication page working since the site was installed. It pulls all sorts of information, including group memberships. The area that appears to be failing is where I am attempting to get all the members of two particular groups. Here's the code: Progress = "SalesGroup-Start<br>" objGroup = GetObject("LDAP://CN=Sales,OU=IKON Project,DC=ik…
Last reply by SteveoAtilla, -
- 0 replies
- 1k views
We have an old DOS-based print queuing program that we need to port to Windows. The conversion is necessary because we have a very large DOS based business application that must work under Windows 2000 or XP. The business application prints directly to LPT1, LPT2, or LPT3, and unfortunately we cannot convert it to use windows printing because it is too large to rewrite and incorporates too many 16 bit libraries to convert. By itself, the business application works except it prints directly to printers mapped to LPT1/2/3 since the queuing program we use is not W2K compliant. The queuing program would normally capture the data bound for these printer ports so that we can pr…
Last reply by CodeSculptor, -
-
- Administrators
- 1 reply
- 1k views
He, I'm trying to send a meeting request by code. Using office.interop I was successfull but a noisy popup appear when application send the email "an application is tring to access to outlook etc etc" and I must press the button to permit it. Anyone know a way to resolve (also changing the way to send meeting request)?
Last reply by PlausiblyDamp, -
-
- 0 replies
- 2.9k views
Hi all I have two drop down lists on my page, when the user selects an item in the first list the second list should load related data from a database table. I am trying to use AJAX to prevent post-backs, but I am running into a number of problems: 1. Syntax error - it seems that this error is related to the command: Ajax.Utility.RegisterTypeForAjax(GetType(AjaxData)) When I remove this line I get no errors. 2. Microsoft JScript runtime error: 'AjaxData' is undefined occurs in the javascript file function LoadType(identifier) { var type = identifier.options [identifier.selectedIndex].value; AjaxData.GetSubType(type, LoadType_CallBack); } I cannot u…
Last reply by mike55, -
-
- Administrators
- 1 reply
- 950 views
In my application there are many inter-dependent dropdowns. ie:- when user select value form dropdown1 according to that a query is fired and the data is populated in dropdown2 by applying the value selected in dropdown1 as filter. Now the user wants this process to be done at client-side as there are too many dependencies. (There is a database table in my project which stores all there dependencies.) Please let me know if there is any way out so that I can implement this at client side. (Note: - I am using ASP .NET 1.1)
Last reply by PlausiblyDamp, -
-
- 2 replies
- 9.5k views
is there anyway to convert c#.net application to vc++.net (win 32) application? if not, how can i use my c#.net application to new vc++.net(win32) app that there isnt any c# code to my end app thank you
Last reply by David Anton, -
-
- Leaders
- 2 replies
- 10.5k views
How are Line Breaks written to a TextBox in C#? [CS]TextBox1.Multiline = True; TextBox1.Text = "Line 1\nLine 2"; // does not add a new line.[/CS]
Last reply by snarfblam, -
-
- 1 reply
- 3.5k views
I need to programatically determine the size, type and name of all of the fields in all of the tables of a large Sybase database. I know how to do this in MySQL and MS SQL, but can't figure it our in Sybase. Their documentation seems to say 'sp_help', however it doesn't work programatically Anyone done this before? Sorry for all of the Sybase questions - this product is pretty poorly documented and I am new to it
Last reply by TheWizardofInt, -
- 4 replies
- 1.9k views
Hi everyone! I have a problem with getting unmanaged pointers to Direct3D Device using DirectX9 for .NET 2.0. When I used DX for .NET 1.1, there was Device.GetObjectByValue(...) method, but it's removed from new version! Please, help me anybody, it's really necessary for me to get an IntPtr to Device!
Last reply by vo_one, -
-
- Leaders
- 4 replies
- 2.6k views
The command line is: "C:\progra~1\sybase\sql anywhere 8\ dbeng8 c:\progra~1\sybase\shared\hademo\hammdemo.db" So I tried: Proc.StartInfo.FileName = "C:\Program Files\Sybase\SQL Anywhere 8\win32\dbeng.exe" Proc.StartInfo.Arguments = "c:\program files\sybase\shared\hademo\hammdemo.db" Proc.Start() Which gives a file not found error. Can a fresh set of eyes see where I missed this?
Last reply by TheWizardofInt, -
-
- 0 replies
- 2.2k views
I'm having some problems with a DropDownList in a DetailsView. I am populating the list at run-time based on other selections by the user. It works great until I select a row in the corresponding GridView to edit. I then get the error: "System.ArgumentOutOfRangeException: 'ddlTableColumn' has a SelectedValue which is invalid because it does not exist in the list of items. Parameter name: value". My guess is that this error occurs because the DropDownList is not yet populated before the edited row is binded to it. I am currently populating the DropDownList in the Page_PreRenderComplete event. I have also tried placing it in the DetailsView PreRender event, which has the…
Last reply by tfowler, -
-
- Leaders
- 3 replies
- 1.3k views
I've got windows 2000, Visual Studio 2005 Professional installed. I want to make a few hokey board games... nothing super fancy, maybe a basic one at first then some more modular board games like Fantasy Flight and Games Workshop put out. Not direct ripoffs, but something in that vein. I think I'll stick to GDI+, but after talking with a friend, I realize if I ever want anything advanced or cross internet playing (ie four people on different machines playing together) I would have to use DirectX... or it would be easier for me at least. I break out my old '.Net Game Programming with DirectX', one of the worst written programming books I've ever read. Tons of e…
Last reply by Denaes, -
-
- 10 replies
- 17.6k views
I have a "Load report failed" error when I deploy an application with a viewer using crystal reports 9. I'm using an ADO.NET dataset to feed data to the report. The application works great on my PC even when installed, however not on any with only the .net framework. Even the simpliest application, created with the help file's examples. I am using vb.net.. and not the full vs.net you may be thinking of, but the stripped down VB only version.. This means by default that C++/C#/etc are not installed, which includes the vs.net standard crystal reports package. (Pretty sure this means the files normally in programfiles\common files\crystal decisions\1.0 are non existan…
Last reply by yolion, -
-
- Administrators
- Leaders
- 5 replies
- 802 views
How could I guarantee that the multiple images in my C# project are the ones that are supposed to be in there? Our company has an application that is being developed for use in a small, hand held device (palm pilot, etc). The application uses pictures to help the technician troubleshoot problems out in the field and details where to make connections, what bolts to tighten, etc. The company wants to safeguard the images used by the application to ensure no one can tamper with them, since a wrong image could result in injury or death. WiFi is not always available, especially deep in the coal mines or out on off-shore drilling platforms, so connecting to an SQL Serv…
Last reply by snarfblam, -
-
-
- Administrators
- Leaders
- 7 replies
- 1.1k views
I was wondering if there was a way to dynamically load a form with a function similar to the following: function openform(formName as string) as form dim f as new form 'some code here to open what ever form is named "formName" return f end function
Last reply by snarfblam, -
-
-
- Leaders
- 2 replies
- 1.3k views
Hi, I'm currently making a program that opens a bitmap for viewing from a non-standard format. I have succeeded in getting the bitmap data and have opened it into a Bitmap object. Now I want to be able to select one (or a mix of ARGB) of the colour channels to display. I have achieved this by cycling through all of the pixels using for statements and changing the pixels ARGB colour values one by one. But as was expected this takes alot of time with larger images. Is there a quicker (much quicker) way of doing this?
Last reply by FireScythe, -
-
Who's Online 0 Members, 0 Anonymous, 20 Guests (See full list)
- There are no registered users currently online