Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
66% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
3 Commented Posts
Member Avatar for divin757

When I click the login button I never get any values posted to the server. I accept a AuthViewModel but it is always null. I have tried using @html.EditorFor but have not had any luck with it. **User Controller** [HttpGet] public ActionResult Password() { UserModel user = (UserModel)Session[Constants.SessionVars.Authenticate]; //error - …

Member Avatar for BMXDad
0
606
Member Avatar for divin757

I am trying to allow a page to print nicely if a user uses the built in browser print. However the page is too small in IE. The frustrating part is I have no way to debug the page as the css is only applied at the time of printing. …

Member Avatar for divin757
0
216
Member Avatar for guyinpv

Hi, after like 2 hours of searching the web I haven't found a solution for this. After spending 30 or 40 minutes trying to code it myself and not finding anything that works, it's time to ask here! Attached is an image of what I want. I have a certain …

Member Avatar for Philippe.Lahaie
0
304
Member Avatar for divin757

I want to have an iframe expand and center on the screen when a button is clicked. This would be similar to creating a lightbox for it but I dont want to have the content in the iframe reload. I have found solutions that can resize an element but it …

Member Avatar for drjohn
0
150
Member Avatar for divin757

Hi, I have a custom httphandler (HttpUploadHandler.ashx) which is used for handling requests from a file uploader. It collects all the files from a client then fires a thread to do some processing on the files. When large amounts of files are added it will throw 'Thread was being aborted' …

0
122
Member Avatar for divin757

I am having trouble debugging in sharepoint. It is acting like I am debugging a different dll than the one I made code for. When stepping through it will skip lines occasionally and randomly just stop debugging. Often it will start debugging then stop randomly and show any new breakpoints …

Member Avatar for divin757
0
187
Member Avatar for divin757

When I try to navigate to the service it shows me the methods like normal but when I try to see the wsdl I get a file not found error. I have created both the wsdl.aspx and the disco.aspx. They have been deployed into _vti_bin folder. I was able to …

Member Avatar for divin757
0
250
Member Avatar for vedro-compota

Guys hi there)) pleace tell me - Is this default attribute correct (it doesn't work in my costom control) - [CODE][Bindable(true), Category("BrushOptions"), Description("end color"), DefaultValue(typeof(Color), "White")] public Color EndColor { get { return endColor; } set { endColor = value; OnChangeProperties(); } }[/CODE] thanks in advance))

Member Avatar for shiva07
0
150
Member Avatar for divin757

First of all I do not want to start a argument about which is better the real thing or you you make yourself. I am trying to pick hardware for a mac box and I want to make sure the hardware will be compatible before I drop a bunch of …

Member Avatar for Ezzaral
-2
202
Member Avatar for divin757

i was sure this should be easy but here i am. i have a text file with information of the tones required to play the mario theme. i was needing to read line by line and break out the numbers and put them in a array. the problem is i …

Member Avatar for Xcelled194
0
122
Member Avatar for eoop.org

Hi, i made a class in a win form app in c#. I want to open the class/degbue it when someone presses button3. How do i do that?

Member Avatar for divin757
0
163
Member Avatar for manugm_1987

Hello everyone, Is it possible to use controls of other applications using c#? I mean for example i run realplayer music player or any other application. Now is it possible to access file menu or edit menu or tools of these application using c#. i.e on a button click i …

Member Avatar for Momerath
0
120
Member Avatar for niketakapoor

hello everyone!! i m new to c# and making project on c# window application.I learned a lot from daniweb but now i m stuck in one thing help me to resolve the problem. database table lib_book_details in which column are tag_id,book_name,author_name. Now i want to make a search form in …

Member Avatar for divin757
0
125
Member Avatar for divin757

I have an image for the background of the form I'm working on, but I had to increase the size of the form. Is it possible to have it scale the image instead of tiling? I could stretch it in photoshop but I was wondering if this was possible.

Member Avatar for lxXTaCoXxl
0
217
Member Avatar for Fortinbra

Anyone have any recommendations for a source or version control software for team development that isn't visual source safe(my boss hates it with passion). We're currently looking into Team Foundation Server 2010, I know it's the replacement for VSS, but my boss doesn't know that, yet... Any other recommendations that …

Member Avatar for divin757
0
302
Member Avatar for Jessurider

hey i've created a counting mechanism project............in the attached project there is two labels label1 & label2.........on pressing the numberpad1 and numberpad3 keys, the count increments and decrements simultaneously which is been displayed in the corresponding labels (see the attached project)........ can anyone tell me an another method to do …

Member Avatar for agugglez
0
165
Member Avatar for JudeV

How Can I Bounce the ball everytime it hits the wall??? [CODE] using GDIDrawer; using System.Drawing; int iX = 0; //x ball position int iY = 0; //y ball position int iXVelocity = 5; //amount ball moves in x direction for every loop int iYVelocity = 5; //amount ball moves …

Member Avatar for divin757
0
717
Member Avatar for stevanity

C# and VB.NET are very easy and very powerful languages to develop Windows applications. there are no fundamental advantages or disadvantages between then coz they both support every .net feature. But the point lies in the ease of use and the syntactical readability. I prefer C# more becoz it resembles …

Member Avatar for UsSy
-1
210
Member Avatar for danuz

Hi, I made one code which sorts numbers from the smallest to the biggest. Can anyone please write comments in my code what exactly an individual pseudo-code do ? I'm very confused about that pseudo-codes and don't exactly know what are arrays's functions in that code. The code is: [CODE]int …

Member Avatar for ddanbe
0
109
Member Avatar for TheDocterd

Hi All I have just one question.. I have an application, at the login screen I have a check box where the user can select if he/she is the default user on the computer he/she is using. What I would like to do is create a text file with the …

Member Avatar for TheDocterd
0
85
Member Avatar for sharkpit

this is the summary of program and i only include the addition of matrices my problem would be the variables in Addition class cannot read variables from the other class i need to know how to fix that the error would be : The name 'a' does not exist in …

Member Avatar for Mitja Bonca
0
122
Member Avatar for little.daffodil

Hello, I need to read from a text file. There are only 2 lines in the text file. And I need to read both, line by line as a string. After reading it, I want to use it (concatenate). For example, each line is represented as string1 and string2. I …

Member Avatar for little.daffodil
0
259
Member Avatar for tylerjgarland

I have an implementation question. I am trying to have a rectangle change color based on the position of four sliders. (Alpha, Red, Green, Blue) I am attempting to use a dependency property to combine all four values, convert them to a brush, and apply the brush to a rectangle. …

Member Avatar for tylerjgarland
0
366
Member Avatar for i.am.wolf

So, our group was assigned a project to calculate the GPA of a student. We are using visual Studios 2010. Anyway, all seems to be good but I just cant figure out how to link the out put the GPA to its corresponding boxes. If you scroll down to the …

Member Avatar for ddanbe
0
362
Member Avatar for arya6000

Hello I posted this in another forum but got no answer so hopefully someone here will be able to help. I'm trying to use a reportviewer in my windows form application and I can't find a way to add items to the reportviewer object. Can someone tell me how this …

Member Avatar for arya6000
0
79
Member Avatar for tiramisu10

I've tried everything I know ( and that's really little ) and read everything I found, but I still don't know what's wrong here... Short version... If I must write more details, please tell me I have small program with only one class. All it has to do is to …

