- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 2
25 Posted Topics
I downloaded a project made in an old version of VStudio, either 2003 or earlier version. Anyway this is what the app looks like in the development environment(I upgraded to VS 2008) [url]http://img89.imageshack.us/i/devvn.jpg/[/url] and this is what the app looks like when I run it [url]http://img251.imageshack.us/i/runn.jpg/[/url] One can see the … | |
Re: I've done something where I created amount of controls accorrding to specified table's columns. Where you draw a textbox for a text/varcharfield and a datetimepicker for a datetime column type. What i did was add controls to a FlowLayoutPanel , it takes care of spacing the controls . Tell me … | |
Hi , I use windows XP SP3. When I create new folder , it does not appear immediately , I have to press F5 so the screen refreshes and then can I see it (this applies to folder creation,renaming or deleting). How can I fix this? As a side note … | |
I've added a dataset , and a table adapter to my C# project. In this query , I get table data , then filter , then I will iterate and fill a listbox.(The dataset and tableadapter was added via DataSources boxes) [CODE=CSHARP] listBox1.Items.Clear(); ETPDataset.t_USR_UsersDataTable tbl = (new ETPDataset.t_USR_UsersDataTable()); ETPDatasetTableAdapters.t_USR_UsersTableAdapter tblAdap … | |
Hi, when installing VS 2008 C++ application on a pc , does the pc need the .net framework? -Thanks | |
Hi , i there is VB 6 app that our client has which must be converted to VB.NET/C# . The application is a database application and application logic is stored in VB6 code and about 8 stored procedures. There is a Test environment and there is a Production environment which … | |
Hi , I am busy converting a VB6 project to c#. Now in vb6 , the columns have intellisense like so... [code=VB] rsIBBSData!DrOrCr = 1 'rs is the recordset [/code] But in c# , i would either have to create an sql query , or use datarow with a column … | |
Hi , I am a software developer in .net . My problem is that after I develop an application , I have problems understanding the code quickly whenever I need to go back to it after some time. Right now I am converting a data-app from VB6 to c# . … | |
Hi , I recently read this on another forum... [Quote] C/C++ are still standards for writing fast, standalone software, so you'll be wanting to work your way there. [/Quote] If I want to develop an application that has many "if statements" and many "loops" , that executes only on the … | |
Hi , i use Visual Studio 2008 . I know hot to set up a simple install program (.msi) I would like to know how can I integrate more steps(forms) into the installer. I want to include steps in the installer where you can install a program , or update … | |
Windows: 98 2000 XP Home Vista Windows 7 -Thanks | |
Hi, recently i needed to query a table , however i was denied "Select " permissions (because permissions had not yet been exported as the db was). Should my application enable for administrator to grant permissions , if that error occurs OR should permission granting be done through MS SQL … | |
Hi, how can i export code snippets from VS 2008 that i created to a different computer. -Thanks | |
Hi, we are running a windows server 2003 os on our network. The application i develop needs to be able to move files to folder that the user running the app can't access. The application already stores the user details of the administrator , how can i use those details(username,password … | |
Hi, i hope I'm posting about right topic. I need to be able to move file(s) from a directory to another directory which the user does not have access to(i.e. they can't view/access the folder). Can this be done with scripts? The environment is a windows server 2003 network. -Thanks | |
Hi, what is good source code management system for .net developers. Our scenario is that we're 4 developers , working on pcs that are on a network that we don't control. Some network drives get cleared every night !! Is there way that a Master software app(on one dev's machine) … | |
Re: Hi , (don't know if good way but works) what you can do is: 1.create a static variable for Form1 [code=csharp] public partial class Form1 : Form { public static string selectedItemValue = ""; } [/code] 2. In form sp , when you click on a listbox item write this … | |
Hi, i generate a pdf file from C#(VS2005) via the ReportViewer control .The pdf has a picture and text. How can i prevent a user to be able to copy text/images from that file. Here is code i use to create pdf file. [code=csharp] private void CreatePDFfromTXT(string textFile, string pdfFile, … | |
Language : C# (Visual studio 2005) Hi , i have problem I use File.Copy to copy from Local HDD to network HDD . THe app on my side works , but on client's side , that operation hangs. So , when program should start copying , the client just gets … | |
Please help me decide what is better now and 2 years down the line. 1.(Cheaper PC) Intel Core2 Duo 2.8Ghz E7400(3MB) CPU 2GB DDR2 RAM 250GB SATA II -7200RPM HDD Midi Tower Case DVD Writer +/_ ( 22x) DL (8.5GB) Onboard sound w/ speakers 17" LG LCD Monitor Optical Mouse … | |
Hi,(i post about wpf here because didn't find dedicated forum) I don't know WPF or asp.net . I do know c# well. Should i learn WPF or ASP.NET to make an intranet web application which users don't need to install (except .NET Framework 3/3.5 for wpf). If i use wpf(and … | |
Hi , what are the steps to make a .net application launch automatically when the computer is booted.I am working with c# , so a solution in VS 2003/5/8 or links would help. Thanks - | |
Hi, I have a DataTable object , filled with rows from an excel spread. The DataTable object has 12 columns , and I need to perform this query in C# since the outputted table will not be used in SQL but saved to Excel Sheet. string stringQuery = "Select <colName1>,<colName2>,<sum(colName7) … | |
Hi, I read an excel sheet into a datagrid.From there , I have managed to read the grid's rows into a DataTable object.The DataTable object has data because when I make equal a grid's datasource to that table object , the grid is populated. My Problem : I want to … |
The End.