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 SkipVought 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: *

  1. zzfive03

    Get controls from another page

    Ok, great, it works!! Thank you.
  2. zzfive03

    Get controls from another page

    The issue I am having is I cant seem to get a handel on the Page2 object from Page1. Though they are both in the same namespace... PAGE1.CS: namespace Pages { public partial class demo : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { }...
  3. zzfive03

    Get controls from another page

    The idea is this: Page1 would be an admin page, from which, you have a pulldown of each page on the web site (hard coded list). When you select a page, i want to have a list of all controls for that page dynamicly load, with ENABLE and VISIBLE checkboxes next to them. There by , allowing an...
  4. zzfive03

    Get controls from another page

    I have been researching this forever and can not figure it out.. I have page1.aspx and page2.aspx Page 2 has some text box controls on it, and i have created public properties to access thoes controls. What I want to do, is have page 1 get access the object of page 2, and loop the public...
  5. zzfive03

    OpenDataSource excel

    Fixed, it, Looks like the first few lines had image objects and it was messing something up. I wrote a query as so: select * FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;DATABASE=c:\Sample.xls', 'Select * from [aco$A6:Z64000]') and selected the range I wanted, and now it works. MH
  6. zzfive03

    OpenDataSource excel

    iBe, thank you, I tryed that but i still get the same thing. I even tryed casting to binary, and the fields are simply NULL. Its weird, like theres something wrong with my Excel file, because if I create a new xls, it works ok, but when i copy the cells out of this one, into my new working...
  7. zzfive03

    OpenDataSource excel

    I have this query: SELECT * FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0', 'Data Source="c:\Sample.xls"; Extended properties=Excel 8.0')...aco$ It spits everthhing out just fine, EXCEPT.. it has NULL for all numbers and dates (Any non alpha character), is there anythign i can do to my...
  8. zzfive03

    Parse Data in SQL

    I got it working... very tough.. but here it is in case someone else wants it.. DECLARE --@ID int @Member varchar(255) -- ,@EmailAddress varchar(255) declare @separator_position1 int declare @separator_position2 int declare @separator_position3 int...
  9. zzfive03

    OpenRowset "Data cutoff"

    Hum, when I type that, i just get a lot of NULL'S. I will try expanding my query options.
  10. zzfive03

    Parse Data in SQL

    Please note, the example string i gave, is actluay a single row (it looks like 4 rows in the display above, but its all 1 row).. MH
  11. zzfive03

    Parse Data in SQL

    Does anyone have a suggestion on how to parse a recordset of strings that look like this: CN=Chris Schoop,OU=Facilities,OU=Bldg 163,OU=HLC NEW,OU=HLC,DC=AD,DC=homeloancenter,DC=com;CN=Obdulia Kerr,OU=Facilities,OU=Bldg 163,OU=HLC NEW,OU=HLC,DC=AD,DC=homeloancenter,DC=com;CN=Susan...
  12. zzfive03

    OpenRowset "Data cutoff"

    Hello, I have a query that selects out of a csv file (exported from Active Directory). My query appears to "cutoff" the results of one of my fields after 255 characters. Is there a way to extend the field so I can get the entire result set? Here is a code snip of my query: SELECT * into #Temp...
  13. zzfive03

    IP Address on XP

    yes, i didnt explain my WHOLE probelm in the original post just to try and keep things simple. Thanks again everyone.
  14. zzfive03

    IP Address on XP

    I acutaly wanted to make up my own IP address. To add more detail, what i was tyring to do was put Virtural PC on the system, which was running a 2nd copy of XP, and i wanted each version of the OS to have its own IP and communicate back and forth with thoes IP's. That being said, I would need...
  15. zzfive03

    IP Address on XP

    Thanks bcastner..
  16. zzfive03

    IP Address on XP

    yes, i just want to set my local comptuer to have a static IP address. The probelm is, that it works fine when my NIC card is pluged into a local network hub, but the second i disconnect it, i lose my local IP address. The IPCONFIG just says "media disconnected
  17. zzfive03

    IP Address on XP

    Hello All, i am not a network person so this may not be possibel. Can someone tell me if it is: Can i have a Windows XP machine, that IS NOT CONNECTED TO THE INTERENT and have it assing some hard coded IP address. When i try this, and do a ipconfig, i get a "media disconnected". All i want is...
  18. zzfive03

    Stand Alone IP Address

    Hello, i am not a network person so this may not be possibel. Can someone tell me if it is: Can i have a Windows XP machine, that IS NOT CONNECTED TO THE INTERENT and have it assing some hard coded IP address. When i try this, and do a ipconfig, i get a "media disconnected". All i want is to...
  19. zzfive03

    Edit the From Field

    Hello, I have a probelm where i have 2 buttons, each one brings up a custom form (a message form). The user(s) have 2 email accounts. jsmith@company1.com jsmith@company2.com The employer wants it so that form 1 sends email from email 1 and form 2 sends the email from email 2. Reading, it...
  20. zzfive03

    TextBox Cursor Position

    How do i get the current postion of my cursor. I would like the follwoing: Current line, current column within the line, and most importently, the i would like to know the cursor position in respect to the length of the entire string of the data in the grid.

Part and Inventory Search

Back
Top