Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: SeaweedOPM
  • Content: Threads
  • Order by date
  1. SeaweedOPM

    How do I Redirect to w/ a diff Target? (NOT HYPERLINK)

    I must have read a couple dozen posts all asking the same question none having the right answer. Basically, when the page loads i'd like a response.redirect(url) to fire but I want it to open w/ a target of _search. This would be a great alternative to an actual frame page for what i'm doing. I...
  2. SeaweedOPM

    How do I... Perfect Install IIS, .net, VS2k5 & SQL server

    I must have been through the install process 100 times on multiple computers. Yes I have gotten it to work almost everytime on different levels. I need everything to flow together perfectly. I need to set this up on 3 more or less identical 2003 servers. Right now if I install Visual Studio...
  3. SeaweedOPM

    xml stream to dataset

    I'm trying to get the xml returned from an http query request into a dataset. It works with this: Dim path As String = "http://www.telcodata.us/query/queryexchangexml.html?npa=248&nxx=455" Dim ds As New DataSet ds.ReadXml(path) GridView1.DataSource = ds...
  4. SeaweedOPM

    http xml output into a dataset VS2005 beta 1 or 2

    I'm trying to get the xml returned from an http query request into a dataset. It works with this: Dim path As String = "http://www.telcodata.us/query/queryexchangexml.html?npa=248&nxx=455" Dim ds As New DataSet ds.ReadXml(path) GridView1.DataSource = ds...
  5. SeaweedOPM

    Modules in a .mde file

    My past co'worker had written some macros for a database we use for billing. It takes our bill which is a complete mess and finds key characters then pulls out the actual data into the database. The thing is that he just left and when I try to get into the modules in the visual basic editor it...
  6. SeaweedOPM

    hyperlink Target _search

    I'm using Visual Studio 2k5 and fooling around with my sql server. Anyways I have a main page that you can select a record and after selecting it loads about 5 related tables for editing. What my question is that I was messing around with a neat way to creat a base record if it wasn't listed in...
  7. SeaweedOPM

    Saving website source code by code.

    I'm using a web site that produces xml output. The thing is that on the actual displayed page it has hyphens that corupt the xml. I can view source, select all and copy-paste into an xml file (or just save as and rename to xml). What would be nice is some vb code or vba or anything that would...
  8. SeaweedOPM

    SELECT for each .... statement (Auto Columns)

    This would be a simple report with Crystal Reports but I'm using web matrix. I am using a datagrid to list employee errors. For a master summery page i really want all the employees listed vertically and for columns i want to list the error type. Then the actually contents will be the counts...
  9. SeaweedOPM

    Undo sql database changes

    I'm using web matrix for this one. The easiest way to explay is that i have three tables in a database being used. If i had the ability to have a multi column list box then i could do everything i want. Basically any additions to the database (for the current session) i want added into the...
  10. SeaweedOPM

    Excel multiply 1 number by different rates.

    I know this has to be something simple, it is similar to compounding. I have one number lets say 13,000 and want to multiply the first 5,000 by .6 the next 2,000 by .5 the next 2,000 by .3 and so on. What is the formula for what I want to do?
  11. SeaweedOPM

    Certification Claim

    I have a friend who has a friend who works for a company. Recently the company had a job opening for a graphic design position. Before the job was posted it was filled. The applicants resume consists of about 25 web sites that were all clearly downloaded from a web template company. Also as far...
  12. SeaweedOPM

    Two identical tables, need button on form to switch between them

    I have two tables that are almost identical. The thing is that I want to use one form with a button or dropdown list to change the forms underlying table. All of the columns are named the same. Basically it was created this way because one table contains around 2,000 records of potential...
  13. SeaweedOPM

    Automatic chart for each day

    My question is that I need to know how to have one sheet grab data from multiple sheets. I can do this very simply if it were only for a few days. The thing is that each day there is a seperate file created containing the information that i need. I created some vba code that takes the date that...
  14. SeaweedOPM

    How do I use textbox's instead of datagrids?

    ***NOTE This is an application not a web form**** Long story short, I have a form that has an imbeded Excel sheet to perform calcs. What I want to do is be able to type info into the box, have it run through the calcs, then on seperate form display results after calculations(within other...
  15. SeaweedOPM

    Office web components 11 in vb 2005

    Please i have spent all day trying to find out how to select a different sheet. I can do anything with a cell AxSpreadsheet1.Cells(6,3) = 345.43 AxSpreadsheet1.Cells(4,2) = texbox1.Text Everything with the current sheet is perfect but aside from the fact it places info into whatever the...
  16. SeaweedOPM

    How do I run an sql statement in visual basic 2005

    In access 2003 I was using: DoCmd.RunSQL "statement here" or setting the statement to a String SQL and: DoCmd.RunSQL SQL The only thing I have found in Visual Basic 2005 is the SqlCommand. I'm just not sure how to use it to run an actual statement. This is probably an easy fix, please help.
  17. SeaweedOPM

    Auto Generate Database

    I basically have a program with four text fields. When they have data in them and are submitted. I would like the values to create fields in a table in a new database and I would like the database to be saved in the same directory as the .exe file. One of the text boxes are labeled "TextBox1"...
  18. SeaweedOPM

    2 Button Questions

    I have a button on my form that I want to first insert the current date into the table "callData" and the column is "SaleDate". After this I want to export just the current record into an excel file. (This would be a plus) if the excell file could be one single file and, if multiple sales were...
  19. SeaweedOPM

    Pull up last viewed or edited form

    I have a form that pulls data from one table that contains about 20000+ records. When I enter the form it always starts me at 1. it would be nice if it could put me where i left off. Or any other way. I was thinking about putting a check button and adding a whole column in the table that was...
  20. SeaweedOPM

    Basic button question.

    This is a basic question but the forum search is down. I want a button on my form to, when clicked, will write in the "SalesData" table under the column "SalesDate" the current date. I think it has something to do with Now(). But I want the info to be recorded in the table for that day and not...

Part and Inventory Search

Back
Top