could u check next reply
Yes. CreatiVity withOuT limiTs
could u check next reply
Yes. CreatiVity withOuT limiTs
No I am just call from site ZZZ var dlgResult = showModalDialog("YYYYY.aspx", '', "dialogWidth:880px;dialogHeight:400px;status:1"); In site YYYYY YYYYY.aspx return
function ExitPage(UserName,CardSerial)
{
var dlgResult = new Array();
dlgResult\["UserName"\] = UserName;
window.returnValue = dlgResult;
window.close();
}
but alway return undefined I test same procedure in pages in save domain ZZZ ,and return correct result
Yes. CreatiVity withOuT limiTs
Dear All, I have problem , I am trying to use showmodaldialog javascript. it always return undefined if you call page from out of domain,while if try to call page inside domain will return result
Yes. CreatiVity withOuT limiTs
I have already explained anyway You have menu in Mobile Forms private System.Windows.Forms.MainMenu mainMenu1; try to add sub menu to this mainMenu1 private System.Windows.Forms.MenuItem menuItem1; menu item text is "RunApp" do whatever event when I run the application in windows mobile Prof 6.1 menu item test text display "RunApp (A)" its like shortcut ??
Yes. CreatiVity withOuT limiTs
Dear All, I am developing smart device application using .net 3.5, I have problem when adding menu to form,when I run the application shortcut added for each menu item for example MnueItem1 -(A) MnueItem2 -(B) MnueItem3 -(C) Regards
Yes. CreatiVity withOuT limiTs
thanks
Yes. CreatiVity withOuT limiTs
Dear , Im looking to get unique number of my PDA (Windows mobile 6.1) anyway to get the Id or serail in vb.net?
Yes. CreatiVity withOuT limiTs
Dears, I have problem in geting record from SQL SERVER 2000 I am using stored procedure with (READPAST) in query Ex select top 100 * From T_table with (READPAST) and im using lock for some record i want to get unlocked records using READPAST and get error in .net Message: You can only specify the READPAST lock in the READ COMMITTED or REPEATABLE READ isolation levels.
Yes. CreatiVity withOuT limiTs
thanks for reply, I read that you can do it in aspx page but it will work in web service,,how? data source from sql server
Yes. CreatiVity withOuT limiTs
thanks for link but i want for updatable data to be cached??
Yes. CreatiVity withOuT limiTs
Dear All, I want to use best caching tech for getting, dynamic data from server for exmple my server hosting stock values and values will change always and thier are alot of hits on server with hight traffic , i want to use caching to improve the performance,and not get unchanged values?? i will use web service to consume values..
Yes. CreatiVity withOuT limiTs
modified on Friday, December 25, 2009 12:06 PM
#include <iostream> using namespace std; class A { private: int x; int y; public: A() { x = 0; y = 0; } A(int First, int Second) { x=First; y=Second; } // Opertator // A operator= ( A &oA); A operator- ( A oA); A operator+ ( A oA); A& operator++(int unu); // prefix int GetMyX() { return x; } int GetMyY() { return y; } void SetMyX(int Xvalue) { x=Xvalue; } void SetMyY(int Yvalue) { y=Yvalue; } void Out() { cout<<"Value Of x:" << GetMyX()<<" "<<"Value Of y:"<<GetMyY()<<endl ; } }; A A:: operator- (A oA) { oA.SetMyX (oA.GetMyX ()-x); oA.SetMyY (oA .GetMyY ()-y); return oA; } A A::operator+ (A oA) { oA.SetMyX (oA.GetMyX ()+x); oA.SetMyY (oA .GetMyY ()+y); return oA; } A& A::operator++(int temp) { SetMyX (GetMyX ()+1); SetMyY (GetMyY ()+1); return *this; } int main() { using namespace std; A a1(2,4); A a2(3,6); A a3(0,0); a1++; a1.Out (); a3=a1+a2; a3.Out (); a3=a1-a3; a3.Out (); int x; cin>>x; return 0; }
Yes. CreatiVity withOuT limiTs
its like procedure must be implemnt in c++
Yes. CreatiVity withOuT limiTs
Dear All, I am still new in c++ i would like to implement this class how?? void main() } ;(A a1(1,1 ;(A a3(2,2 ;(A a3(0,0 a3=a1+a2; ++ a1 () a3.out a3=a1-a3 {() a3.out
Yes. CreatiVity withOuT limiTs
modified on Friday, December 11, 2009 3:57 PM
Thaaaaaaaaaaaaaaaaaanks man:thumbsup::thumbsup::thumbsup:
Yes. CreatiVity withOuT limiTs
Dear All, I just begun a rokect start in Linq its nice,but hard in begining,we get use in sql query for along,anyway I have problem in sql query convert it in Linq the query contain " where Colum not in (select Colum...)" I am using datatable to get the values Here the sql query SELECT * from Users where UserID not ( in Select UserID FROM AdditionalMailing WHERE CompanyID=2 ) i done slect from user table Dim linqUser = From vSelect In dtUsers1.AsEnumerable() select UserID=vSelect.Field(of long)("UserID") AND SELET Dim linqAddionalMailin = From vSelect In dtAdditionalMailingTable.AsEnumerable() _ Where vSelect.Field(Of String)("CompanyID") = CompanyID _ Select UserID = vSelect.Field(Of Long)("UserID") AND start comparing the result For Each User In linqUser For Each Mailing In linqAddionalMailin If User.UserID <> Mailing Then End If this ofcourse not the best way to done I dont want to loop in linqUser and start comparing thier is exact in linq ,but i dont want to use it ??? bcz maybe the two table dont have same structure note UserID in both table is LONG
Yes. CreatiVity withOuT limiTs
Dear All, I have performance issue in javascript Html with about 30-50 form controls ,textbox ,radios... I done javascript function to parse forms control ,get name and get the value and added these values to xmlDocument xmlDoc=new ActiveXObject("Microsoft.XMLDOM"); xmlDoc.async=true; and append the the nodes every thing works fine i saved xmlDocument in xml file almost size 12-15 kb I want to speed up the process using threads to add nodes in xmlDocument I done search i want perfect library to use in my project?? Also its work fast im my pc, But I put page in windows server 2003 and access it from my pc its tooooooooook allllott of time to done parsing html control,Imessure speed but alert before paring and alert after paring Regards
Yes. CreatiVity withOuT limiTs
Dear All I ma using late binding to Done word parsing I have word document i want to change the style of paragraphs using template docuemtn For exmaple Par(1) style ="This style 1" Par(2) style ="This style 2" My code : Dim o_nullobject As Object = System.Reflection.Missing.Value Dim o_filePath As Object = FilePath''file have paragraphs Dim oTemplate As Object = TemplePath Dim oFalse As Object = False Dim oTrue As Object = True wordApp = CreateObject("Word.Application") doc = CreateObject("Word.Document") alse, o_nullobject, o_nullobject) doc = wordApp.Documents.Open(o_filePath, o_nullobject, oFalse, o_nullobject, o_nullobject, o_nullobject, o_nullobject, o_nullobject, o_nullobject, o_nullobject, o_nullobject, oFalse, o_nullobject, o_nullobject, o_nullobject, o_nullobject) doc.Activate() ParseWordStyle() Private Sub ParseWordStyle() Try Dim i As Int64 '' Dim style As String Dim parsText As String ''Dim p As Object = doc.Styles[""] For i = 1 To doc.Paragraphs.Count doc.Paragraphs(i).Range.Style ="some style"....... ''''''''''''''''''''''''''''''' my problem How to set paragaphs text of styles from template
Yes. CreatiVity withOuT limiTs
modified on Wednesday, March 18, 2009 6:02 AM
Dear, I am using control ntb combo http://www.nitobi.com/products/completeui/demos/explorer/[^] the control to use -Namespace <html xmlns:ntb> -javaScript files Control Render in browser Like this
I want to create this control Dyanmicly
I am create and added it in table I dont problem in this I
Tired
txt = '';
txt = txt + ''
txt = txt + '';
txt = txt + '';
txt = txt + '';
txt = txt + '';
txt= txt + '';
txt = txt + '';
tdNode.innerHTML=txt; /// I dont have problem in tdNode also tired working in attribute will not make Differance var comboNode = document.createElement('ntb:Combo'); var comboText= document.createElement('ntb:ComboTextBox'); var comboList=document.createElement('ntb:ComboList'); var comboColumn=document.createElement('ntb:ComboColumnDefinition'); var comboCo
Dear, I am using control ntb combo http://www.nitobi.com/products/completeui/demos/explorer/[^] the control to use -Namespace <html xmlns:ntb> -javaScript files control render Browser <ntb:Combo TABINDEX=0 id="H_MasterAppId_22_0_" InitialSearch="zzz__is__50" Mode="classic" OnSelectEvent="ValidationAjax('H_MasterAppId_22_0_','1000001','change')" > <ntb:ComboTextBox width=245px OnEditKeyUpEvent="ifEmptyRepopulate(this)" DataFieldIndex=1></ntb:ComboTextBox> <ntb:ComboList OnHideEvent="TextboxSetSelection('H_MasterAppId_22_0_');" OnAfterSearchEvent="TextboxSetInitialValue('H_MasterAppId_22_0_');" height=200 width=748px DatasourceUrl="b6fm/getData.asp?tr=203&viewid=0&req=0" PageSize="50" > <ntb:ComboColumnDefinition width=120px HeaderLabel="Caption" DataFieldIndex=1> </ntb:ComboColumnDefinition> <ntb:ComboColumnDefinition width=120px HeaderLabel="Id" DataFieldIndex=0> </ntb:ComboColumnDefinition></ntb:ComboList></ntb:Combo></span><span id="R" name="RR" Style="color:Red; display :none " > Required Feild</span></td></tr><tr><td class="MDcaption" >Details Application</td><td class="MControl" ><ntb:Combo TABINDEX=0 id="H_DetailsAppId_22_0_" InitialSearch="zzz__is__90300" Mode="classic" > <ntb:ComboTextBox width=245px OnEditKeyUpEvent="ifEmptyRepopulate(this)" DataFieldIndex=1></ntb:ComboTextBox> <ntb:ComboList OnHideEvent="TextboxSetSelection('H_DetailsAppId_22_0_');" OnAfterSearchEvent="TextboxSetInitialValue('H_DetailsAppId_22_0_');" height=200 width=748px DatasourceUrl="b6fm/getData.asp?tr=203&viewid=0&req=0" PageSize="50" > <ntb:ComboColumnDefinition width=120px HeaderLabel="Caption" DataFieldIndex=1> </ntb:ComboColumnDefinition> <ntb:ComboColumnDefinition width=120px HeaderLabel="Id" DataFieldIndex=0> </ntb:ComboColumnDefinition></ntb:ComboList></ntb:Combo> I want to create control Dynamicly using innerHTML Property of JavaScript var sq=String.fromCharCode(39); var comboName; comboName='vComboTest'; var txt; txt = '<ntb:Combo xmlns:ntb TABINDEX=4 id="' + comboName + '" Mode="classic" theme="outlook" >'; txt = txt + '<n