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 strongm 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: jepe666
  • Order by date
  1. jepe666

    Simple Function ChangeImage can't work in Firefox

    to kirsle thank alot you save my day.. thanks your solution successfull...
  2. jepe666

    Simple Function ChangeImage can't work in Firefox

    sorry i forgot to declare mainimage here's the code : <html> <head> <SCRIPT LANGUAGE="JavaScript"> function changeImage(filename) { mainimage.src =filename; // where is there anything called "mainimage"?? } </script> </head> <body> <IMG class=image1 height=506 align="right"...
  3. jepe666

    Simple Function ChangeImage can't work in Firefox

    I have problem in firefox,my code works in IE... here's my code: <html> <head> <SCRIPT LANGUAGE="JavaScript"> function changeImage(filename) { mainimage.src =filename; } </script> </head> <body> <a href="javascript:changeImage('includes/images/fotoproduk/CRJ624.jpg')"><img...
  4. jepe666

    automatic printing of Reporting Services

    can anyone knows how to automatic printing of reporting services? can using subscription?? thanks for advance..
  5. jepe666

    2 servers in One Report

    Can I create a report with 2 servers?? thanks for advance..
  6. jepe666

    Access to the database file is not allowed

    when i want to upload .sdf file in emulator to the PC, I got "Access to the database file is not allowed".. But I have no ideas for this error, please can help me?? thanks for advance
  7. jepe666

    how to syncronize database

    after the inserted have fixed,i find the next problem... how to syncronize between a server database and a SQL Compact database on a Windows Mobile 6 device??? anybody help me?I'm very newbie of this.. thanks for advance...
  8. jepe666

    can't inserted

    thanks for response jmeckley, thanks that's work... very help me...
  9. jepe666

    can't inserted

    please help me, i have coding like : try { SqlCeConnection connectionstring = new SqlCeConnection(@"Data Source=" + (System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase) + "\\barang.sdf;Persist Security Info=False;"))...
  10. jepe666

    problem with update

    I have problem with update.. I have lay out form like this : checkbox custname percentage 1 custA 20 2 custB 20 3 custC 20 4 custD 20 5 custE 20 i want to update percentage,in...
  11. jepe666

    about stored procedure

    I know what my mistake,thanks all...
  12. jepe666

    about stored procedure

    I already use refresh field but doesn't work,there isn't field in data set.. My store procedure like : STORE PROCEDURE [dbo].[sp_cast] @userid char(50), @cpny char(3), @PBegin datetime, @PEnd datetime, @jenis char(10) AS BEGIN sets from SET NOCOUNT ON; DECLARE @jmlRequest int, @bln...
  13. jepe666

    about stored procedure

    I using stored procedure in my report..but why i did't find any field in it?? so i can't create report table without field in dataset(stored procedure) please help..
  14. jepe666

    KPIs help

    Thanks for reply Shab, I already using excel,but not found gauge indicator.. If i using sharepoint,sharepoint must be install in the server?? thanks to you..
  15. jepe666

    KPIs help

    I don't know,is this a correct forum for KPIs question?? But If somebody know well about KPIs,please help me... I create KPIs in SSAS2005,but how to publish it into the web?? If somebody have tutorial about KPIs,can share it to me?? Thanks for all
  16. jepe666

    HELP!!How to separate comma and space??

    I try code like this : Function remove(ByVal paramsite as String) as String Dim s As String Dim words() As String Dim tempStr As String s =paramsite words() = Split(s) For i = 0 To UBound(words) tempStr = Replace(words(i), ".", "") tempStr = Replace(tempStr, ",", "") tempStr =...
  17. jepe666

    HELP!!How to separate comma and space??

    Thanks to MisterMo your suggest is correct,but not yet completed.. Bcoz, the data must have array Please help me..
  18. jepe666

    HELP!!How to separate comma and space??

    I have problem,i have data like: SiteID ======= 0100000, 0201T00, 0301T00, 0401T00 I want get output like: 0100000 0201T00 0301T00 0401T00 I want to disappear comma and space..how can i solve this problem??Help
  19. jepe666

    Can using 2 databases in one dataset?

    I using syntax like this : =Switch(RTrim(Parameters!companyID.Value)=”01”,"Data Source=ServerName;Initial Catalog=SC","Data Source=ServerName;Initial Catalog=BI") I put it to dataset->edit->data source->connection string.. When I deploy, no error, but when i preview i got error "error during...

Part and Inventory Search

Back
Top