Forum: C# 5 Days Ago |
| Replies: 1 Views: 143 I found the answer.Here it goes.
I have to edit the query in the Dataset Designer.
The original query is
SELECT dbo.t_USR_Users.*
FROM dbo.t_USR_Users
but then change it to |
Forum: C# 5 Days Ago |
| Replies: 1 Views: 143 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... |
Forum: C# Oct 20th, 2009 |
| Replies: 3 Views: 239 Problem is solved ,
I did the above , in runtime I had to change the connection string , and whichever fields of a row I did not set , then a default null was inserted.If the field was not nullable... |
Forum: C# Oct 20th, 2009 |
| Replies: 3 Views: 239 What i've done so far is to add a data source (i.e a dataset including only one table).
I am getting the intellisense , and am about to test inserting a record (I have not set non null fields). |
Forum: C# Oct 20th, 2009 |
| Replies: 3 Views: 239 Hi ,
I am busy converting a VB6 project to c#.
Now in vb6 , the columns have intellisense like so...
rsIBBSData!DrOrCr = 1 'rs is the recordset
But in c# , i would either have to create... |
Forum: C# Sep 25th, 2009 |
| Replies: 9 Views: 382 I'll try DoubleD's steps first to practice.
Thanks for advice
serkan sendur , if your solution is more flexible (which it seems) , then I'll do it that way. |
Forum: C# Sep 25th, 2009 |
| Replies: 9 Views: 382 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... |
Forum: C# Sep 22nd, 2009 |
| Replies: 1 Views: 146 It can be solved using Virtual Machine Software |
Forum: C# Sep 22nd, 2009 |
| Replies: 1 Views: 146 Windows:
98
2000
XP Home
Vista
Windows 7
-Thanks |
Forum: C# Sep 11th, 2009 |
| Replies: 4 Views: 261 Thanks for that , I did
It took me while to reply because , I was testing this.
I took the steps that you wrote , and then (on my other computer) I imported the settings created(the settings file... |
Forum: C# Sep 11th, 2009 |
| Replies: 4 Views: 261 Hi ,
if i create snippets , in which path/file are they stored because i could not find them in the C:\Program Files\Microsoft Visual Studio 9.0
folder. (I made search for .snippet file , but i... |
Forum: C# Sep 11th, 2009 |
| Replies: 4 Views: 261 Hi,
how can i export code snippets from VS 2008 that i created to a different computer.
-Thanks |
Forum: C# Sep 8th, 2009 |
| Replies: 3 Views: 358 Hi , the code above worked to move a file to a hidden path:icon_mrgreen: |
Forum: C# Sep 7th, 2009 |
| Replies: 3 Views: 358 Hi , the code that you use is right.
I will test it tomorrow , with an administrator's login details to see whether the code i execute would execute as it would if he/she is logged in.
I had an... |
Forum: C# Sep 7th, 2009 |
| Replies: 3 Views: 358 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... |
Forum: C# Aug 25th, 2009 |
| Replies: 3 Views: 172 Okay , so I should investigate subversion and trac.
To go into more detail , the developers work on a .net Solution and each one add(s) or works on a Project .
3 of the machines use VS2008 and... |
Forum: C# Aug 25th, 2009 |
| Replies: 3 Views: 172 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... |
Forum: C# Aug 24th, 2009 |
| Replies: 16 Views: 1,073 Hi , (don't know if good way but works)
what you can do is:
1.create a static variable for Form1
public partial class Form1 : Form
{
public static string selectedItemValue = "";
... |
Forum: C# Aug 21st, 2009 |
| Replies: 1 Views: 777 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... |
Forum: C# Aug 21st, 2009 |
| Replies: 5 Views: 405 Hi , problem was a logical error.
Code was executing in a for loop that would not terminate(forgot to increment a variable). |
Forum: C# Aug 18th, 2009 |
| Replies: 5 Views: 405 The code should not be problem because it works on my side.
It uses available paths
I will try to investigate the scenario(network), and try to see if permissions is an issue . Thanks - |
Forum: C# Aug 18th, 2009 |
| Replies: 5 Views: 405 File.Copy(fileListBox.SelectedItem.ToString(), Class1.GetElement(2, programSettings.FileTypeSettings[x].ToString(), '~') + datum + "\\" + Class1.GetFileNameOnly(fileListBox.SelectedItem.ToString()),... |
Forum: C# Aug 18th, 2009 |
| Replies: 5 Views: 405 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... |
Forum: C# Nov 15th, 2008 |
| Replies: 1 Views: 737 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 - |
Forum: C# Oct 16th, 2008 |
| Replies: 1 Views: 5,495 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... |
Forum: C# Oct 15th, 2008 |
| Replies: 0 Views: 1,536 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... |