Topics
-
-
- Leaders
- 1 reply
- 794 views
when the control in the form is clicked, the does not bring the form in the front. Only if the title bar is clicked, the form is brought at the front any ideas what could be the problem.
Last reply by snarfblam,
-
-
- 0 replies
- 959 views
We are about to go into production on our SQL Server 2005 database, we would like to hide all our stored procedures from our Clients eyes. Do you know of a way to apply "WITH ENCRYPTION AS" to all the stored procedures in a database without opening each one individually, or to setup a script to do this? Finally, I understand that this method can easily be reversed, by doing a simple procedure. We have used the .NET 2.0 DLL feature for a few of our procs but, we are unsure what method to use. Any recommendations? many thanks
Last reply by jch001, -
- 1 reply
- 6.9k views
I created a config with the location of my xml file: <add key="positionXML" value = "C:temp\PositionMsg.xml" /> When I try to load the xml file into my C# code, I am doing the following: XmlDocument objDoc=new XmlDocument(); objDoc.LoadXml(ConfigurationSettings.AppSettings["positionXML"]); What should I do to load the XML file and get the data elements in the XML? TIA.
Last reply by LostProgrammer, -
-
- Leaders
- 5 replies
- 1.5k views
Can someone point me to a solution for copying files accross two volumes? I am using the code below. You can see the iterations I tried. foreach (DirectoryInfo diNext in dirs) { if (diNext.LastWriteTime < cutOffDate) { //dinext.Move(fromPath + diNext.Name, toPath + diNext.Name); //diNext.MoveTo(toPath + diNext.Name); Directory.Move(fromPath + diNext.Name, toPath + diNext.Name); } }
Last reply by mskeel, -
-
- 1 reply
- 1.8k views
I have this page which contains a "main" image and 3 detail shots http://www.florencefashions.com/product.aspx?product=23 When a detail shot is clicked then the main image changes to that one, i've just done this simply in the click event of the image control. The client wants it where the page doesnt jump to the top when its clicked, i.e. they want to avoid the postback. Can I do this in Javascript, if so any help appreciated as I have zero experience with JS! Thanks
Last reply by MrPaul, -
-
- Administrators
- 5 replies
- 1.8k views
Hi, I'm relatively new to .NET and am developing an Application for Windows Vista. I'm running into a couple of issues with the Application when it's trying to do 2 things - Copy a file, or Set a Registry Key Value. When I'm running VS2005 both these 2 functions work no problem, but I would assume that this is because I run VS2005 as an Administrator. My Application won't be able to run as an Administrator I don't think, because I will be running the Application from boot up as a shell. For the file copy, I'm using a straightforward File.Copy, e.g.: Dim strPathFrom As String = "C:\FolderName\Filename.txt" Dim strPathTo As String = "C:\Filename.txt" File.Copy(strP…
Last reply by PlausiblyDamp,
-
-
-
- Leaders
- Administrators
- 5 replies
- 1.3k views
Hello everyone:) I found this great sample from MSDN: Imports System Imports System.ComponentModel Imports System.Threading Imports System.Windows.Forms Public Class Form1 Delegate Sub SetTextCallback(ByVal [text] As String) Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim thRead As New Thread(New ParameterizedThreadStart(AddressOf myThread)) thRead.Start() End Sub Private Sub myThread(ByVal o As Object) Me.SetText("a") End Sub Private Sub SetText(ByVal [text] As String) If Me.TextBox1.InvokeRequired Then Dim d As New SetTextCallback(AddressOf SetTex…
Last reply by snarfblam,
-
-
- 1 reply
- 1k views
I have 4 buttons on a page, when I click on two of the buttons, they react as per normal i.e. they go off do the relevant tasks. However, the other two buttons require that you click them either 2 or 3 times in order for them to proceed. Here is the code for one of the offending buttons: Protected Sub btnRetrieveData_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnRetrieveData.Click RetrieveData() End Sub Any suggestions? Mike55.
Last reply by kahlua001, -
- 0 replies
- 983 views
I have a problem I cant figure out. any help is appreciated! I have a datalist whose's datasource is a custom type. In this type is a public member that is a generic list. So in the ItemDataBound event I have. PostType Post = ((PostUserBookmarkType)e.Item.DataItem).Post; lnkName.Text = Post.Name; Now, the problem is that I am taking the datalist's item template and loading from a usercontrol. So now, the ItemDataBound doesnt work becuase its outside of a datalist, so I've read that I need to cast the Dataitem to a DataListItem like so.. <%# DataBinder.Eval(((DataListItem)Container).DataItem, "FirstName") %> I've tried different variations to c…
Last reply by kahlua001, -
- 1 reply
- 1.8k views
Hi Can anyone recommend a good OO Design book based on .net, in particular one that focuses on web development. My reasoning behind seeking such a books is that I really, really want to improve the quality of the software that I write. I am preparing to begin using TDD as one approach to improving the quality, but I believe that if I can improve the design of my programs, this will have the desired effect. Alternatively, I would be delighted to hear of any other book titles that could help with improving the quality of my software. Mike55.
Last reply by mskeel, -
- 2 replies
- 1.1k views
Hi, I'm currently in the investigation and planning phase of an application, and have kind of hit a stumbling block over which technology to use for a certain piece of the Application - Web Forms or Win Forms. The piece in question will authenticate a User during logon to a central server, and display some screens allowing them update their details etc on the central server. The application will be a client piece on a User's desktop (which could possibly be browser based), which connects over a LAN to a server machine. Regarding the User's local machine - the only thing running will be my application - the User will be locked out of running any other applications…
Last reply by travisowens, -
- 0 replies
- 856 views
IN a dynamically (via SQL) generated survey I need to enforce a minimum on some checkbox questions. So let's say I have 10 colors and you need to "pick at least 2". Let's assume I have 3 of these questions in my survey. Ideally, I would like the submit button onclick fire off an alert to tell the user that questions 1, 2, 3 need addressing if they don't have the minimum. I already have a CSS class that toggles to give a visual cue that the question isn't valid, but now I need to actually enforce it. (PS: server side isn't important now) The only way I can think of doing this is to create a 3x4 array that contains (question#, checkbox name, number of checkboxes, …
Last reply by travisowens, -
- 6 replies
- 1.7k views
I created a simple new Windows Form project in VS2005 Sp1 (C#), and all the form does is have a button that opens a VB6 COM object, which also has a form. The problem is, when I move the top VB6 form around and over the .NET form, the button on the .NET form disappears and doesn't come back. I will post a series of screenshots to demonstrate. Once I close the VB6 form, then the button returns. Any ideas? I am new to .NET forms programming - hopefully its something simple. Thanks.
Last reply by lonewolf32, -
-
- *Experts*
- 3 replies
- 5.1k views
Hi Group, I am facing a strange problem here: I am trying to read xml response from a servlet using XmlTextWriter. I am able to read the read half of the xml and suddenly an exception: “Unexpected end of file while parsing Name has occurred” is being thrown. Following is the part o xml I am trying to read: <CHECK_ITEM_OUT> <ITEM id=""> <!-- id = [material] --> <ITM_NUMBER>1</ITM_NUMBER> <MATERIAL>001</MATERIAL> <DEALER_CODE>DEL_One</DEALER_CODE> <BRAND>Bridgestone</BRAND> <HIERARCHY>HAR001</HIERARCHY> <NET_PRICE>123.12</NET_PRICE> <CURRENCY>EURO</…
Last reply by anup_daware, -
-
-
- Leaders
- 2 replies
- 1.6k views
I'm looking for a way to intercept the Windows Print Dialog no matter what program calls it. I want to create a dialog that asks for a project number first and then calls the Windows Print Dialog. I want to create a billing log that will record a project number every time any program attempts to print. The first step is to intercept the Windows Print Dialog. Can anyone help? Thanks.
Last reply by snarfblam,
-
-
-
- *Experts*
- 1 reply
- 2.4k views
hi i think datetime picker of vs.net 2005 does not support shamsi calendar. so is there any replacement?
Last reply by Nerseus,
-
-
-
- *Experts*
- 4 replies
- 3.5k views
I want to import a text file into a SQL Server table using a vb.net windows application. I have used the open file dialog box to select the text file, and have that file displayed in a text box, via a button click. Has anybody done this ? I would sure like to see a code example, thank you, lauriemc
Last reply by lauriemc, -
-
- 3 replies
- 1.9k views
Doing line breaks on Crystal Reports.... I have a long string with line breaks on a multi text box that needs to be printed throught Crystal reports. The problem is that Crystal Reports simply ignores all line breaks and joins all text in a row. How can I walk around this?
Last reply by EFileTahi-A, -
- 1 reply
- 1.9k views
Hi, I am a C# developer that has to make some code in managed C++. I have to work with HashTable, but I can´t find ways to access items. I would like something like this in C++: C# Hashtable myTable = new HashTable(); myTable.Add("Add1", "Test"); myTable.Add("Add2", "Test2"); string test = myTable["Add1"].ToString(); C++ Hashtable *myTable = new HashTable(); myTable->Add("Add1", "Test"); myTable->Add("Add2", "Test2"); ????????????????????????????????? Thanks in advance.
Last reply by MrPaul, -
-
- *Experts*
- 2 replies
- 1.6k views
Hello, There is any way to avoid someone to use our .Net assemblies in other project via "Add reference..." ??? Thans in advance, Teixeira
Last reply by teixeira, -
-
Who's Online 0 Members, 0 Anonymous, 73 Guests (See full list)
- There are no registered users currently online