Forum: ASP.NET Jun 18th, 2009 |
| Replies: 3 Views: 906 |
Forum: ASP.NET Jun 17th, 2009 |
| Replies: 3 Views: 906 Hello,
My problem is :
I have a .aspx page where I use a ScriptManager and a UpdatePanel.
In the update panel I generate controls based on user interactions.
My problem is this : when I add... |
Forum: C# Mar 12th, 2009 |
| Replies: 4 Views: 572 you could just run the .exe that it's in the Debug folder after each build. |
Forum: C# Mar 9th, 2009 |
| Replies: 1 Views: 819 The version is set by the AssemblyFileVersion property { or attribute, call it as you like }, you create a new CodeAttribute and add to the AssemblyFileVersionAttribute a new argument in which you... |
Forum: C# Mar 9th, 2009 |
| Replies: 2 Views: 1,548 it should be done with return or output parameter direction depending on you stored procedure.
in case it's a return value;
SqlParameter outParameter = new SqlParameter("quotenum",... |
Forum: C# Mar 6th, 2009 |
| Replies: 2 Views: 724 in your case the algorithm there is a very simple but time consuming loop,
if the structure is in order from 1,2,3....n..n+1 and the parent task always refers to a parent with parentID <... |
Forum: C# Mar 5th, 2009 |
| Replies: 1 Views: 1,845 do you want to protect the data with the password for the same user or for different users ?
because there it's a difference :
For different users the windows keeps it's own User Access... |
Forum: C# Mar 5th, 2009 |
| Replies: 1 Views: 812 Hello, try this link :
http://www.lumisoft.ee/lsWWW/ENG/Products/Mail_Server/mail_index_eng.aspx?type=download
you can find there all the samples you need to start your own work. |
Forum: C# Jan 16th, 2009 |
| Replies: 15 Views: 826 In this case you have to ask the admin for help, unless you have full acces to the server. |
Forum: C# Jan 16th, 2009 |
| Replies: 17 Views: 1,802 can it be this simple ? :
change this :
// Calling recurse child method
recureseChild(ParentNode, root + "/" + ParentDir);
in this : |
Forum: C# Jan 16th, 2009 |
| Replies: 17 Views: 1,802 Are you sure you are getting the new directory child's at every pass ?
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(root));
reqFTP.UseBinary = true;
reqFTP.Credentials = new... |
Forum: C# Jan 16th, 2009 |
| Replies: 17 Views: 1,802 When you get the exception what's the value of ChildDir and root ? |
Forum: C# Jan 16th, 2009 |
| Replies: 3 Views: 277 First off, you are doing it wrong, read about arrays and list.
You have this class { notice i added a constructor }
class Citizen
{
private string name;
private int age; |
Forum: C# Jan 16th, 2009 |
| Replies: 2 Views: 629 RTF controls only accept RTF formated text or plain text.So you have to save the .doc file as .rtf file with the save-as option and then load it the control. That should do the trick. |
Forum: C# Jan 16th, 2009 |
| Replies: 15 Views: 826 There are many things that could be wrong,most of them have to do with the IIS configuration. Maybe the virtual directory is not set-up for your application.
But my money is on the web.Config you... |
Forum: C# Jan 13th, 2009 |
| Replies: 4 Views: 936 public class SomeClass
{
static uint m_somenum;
public static uint SomeNum
{
get { return m_somenum; }
set { m_somenum=value; }
}
} |
Forum: C# Oct 15th, 2008 |
| Replies: 7 Views: 5,060 use something like : System.IO.File.AppendAllText |
Forum: C# Sep 15th, 2008 |
| Replies: 1 Views: 1,158 show some code.. so we can see what is going on there.. |
Forum: C# Sep 15th, 2008 |
| Replies: 6 Views: 1,122 |
Forum: C# Sep 15th, 2008 |
| Replies: 3 Views: 433 I worked on a simmilar project about a year ago .. i can tell you some pointers... the code was in vb6 the main problems where with interval a person could sign-in and sign-out, our solution was a... |
Forum: C# Sep 15th, 2008 |
| Replies: 4 Views: 1,502 i diden't test the code .. but one thing that i see of the top is the use of bitmap in the width , height of the screen. So just stop for a second and think about it.. 1280 x 800, that's my screen... |
Forum: C# Sep 15th, 2008 |
| Replies: 3 Views: 420 ROFL ! :icon_cheesygrin: You sir are a winner ! |
Forum: C# Sep 1st, 2008 |
| Replies: 2 Views: 1,023 hello,
Can you write more about the exception ? line number .. reason error ? variable that gives the error.. so we know what are we looking for ? |
Forum: C# Aug 29th, 2008 |
| Replies: 44 Views: 6,752 this is for the collumn with the visible set to false ... it will work .. ;) ..
i have to go now will reply later... |
Forum: C# Aug 29th, 2008 |
| Replies: 44 Views: 6,752 the event will be triggered when you change the focus from the datagrid to another object , be it a other window tab or something else... like pushing a button .. so then all the changes you make are... |
Forum: C# Aug 29th, 2008 |
| Replies: 44 Views: 6,752 I did not read the others reply so ... don't be harsh if someone already sugested this or pointed you in a difrent part ..
the problem is that you don't save the file after edit.. a simple and... |
Forum: C# Aug 29th, 2008 |
| Replies: 4 Views: 1,216 as far as i understand your question is : how you insert a object in a audio frame at runtime ?
could you post some code on how the audio frame looks , or how is the data formated ? in a byte... |
Forum: C# Aug 29th, 2008 |
| Replies: 3 Views: 386 |
Forum: C# Aug 29th, 2008 |
| Replies: 17 Views: 5,942 uh.. a sorry then for the late post.. work keeped me busy. |
Forum: C# Aug 28th, 2008 |
| Replies: 7 Views: 2,175 the problem is that asRate is declared in the click event of the button, declare it as public or as a property of the Form and then you cand acces it ...
so where you have
public partial class... |
Forum: C# Aug 28th, 2008 |
| Replies: 17 Views: 5,942 Ok, so why not create overload methods, one for srvr.Start() and one for srvr.Stop() ?
I'm sorry but i still can't see , looking at the code so far, why it will not work :?: . so let's say... |
Forum: C# Aug 27th, 2008 |
| Replies: 17 Views: 5,942 The class Notify_Icon can't acces "srvr" because it is not declared outside the main function, try to add the Server as a parameter in the Notify_Icon constructor like
class Notify_Icon
{
... |
Forum: C# Aug 27th, 2008 |
| Replies: 1 Views: 1,011 There is something called a TrackBar .. why are you using a progress bar ? |