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

  • Users: hlybbi
  • 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

    yes this is great thx a million. this code saves my life now i can complete my software Best regards Hlynur http://www.xodus.net
  4. hlybbi

    enumeration stored procedure

    Yes this is almoust it, i cant figure out a way to rewerse this like if i have the number 5 and i need to find out witch days this number stands for Best regards Hlynur http://www.xodus.net
  5. hlybbi

    enumeration stored procedure

    No this is not it, what i am looking for is some kind of mathmatic formula, like i have these weekdays Sunday = 1 Monday = 2 Tuesday = 4 Wednesday = 8 Thursday = 16 Friday = 32 Saturday = 64 and in my software i can choice sunday+tuesday and i get the value 5 be...
  6. hlybbi

    enumeration stored procedure

    no what i am looking for is if i have multible choices like if i have the number 6 then it stands for Green,Blue or i have the number 10 i get Green,Red Green = 2, Blue = 4, Red = 8 Best regards Hlynur http://www.xodus.net
  7. 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...
  8. 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)...
  9. 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
  10. hlybbi

    Monitor into standby mode

    is it possible to turn your monitor into standby mode in c# Best regards Hlynur http://www.xodus.net
  11. 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
  12. hlybbi

    Problem finding in witch row checkbox was fired

    this doesn´t work, or i am not understanding this. what i am trying to to is this i have a list of checkboxis and when someone checks one of them it should fire the Update_Command and i need to know witch was fired public void Update_Command(Object sender, CommandEventArgs e) { string sql =...
  13. hlybbi

    Problem finding in witch row checkbox was fired

    yes Best regards Hlynur http://www.xodus.net
  14. 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
  15. hlybbi

    sending string beetween cs document and aspx

    ofcourse the only control i did not know what was in visual studio. thanx a million Best regards Hlynur http://www.xodus.net
  16. 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...
  17. hlybbi

    Select from dataset

    no like find colum insite a data set like where catagory=5 or username like 'jon%' Best regards Hlynur http://www.xodus.net
  18. 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
  19. 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...
  20. 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>...

Part and Inventory Search

Back
Top