Forum: HTML and CSS Oct 26th, 2009 |
| Replies: 1 Views: 379 I ended up having to get cute and use background-images in relative divs to get my needed end result. If anyone does know of a way to put a div of any position below a absolutely positioned div of... |
Forum: HTML and CSS Oct 26th, 2009 |
| Replies: 1 Views: 379 Okay so I'm building a site with a bit of an unusual and complex layout. It has a static header div of a fixed height. A body div of a variable height that must be positioned absolutely for... |
Forum: ASP.NET Oct 1st, 2009 |
| Replies: 3 Views: 266 Ya I read that IIS first has to upload the entire file before it can do anything and that's a big issue, but I know there has to be a way to make the process at least stable. I am realizing there is... |
Forum: ASP.NET Oct 1st, 2009 |
| Replies: 3 Views: 266 Ok so I have a web app that needs to a large file (up to 100mb) and then do some server side conversions. I have built a model that works locally, but now that I'm trying it on my vps its taking an... |
Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 1 Views: 330 After more searching, I believe I understand what my problem is. I am not inserting the meta data into the .flv. With that known, I'm not sure how to complete that part of the task. I have... |
Forum: ASP.NET Sep 22nd, 2009 |
| Replies: 1 Views: 330 I am currently developing a site that converts videos to a streaming format and plays these streaming videos. I am using ffmpeg as my conversion engine, and am encountering a couple issues.
1) I... |
Forum: ASP.NET Jun 6th, 2009 |
| Replies: 3 Views: 715 I really feel like i'm missing something here... Here's what I have
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
... |
Forum: ASP.NET Jun 6th, 2009 |
| Replies: 3 Views: 715 I have a multiline textbox on my form. It is filled on load with content from a database. The user then manipulates this data, and it needs to be updated on the database. I have everything working... |
Forum: C# Jun 5th, 2009 |
| Replies: 2 Views: 1,011 Okay so I have a multiline textbox that accepts user input and stores it in a database. I then have another form that queries for this field and displays it. Everything is working fine, except for... |
Forum: C# May 4th, 2009 |
| Replies: 1 Views: 638 I have a drop down list on my my aspx page. This box is populated from my sqlserver db. I want to allow people to search based on the value they select from the drop down list. The problem I am... |
Forum: C# Apr 10th, 2009 |
| Replies: 5 Views: 2,355 I think there is an easier way, but I cant figure it out right now. This could help you accomplish your goal.
http://www.codeproject.com/KB/cs/coreweb01.aspx |
Forum: C# Apr 9th, 2009 |
| Replies: 1 Views: 1,084 No more problem. Same code now is working, I am befuddled to how that could be but whatever... |
Forum: C# Apr 9th, 2009 |
| Replies: 1 Views: 1,084 Alright, so I have a datagridview that I'm populating with a datatable, and I have added a button column. Now I am trying to use this button's click event to open a new child form. I can't for the... |
Forum: C# Apr 8th, 2009 |
| Replies: 3 Views: 1,246 ya i was just throwing something together w/o showing all of my logic, but i really appreciate you pointing out the "string[] array = nlist.toarray()". I totally should have known this was possible.... |
Forum: C# Apr 8th, 2009 |
| Replies: 3 Views: 1,246 I have an application I'm building that requires the use of array.binarysearch() to find strings from a combobox in an array and return the index value of the selection. Ie. the user selects a name... |
Forum: C# Mar 21st, 2009 |
| Replies: 7 Views: 951 ddanbe thankyou for taking the time to respond to this thread multiple times, I really appreciate it.
I have now created a solution, using the rtf property and a string builder. In case anyone is... |
Forum: C# Mar 21st, 2009 |
| Replies: 9 Views: 4,960 i assume you are loading your combobox w/ data from a db, using ado.net. if so, then the way I would do this within your button click event...
1) query your db for a dataset that only contains... |
Forum: C# Mar 20th, 2009 |
| Replies: 7 Views: 951 I can not seem to figure a way out to dynamically add entries using the .rtf property. Please help me.
What I need is this; I need to be able to get a table into a richtextbox and be able to... |
Forum: C# Mar 19th, 2009 |
| Replies: 7 Views: 951 I've been playing with this for a few days now and have run into a new problem. I am using richtextboxes to print and saving as .rtf, using a technique/class library found here...
... |
Forum: C# Mar 17th, 2009 |
| Replies: 7 Views: 951 I have an application that accepts around 20 fields of data (string/int) from the user. Then allows the user to edit a dataset in a datagrid, and sort this dataset to display the updated dataset. ... |
Forum: C# Mar 16th, 2009 |
| Replies: 1 Views: 621 I hate myself, cloned datasets are only supposed to retain table structure. If anyone is interested in similar uses, simply swap the work Copy in the place of Clone and your data will also be... |
Forum: C# Mar 16th, 2009 |
| Replies: 1 Views: 621 I am trying to make an application that sorts a database with user input and returns a form. This form then accepts some user input, and then needs to be sorted in another event. I am using... |
Forum: C# Mar 4th, 2009 |
| Replies: 4 Views: 561 This looks promising from what a google result showed. thanks... |
Forum: C# Mar 3rd, 2009 |
| Replies: 4 Views: 561 sorry I wasn't clear enough. There are a two major areas where there is a great deal of slowdown with large iterations. Both of these iterations are writing a large number of entries to the... |
Forum: C# Mar 3rd, 2009 |
| Replies: 4 Views: 561 I currently have a pretty basic data application that I intend on adding a good deal of functionality. The application is a windows form app using a an access database connected through the oledb... |
Forum: C# Feb 17th, 2009 |
| Replies: 5 Views: 773 Alright so I got all this figured out I think. Here is what I did. Hopefully it will save someone some time if they need similar functionality. Also, if you see anything that I could improve on in... |
Forum: C# Feb 16th, 2009 |
| Replies: 5 Views: 773 I'm really banging my head against the wall on this one. The big leap for me is trying to figure out how to put the first query results into a form where they can be used by later queries.
I have... |
Forum: C# Feb 16th, 2009 |
| Replies: 5 Views: 773 The main reason I plan to use two queries is because when I use the SELECT TOP statement & SUM these results, I get the sum of all results fitting the query as opposed to the sum of only the number... |
Forum: C# Feb 15th, 2009 |
| Replies: 5 Views: 773 I have a small app im working on that allows users to input data into an access database. This data represents incoming and outgoing items. Currently, the user can input all incoming and outgoing... |
Forum: C# Feb 11th, 2009 |
| Replies: 7 Views: 393 okay so when i set a breakpoint above either of these arguments i get the same thing. It runs through once, like it should, writes the data to the table.
Then, it looks back at the argument,... |
Forum: C# Feb 11th, 2009 |
| Replies: 7 Views: 393 When I debug everything seems normal like it will work. When I enter values into the my text boxes and submit the info populates all of the tables as it is supposed to. It also populates this table... |
Forum: C# Feb 11th, 2009 |
| Replies: 7 Views: 393 I just tried this and it also doesn't work. Is it not possible to make the rows.add function repeat? if not, what can I do to create a number of entries based on user input?
... |
Forum: C# Feb 11th, 2009 |
| Replies: 7 Views: 393 I am trying to write a loop that will use the add.row function to add a number of rows that will be decided by user input. The button action submits info to a couple other tables also, and that... |
Forum: C# Feb 8th, 2009 |
| Replies: 5 Views: 432 Okay I probably need to be more specific. The major issue I'm struggling with right now, is how to get the data to display in the form I want it to.
I have tried the following methods so far:
... |
Forum: C# Feb 7th, 2009 |
| Replies: 5 Views: 432 I am clearly not planning on mixing db types. I was asking what is the preferred db when developing in c#. |
Forum: HTML and CSS Feb 7th, 2009 |
| Replies: 5 Views: 1,427 i would suggest using some css to control all of those properties, it will make your life so much easier.
your problem is caused by the cumulative width of your divs being too wide for your screen... |
Forum: HTML and CSS Feb 7th, 2009 |
| Replies: 5 Views: 504 if you really want to re-create an effect someone else created, the best way is to see exactly how they did it. if you want to create the same effect check their style sheet, it is locate here:
... |
Forum: C# Feb 6th, 2009 |
| Replies: 5 Views: 432 I am new to c# and would like if I could get some assistance in the design of an application. My experience in c# is limited to the month I've completed so far of a course at school. I have also... |