Member Avatar for tiramisu10
0
107
Member Avatar for aminit

HellOoo : my questoin is like this , if I have a function [code] void hello(string hh){ hh=textbox1.text } [/code] if I want to take the value of hh from the function 'hello' , to use it in another function , it impossible to make this [code] void main() { …

Member Avatar for harrypalmerr
0
115
Member Avatar for VIeditorlover

Ok, the problem is this - plenty of code, many times called, probability of raising exception is about 1e-5. From many reasons is not possible to serialize params into string just for the case that exception would be raised. Is there possible to save *values* of params *generically* just from …

Member Avatar for divin757
0
93
Member Avatar for Klaurac

Hey I'm using this listview sorter [URL="http://www.java2s.com/Code/CSharp/GUI-Windows-Form/SortaListViewbyAnyColumn.htm"]http://www.java2s.com/Code/CSharp/GUI-Windows-Form/SortaListViewbyAnyColumn.htm[/URL] It works correctly only on 1st column, both ways, ascending and descending. When I click the next columns, it works the first time but when I click again it doesn't work. And the number sorting is off. Like 0 1 29 4 Could …

Member Avatar for divin757
0
103
Member Avatar for fobos

Good day all, well i have been searching the web and i cannot find an answer to my question. First off i dont know if i should post this here or in the Javascript section because i am a coldfusion user and didnt know if javascript does this. Second my …

Member Avatar for levine
0
109