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 bkrike 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: hlybbi
  • Content: Threads
  • Order by date
  1. hlybbi

    Dataset filter problem

    i am having trouble filtering datatable how can i do this WHERE theDate BETWEEN #1.1.2000# AND #1.1.2002# this work TestBindingSource.Filter = "theDate=#1.1.2000#"; Best regards Hlynur http://www.xodus.net
  2. hlybbi

    Multiple records to one record

    i have a question is it possible to read multiple records and update it to one record? I have this code and i need to find all records that match my query and put them all in one record <code> UPDATE #tmpSearchTable SET Monday = SchedulerEvents.Title+'<br/>x' FROM...
  3. hlybbi

    enumeration stored procedure

    I am trying to make an stored procedure that can read enum values its no problem in asp.net http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemflagsattributeclasstopic.asp is it possible in sql server 2000 if so can any body point me into the right...
  4. hlybbi

    Monitor power down

    I am using this code to power down my monitor on xp without sp2 const int MONITOR_ON = -1; const int MONITOR_OFF = 2; const int WM_SYSCOMMAND = 0x0112; const int SC_MONITORPOWER = 0xF170; const UInt32 ES_CONTINUOUS = 0x80000000; System.Threading.Thread.Sleep(2000)...
  5. hlybbi

    Reading html content

    im making an email system that can send the page you are on, the problem is i cant read the html content to send it. does anybody have a solution for this. Best regards Hlynur http://www.xodus.net
  6. hlybbi

    Monitor into standby mode

    is it possible to turn your monitor into standby mode in c# Best regards Hlynur http://www.xodus.net
  7. hlybbi

    returning cvs from webservice

    Does anybody know how to make an web service not return a xml but an csv or a text string Best regards Hlynur http://www.xodus.net
  8. hlybbi

    Problem finding in witch row checkbox was fired

    I hava a datalist with <asp:CheckBox id="SecPage" AutoPostBack="True" OnCheckedChanged="Check_Clicked" runat="server"></asp:CheckBox> the problem is i cant find out in whats row the checkbox was fired Best regards Hlynur http://www.xodus.net
  9. hlybbi

    sending string beetween cs document and aspx

    the problem is that my code is in the aspx.cs document and i need to print out a string in my aspx document. i have a flash document witch needs a string from my code to work <PARAM NAME="Movie" VALUE="charts/liner.swf?dataXML='<%# xmlDoc%>'"> can anybody please help me i am totaly blank...
  10. hlybbi

    Select from dataset

    can anybody tell me how to select only certent rows from a dataset table Best regards Hlynur http://www.xodus.net
  11. hlybbi

    Datalist insite a datalist edit item

    i am having problem with datalist insite a nother datalist i have a button insite the sub datalist and a record i need to edit inn EditItemTemplate and when i try to use this code i get an error Object reference not set to an instance of an object does anybody know what i need to do public...
  12. hlybbi

    Having problem

    i allways get this "error Specified argument was out of the range of valid values. Parameter name: index" Line 53:<asp:Label Runat="server" ID="error"></asp:Label> Line 54:</font><font face="Verdana" size="2"> Line 55:<asp:Label Runat="server" ID="No_Error"></asp:Label>...
  13. hlybbi

    math matic problem in c#

    double vsk = Convert.ToInt32(SumAllStr)*0.19; i allways get Input string was not in a correct format. but the string is 109000 can anybody tell me what i am doing wrong Best regards Hlynur http://www.xodus.net
  14. hlybbi

    &lt;asp:Label insite &lt;FooterTemplate&gt;

    i am having problem with <asp:datalist i am trying to acces an asp:label insite a datalist footertemplate when i try to SumAll.Text = "test" in my code i get an Object reference not set to an instance of an object ERROR when i try to run the website can anybody help me Best regards Hlynur...
  15. hlybbi

    foreach(DataListItem item in ListItemstest)

    foreach(DataListItem item in ListItemstest.Items) { how can i change the button.text } <asp:ListItems id="ListItemstest" Runat="server"> <ItemTemplate> <asp:Button id="test" text=""> Best regards Hlynur http://www.xodus.net
  16. hlybbi

    execute sp_executesql

    set @tempTable = 'SELECT sum(' + @tempTable + ') ' set @tempTable = @tempTable + 'FROM #ReturnStada ' set @tempTable = @tempTable + 'WHERE RoomType<>''Allotments left''' set @tempTable = @tempTable + ' AND RoomType<>''Free rooms''' execute sp_executesql @tempTable can anybody help me to get...
  17. hlybbi

    datset problem

    I have a shop categories, and within these categories, I have subcategories,I want to display just 3 subcategories for each main category I am using dataset with Relations ds.Relations.Add("MenuRelation", ds.Tables["Shop_catagory"].Columns["catID"], ds.Tables["Products"].Columns["catagory"])...
  18. hlybbi

    file exist on another server

    is it possible in sql to find out if picture exist on a another server like http://bbc.com/test.jpg Best regards Hlynur http://www.xodus.net
  19. hlybbi

    Auto genarate script to alter table

    is thera a way to make sql autogenerate script to alter tables i have 2 db one desing db for my program and one db for the accual online program , and when i have alter the desing db i would like to run a script that alters the db witch is in use, with out destroing all the data that exist on...
  20. hlybbi

    import excel with stored procedure

    is there a way to read an excel file into sql with a stored procedure Best regards Hlynur http://www.xodus.net

Part and Inventory Search

Back
Top