Search results for query: *

  • Users: cfisher440
  • Content: Threads
  • Order by date
  1. C

    Pulling data from a database to a datagrid

    I'm using VS 2003 I have a datagrid that I am trying to populate with data from an Access database. I am attempting to pull in data from a query I created within Access. Here is the code at my data tier Public Shared Function TestData() As DataSet Dim dsTestData As New DataSet...
  2. C

    Need to query weekly data

    I want to query weekly data. To be more specific, I am using MS Access for now, but planning on converting it to MS SQL Server 2005. We go by the 4-5-4 calendar as well. I have a table with a date column that has the format dd-mm-yy. I want to do queries based off the weekly data for each month...
  3. C

    How do was this project deployed??

    I have two projects One on my PC (local) One on the server (in production) I copied over the files from the server, double clicked the sln file to open the project on my PC for editing but recieve the following message. Web Access Failed The default Web access mode for this project is et...
  4. C

    Putting project in new directory

    My project right now is in a directory c:\inetpub\wwwroot\test\ops\requests It runs fine from there. I want to move it to c:\inetput\wwwroot\dev\ops\requests I made the new folder (virtual directory) and copied over the compiled project, but when I go to open the web page in the browser I...
  5. C

    install msde other drive

    Is there any way to install MSDE 2000 on a drive other than your system volume. I wan to install it on the D drive (my OS is on the C drive). MSDE automatically puts itself on the C drive. Does anybody know if you can install MSDE 2000 on the D drive?
  6. C

    Extract month num and week num from date

    If I have a date value in the format 11/03/2005 How would I extract the month value (11) & the week value (1) from the date?
  7. C

    Performance monitoring program

    I have two servers that talk to each other in using this IBM program. The user searches a databases and recieves a result set (from one server). When they pick a record from this result set and it grabs the associated image from the other server. The people that use this are changing to...
  8. C

    Performance monitoring

    This maybe more of a server related question, but I was wondering what the maximum number of applications running on a server should be? This is assuming the server is a descently sized up server (Win 2000 Server, 40 GB for applications, P4 processor, at least a GB of memory) That is kind of...
  9. C

    How would I create a series of arrays?

    How would I create a series of arrays (each one needs a different name) based off an integer value? Example. If the integer value is 3 then create arrays r1, r2, r3 as string() = new string() {} so if value is five then create r1, r2, r3, r4, and r5. How would I programmatically do this?
  10. C

    Help with a regular expression

    Say I have a line of text like this 11/12/06, 71,00589331,00200,00227755,00210,00058889,00017 I want to split this line up so that I have variables for all the values separated by commas. In other words I want 11/12/06 to have it's own variable, 71 to have its own variable, 00589331 to...
  11. C

    Crystal report based off an Excel spreadsheet

    I would greatly appreciate any help on this. I have an ASP .NET app which I would like to do some reporting with. I am basing the reports off of a couple excel spreadsheets. I want to duplicate the spreadsheets into Crystal Reports. That would include the format and all the calculations that...
  12. C

    Updating a program

    I have an ASP .NET application. It is a multi-page application. I want to make a change to the code in one of the pages. When I am doing making the changes can I just upload that one updated page and everything should work or do I have to re-deploy the whole project? Do I have to recompile the...
  13. C

    Deploying Project, Can't copy PDB file

    I'm using VS 2003. I'm using the copy project command to copy my project to the server. When I go to do this it copies over everything just fine except for the .pdb file. I recieve the error message "Unable to add 'c:\Inetpub\wwwroot\ops\WAITR\bin\WAITR.pdb' to the project. Service Unavailable...
  14. C

    Listbox values not reflecting db updates

    I have a program that populates values in a listbox from values stored in a database. When I make a change in the database (to add or remove something from the list) it does not show the updated values in the listbox. It's as if it is caching the values and keeping them there. I have to...
  15. C

    considerations when deploying

    This my first time deploying an app with a database to a server I have my application running on my PC locally. (http://localhost/program/program.aspx) Now I want to put it into production. it will be located at an address like http://www.cf.programs.com/ops/program.aspx . The program has a...
  16. C

    populating listbox

    I have two drop down boxes(ddlIssue and ddlSubIssue) ddlIssue populates data from table named issues. Issues table contains columns named issueid, issue, and subidvid ddlSubIssue populates data from table named subissues. subissues table contains columns named subissueid, subissue, and issuid...
  17. C

    automatic logout

    Upon logging onto my application, I want to create a timestamp for the user (say an hour). When the timestamp expires it logs them off the application and brings them back to the log in screen. Just wondering what a good method of doing this would be.
  18. C

    convertings VB .NET to ASP .NET

    I saw this cool post on the site about converting VB .NET apps to ASP .NET http://www.vbdotnetforums.com/showthread.php?t=12314 In the article they take a windows control library and use that in the html page. I have a Windows application (actually I have a few). How would I do what they are...
  19. C

    Runs on my PC from different PC. How did they do it?

    I have an ASP .NET app on my PC that when I run it, it runs off of another PC. So instead of it running of my PC (http://localhost/app/tests) it runs on http://ft453423:/app/index.htm How do you set this up??? In the code? In the IIS settings?
  20. C

    can't use "=" sign in asp.net

    I am basically converting a VB .NET app to an ASP .NET app I have three listboxes. Selecting one item from on list box, will populate another listbox with items. Example - listbox 1 has values Car and boat. If you select car, the next list box has items "Ford" and "Honda" In VB.net the code...
Back
Top