Forum: C++ 14 Days Ago |
| Replies: 2 Views: 189 I think this requires more reasearch on my part.
-THanks |
Forum: C++ 14 Days Ago |
| Replies: 2 Views: 189 Hi,
when installing VS 2008 C++ application on a pc , does the pc need the .net framework?
-Thanks |
Forum: VB.NET 15 Days Ago |
| Replies: 5 Views: 388 |
Forum: VB.NET 18 Days Ago |
| Replies: 5 Views: 388 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... |
Forum: C# 20 Days Ago |
| Replies: 3 Views: 201 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# 20 Days Ago |
| Replies: 3 Views: 201 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# 20 Days Ago |
| Replies: 3 Views: 201 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++ Oct 2nd, 2009 |
| Replies: 1 Views: 341 I just found a similar topic on this forum
http://www.daniweb.com/forums/thread9717.html |
Forum: C++ Oct 2nd, 2009 |
| Replies: 1 Views: 341 Hi , I recently read this on another forum...
If I want to develop an application that has many "if statements" and many "loops" , that executes only on the client machine (no network/database... |
Forum: Computer Science Oct 1st, 2009 |
| Replies: 4 Views: 367 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... |
Forum: C# Sep 25th, 2009 |
| Replies: 9 Views: 295 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: 295 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: 125 It can be solved using Virtual Machine Software |
Forum: C# Sep 22nd, 2009 |
| Replies: 1 Views: 125 Windows:
98
2000
XP Home
Vista
Windows 7
-Thanks |
Forum: MS SQL Sep 21st, 2009 |
| Replies: 1 Views: 356 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... |
Forum: C# Sep 11th, 2009 |
| Replies: 4 Views: 250 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: 250 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: 250 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: 339 Hi , the code above worked to move a file to a hidden path:icon_mrgreen: |
Forum: C# Sep 7th, 2009 |
| Replies: 3 Views: 339 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: Shell Scripting Sep 7th, 2009 |
| Replies: 4 Views: 385 Hi ,
what I want to do is for a user to execute the script (assigning the task to someone else).
This needs to be done on demand |
Forum: C# Sep 7th, 2009 |
| Replies: 3 Views: 339 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: Shell Scripting Sep 7th, 2009 |
| Replies: 4 Views: 385 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).... |
Forum: VB.NET Aug 28th, 2009 |
| Replies: 15 Views: 735 Correction
"1.Pre check if control already exists on form(try clicking button twice!)" |
Forum: VB.NET Aug 28th, 2009 |
| Replies: 15 Views: 735 Hi , i've got the vb6 code to add a textbox control at runtime
Instructions after the code
Dim WithEvents ctlText As VB.TextBox
Private Sub Command1_Click()
' add a textbox
Set ctlText =... |
Forum: VB.NET Aug 28th, 2009 |
| Replies: 15 Views: 735 Hi, i asked a question but i think i forgot to post it (i saw it just after i posted this sorry!)
My q was whether you use VB6 and not VB.NET .
My other q was whether you add controls that do not... |
Forum: VB.NET Aug 28th, 2009 |
| Replies: 15 Views: 735 That code that you use ,
do you run it in VB 6 , and do you add controls that come from
third party(not the ones that already come in the environment) |
Forum: VB.NET Aug 26th, 2009 |
| Replies: 15 Views: 735 try this
you need a flow layout panel on your form
set the anchor so that it can expand in all directions
Public Sub AddTextBoxes(ByVal flPanel As FlowLayoutPanel, ByVal controlCount As... |
Forum: VB.NET Aug 26th, 2009 |
| Replies: 15 Views: 735 Another thing is , which you should search is whether you can do this via data binding!
I don't know data binding , i think if you search it you might find better option to this.
Here is code (it... |
Forum: VB.NET Aug 26th, 2009 |
| Replies: 15 Views: 735 I was creating a simple form where you create update delete records etc. . For every table chosen , there would be equal amount of controls as there are column for that SQL table.
To make it... |
Forum: VB.NET Aug 26th, 2009 |
| Replies: 15 Views: 735 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.
... |
Forum: C# Aug 25th, 2009 |
| Replies: 3 Views: 162 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: 162 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,051 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: 631 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: 366 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: 366 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: 366 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: 366 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: Cases, Fans and Power Supplies Apr 17th, 2009 |
| Replies: 3 Views: 492 I search internet, and the Quad I mentioned is the low range , maybe I will look at building a pc because I've done it before.
Thanks again |