473,799 Members | 3,005 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

.NET Framework Forum

Microsoft . NET Framework - Ask questions about Windows Communication Foundation(WCF), Windows Workflow Foundation(WF), applications (web, server, smart clients, console and database).
0
2,236
thread by: Alexiel | last post Mar 2 '06 by: Alexiel
Hi, i have a problem, I have a Java Client and i call my webservice on ..NET. This run perfectly just except when i send parameters don't work fine. I send my code : This is my java client.......... import java.io.*; import java.util.*;
1
1,217
thread by: semigeek | last post Mar 2 '06 by: DWS
Hi, I am trying to use CLR Debugger, but i am unable to open up 'Disassembly' window. Now here is what i do. First off, i open up my exe using 'Program to Debug' i.e. MyProject.exe and then i open up my 'MyProject.cs' i.e. C# source code file by going to File->Open->File->MyProject.cs. Now im unable to launch 'Dissasembly' Window. Now...
1
1,637
thread by: cowbell | last post Mar 2 '06 by: Joerg Jooss
Providing authentication for protected content via Basic/Digest Headers seems pretty straight-forward, but I'm stuck trying to figure out how to do something a little different: say you have some sort of page of customizable content - an example might be a portal page that you've tweaked to display your favorite headline topics, your stock...
0
1,308
thread by: Farslayer | last post Mar 2 '06 by: Farslayer
I'm trying to create a custom installer for an application. I need my regular setup project to run, but then would like it to call a custom installer. The reason is that the setup project copies all of the files necessary for the application, but I need the custom installer to gather information such as the name of a SQL server, index server...
0
1,497
thread by: WB | last post Mar 2 '06 by: WB
Hi, How can I add an "onbeforeunload" event to the body tag of the MasterPage? All pages in my site follow a MasterPage and some of these pages require long processing. I'd like to show a "Processing. Please wait" message for these pages and need to add an "onbeforeunload" event to the body tag like so: <body...
3
1,924
thread by: ibiza | last post Mar 2 '06 by: brians[MCSD]
Hi all, I am currently developing in asp.net 2.0 and I was at first impressed with the numerous login and user controls they provided to ease the task of managing users. But I am starting to think it's an hassle for certain tasks...here's my problem : I have created some users and successfully log them with the supplied
1
3,365
thread by: maflatoun | last post Mar 2 '06 by: amiekweon
Hi, I have a datagrid and based on a condition I like to display either a asp:textbox or asp:label. How would I do that? I have the following <asp:TemplateColumn HeaderText="Qty"> <ItemTemplate> <% if (DataBinder.Eval(Container.DataItem, "DynamicAttribute") = "No") {%>
5
1,655
thread by: maflatoun | last post Mar 2 '06 by: abukase1
Hi guys, How do I convert 6000 hours (int) to ticks? Thanks Maz.
16
6,017
thread by: Brad Wood | last post Mar 2 '06 by: John Harcourt
I'm using a 2.0 XmlReaderSettings object with setting.ValidationType set to ValdationType.Schema to validate a document against a schema. Following is a schema fragment (names altered): <xsd:element name="Stuff"> <xsd:complexType> <xsd:sequence> <xsd:element ref="RequiredSimpleThing1"/> <xsd:element ref="RequiredSimpleThing2"/>...
3
10,602
thread by: islay | last post Mar 2 '06 by: Tim P
Hello, I'm trying to print more than one page using the PrintDocument object. I set "e.HasMorePages = True" after completeing the first page in the "PrintDocument1_PrintPage" subroutine, and then "exit sub". When "PrintDocument1_PrintPage" is called for the second page, it skips to the code to print the second page and then returns,...
13
507
thread by: Khodr | last post Mar 2 '06 by: Khodr
Hello, I am using VS.NET 2003 and vb. I build my application MyApp and it generates MyApp.exe.config. So now MyApp.exe reads parameters from MyApp.exe.config. Great and no problem! I need to run the same program but with different configuration data. So I made a copy of MyApp.exe and MyApp.exe.config to put them in another folder and...
2
981
thread by: GMG | last post Mar 2 '06 by: Josh Twist
Is it possible to use FormAuthentication or do I have to manage my own cookies and if so a sample/URL would be greatly appreciated.
2
1,275
thread by: GMG | last post Mar 2 '06 by: Josh Twist
Is it possible to use FormAuthentication or do I have to manage my own cookies and if so a sample/URL would be greatly appreciated.
0
1,050
thread by: Filippo Bettinaglio | last post Mar 2 '06 by: Filippo Bettinaglio
Hi, I use VS2005 , C#, .net2.0 framework. I need to be able to position where I want the Items inside a listview. I tried the belowed code but the items are always align togheter i turn off also AutoArrange but it doesn't work.
3
1,530
thread by: darrel | last post Mar 2 '06 by: Virgil
Not sure how to ask this, but is there such a thing as a small standalone VB.net script application that will just execute functions for testing? For instance, maybe I'm working on a 10 line function and just want to test it independant of the entire web application and don't want to bother with having to add a bunch of response.writes to my...
1
989
thread by: SQLcat | last post Mar 2 '06 by: John Bailo
How can I code the below sSavename to give me a format like companyname.yyyymmdd.zip? sSource = "https://website.com/download/" + sSaveName sSaveName = ""
2
1,778
thread by: Chris Jones | last post Mar 2 '06 by: Chris Jones
I am using the old <iostream.h>. When I compile a simple test program that uses <iostream.h>, Visual C++ 7 gives me this strange error: Compiling... capp.cpp C:\Program Files\Microsoft Visual Studio .NET\Vc7\include\useoldio.h(29) : warning C4995: '_OLD_IOSTREAMS_ARE_DEPRECATED': name was marked as #pragma deprecated Linking......
9
1,861
thread by: MariusI | last post Mar 2 '06 by: Brian Gideon
Consider the following class layout public class Order { public ProductOrder AddProductOrder(/* variables required to create a product order */) { /* Check if the product order can be added to the order */ }
1
1,850
thread by: Lennart | last post Mar 2 '06 by: Lennart
Hi all, Maybe someone can help me with this: My C++ project contains try and catch blocks. A catch-all block triggers my custom message box with some information on the error caught. The stacktrace is written to a log file. While stepping through my application from within the IDE everything works fine. However, when i start my...
9
1,437
thread by: Rick | last post Mar 2 '06 by: Rick
Hi guys!! just one question, can i send pointers from VC++ 2005 to a vc++ 6.0 dll? if it is possible, how can i do this? does VS2005 have rules to send pointers? Regards.
3
1,030
thread by: Seok Bee | last post Mar 2 '06 by: Cor Ligthert [MVP]
Dear Experts, I would like to find out whether can I retrieve a string from the database and retain the format in the string to be show in a textbox control or append into a message's body to be sent out through email. For example, the string is as follow: -------------------------------------------- Dear all, Kindly be informed that we...
0
828
thread by: OLAP novice | last post Mar 2 '06 by: OLAP novice
Our administrator wants us to send login/password information to an Internet site that has been created for our company. The same login/password combination is used for a large group and he doesn't want us to have to go to the webpage and type in the information each time. He wants us to click on a link on our intranet page and it directly...
2
8,408
thread by: LundK | last post Mar 2 '06 by: LundK
Hello, today I read an Article on MSDN on how to create Word templates that use XML schemas. The Articel is called "Creating and Applying an XML Resume Template in Microsoft Office Word 2003" (http://msdn.microsoft.com/office/understanding/xmloffice/codesamples/default.aspx?pull=/library/en-us/odc_wd2003_ta/html/odc_wdxmlresumetemp.asp) The...
6
3,981
thread by: SQLcat | last post Mar 2 '06 by: SQLcat
I have a VBScript as follows: Dim xmlHTTP : Set xmlHTTP = CreateObject("Microsoft.XMLHTTP") Dim adoStream : Set adoStream = CreateObject("adodb.stream") Const bGetAsAsync = False ' wait for response Const adTypeBinary = 1 ' ado typelib constants Const adModeReadWrite = 3 Const adSaveCreateOverwrite = 2 Const ForReading = 1, ForWriting =...
24
17,490
thread by: Marcus Kwok | last post Mar 2 '06 by: Marcus Kwok
Hello, I am working on cleaning up some code that I inherited and was wondering if there is anything wrong with my function. I am fairly proficient in standard C++ but I am pretty new to the .NET managed C++. It seems to work fine, but everyone knows that programs with errors can still appear to "work fine" :) I am working with VS .NET...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.