Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
~13.7K People Reached
About Me

Programmer

Interests
Logics
Favorite Tags
Member Avatar for imagetvr

Hello I wish to call crystal report in my VB6 Application. For showing data report i used following code ; Example Date report name : datareport1 Code for showing report Load datareport1 Datreport1.show I have crystal report named "studentregister". please explain me how can show the crystal report in my …

Member Avatar for Nilesh_11
0
6K
Member Avatar for sanket044

Hello, I am using Multi Curl right now. THe problem is it was working for a month correctoly. But suddenly one day it stoped working. I am accessing about 50 different APIs. So, the problem is i cant connect to some APIs, when i use curl_error() it gives me response …

Member Avatar for sanket044
0
152
Member Avatar for sanket044

Hello, I am right now having a dedicated server and when i try to execute a INSERT query in table of 2 Lakh rows it takes about 0.02 seconds. so i am having a website where i need to update all 2 Lakh rows every 15 mins. but it sims …

Member Avatar for pritaeas
0
645
Member Avatar for sanket044

Hello everyone, I want to get list of opened pages in browser of same domain so when user loggs out i can automatically log out him from everypage. Can anyone tell me how can i do that ?? Regards, Sanket Mehta.

Member Avatar for ZER09
0
74
Member Avatar for sanket044

Hello everyone, I am working with php curl and using multiple connections in it, now my problem is if i put 100 curl requests in it it will take lots of time and i will able to access its contents after completion of 100 requests, so how can i access …

Member Avatar for pritaeas
0
81
Member Avatar for sanket044

Hello everyone, I want to create a project in oracke. So can anyone help me how to configure PHP and ORACLE after installation of XAMPP ???

Member Avatar for diafol
0
60
Member Avatar for sanket044

hey, i am creating one project where i am using MDI system, so when i am opoening MDICHild in MDI Parent it adds new title bar for MDI child. I tried formborderstyle, have hide controlbox, max - min button but it dident worked ? so can anyone have any solution …

Member Avatar for sanket044
0
2K
Member Avatar for chamnab

When i placed Crystal ActiveX Report Viewer into VB.NET Form, it became like this [Click Here](https://www.dropbox.com/s/n8x5p8hnwrvaev5/error.png) . How can i resize it ? I try to resize it many time , but it always reset to zero. Thank you for answers.

Member Avatar for SouthernImp
0
284
Member Avatar for sanket044

hello, I am going to create a project which is having multiuser configration, So i decided to take vb.net as frontend and oracle as backend. So the database will be on server and all client willhave software installed. Questions are : 1. Do i need to install oracle in all …

Member Avatar for sanket044
0
245
Member Avatar for sanket044

Hello, i am creating one multiuser project. All data will be stored on server side. But i need to store some settings on client side. So can any one help me which are the ways to locally store data and which is best??? Thank you..

Member Avatar for sanket044
0
2K
Member Avatar for doha786

I have three arrays & i like to convert it in one multidimensional array. $array1=array('Kathy', 'Adam', 'Jenny'); $array2=array('student','teacher','driver'); $array3=array(2, 5, 8); $mix=array(); $mix['name']=array_values( $array1); $mix['profession']=array_values( $array2); $mix['SL']=array_values( $array3); OUTPUT: Array ( [name] => Array ( [0] => Kathy [1] => Adam [2] => Jenny ) [profession] => Array ( [0] …

Member Avatar for sanket044
0
178
Member Avatar for kishoresai438

Hi friends, I am having small doubt regarding redirection of my webpages. folder structure : **project/admin/** i want to redirect this to **project/admin/adminlogin.php** Please check the below .htaccess code and corect me plz. Below .htaccess file saved in **project/admin/** this path. Options +FollowSymLinks RewriteEngine On DirectoryIndex adminlogin.php

Member Avatar for sanket044
0
94
Member Avatar for artur.sinelnikovs

I'm not really getting the bigger picture with regards to linked lists. What needs to be done to link it? Also, there is an error with strncpy and for some reason on line 35 its not recognising struct trainset anymore and calls it a undefined variable. #include <stdio.h> #include <stdlib.h> …

Member Avatar for sanket044
0
140
Member Avatar for sanket044

{Prescriptions.GlsType} Like "SV" and ( ((IsNull({Prescriptions.R_DV_CY}) and {Prescriptions.R_DV_SP}="+2.00") or (IsNull({Prescriptions.R_NV_CY}) and {Prescriptions.R_NV_SP}="+2.00") or (IsNull({Prescriptions.L_DV_CY}) and {Prescriptions.L_DV_SP}="+2.00") or (IsNull({Prescriptions.L_NV_CY}) and {Prescriptions.L_NV_SP}="+2.00")) ) i am having this type of recordselection formula but when i execute this if the First condition ***[((IsNull({Prescriptions.R_DV_CY}) and {Prescriptions.R_DV_SP}="+2.00") or ]*** becomes true then it is giving output, …

Member Avatar for AndreRet
0
165
Member Avatar for sanket044

import java.io.*; public class NewClass { public static void main(String[] args) { try{ Runtime rt = Runtime.getRuntime(); Process p = rt.exec("cmd"); BufferedReader Pop = new BufferedReader(new InputStreamReader(p.getInputStream())); BufferedWriter Pin = new BufferedWriter(new OutputStreamWriter(p.getOutputStream())); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String newCmd; System.out.print("Enter Command : "); newCmd = br.readLine(); String s; …

Member Avatar for Taywin
0
127
Member Avatar for sanket044

hey i am having three columns "fname", "mname", "lname" in one table... i want to take each column's DISTINCT value without relating fields in one query.. i mean distinct of "fname" in first column, distinct of "mname" in second column and distinct of "lname" in third column can anyone help …

Member Avatar for M.Waqas Aslam
0
132
Member Avatar for sanket044

i have binded one textbox at design time to adodc control... and haveing one number field in database... now problem is that, if their is a blank value in database adodc is showing 0 in that field.. can anyone help me, i want to show it as blank if it …

Member Avatar for AndreRet
0
95
Member Avatar for sanket044

SELECT sum(GoodsRcpt.PurchQty) FROM GoodsRcpt where GoodsRcpt.GlsClr=" WHITE"; SELECT count(Prescriptions.SrNo)/2 FROM Prescriptions where Prescriptions.GlsClr=" WHITE"; SELECT sum(GlassDamage.DamageQty) FROM GlassDamage where GlassDamage.GlsClr=" WHITE"; Combine above three query and the equetion should be like, (result of query1) - ( result of query 2 + result of query 3) its urgent... Thank you....

Member Avatar for sanket044
0
106
Member Avatar for sanket044

I have created one report in crystal report... i want to filter that report in vb6 with different conditions... i have created selection formula, like, str = "isnull({Prescriptions.RecDateR})" Report.RecordSelectionFormula = str but while running this it gives error that " SERVER HAS NOT YET BEEN OPNED"... if i remove the …

Member Avatar for sanket044
0
119
Member Avatar for sanket044

ey i have following code for crystal report 8.5 to vb6... i just want to change database location of report from vb code... Private Sub Form_Load() Dim Reportapp As New CRAXDDRT.Application Dim Report As CRAXDDRT.Report Set Report = Reportapp.OpenReport(App.Path & "\orders.rpt") Report.Database.SetDataSource App.Path & "\RatanDB.mdb" CRViewer2.ReportSource = Report CRViewer2.ViewReport CRViewer2.Zoom …

Member Avatar for jhai_salvador
0
489
Member Avatar for sanket044

Hello all... i am going to start my new firm for web and software development... but i need a good name for that, so please can anyone suggest me a unique technical new name for that... thank you... :)

Member Avatar for cereal
0
29
Member Avatar for sanket044

I am having one projract EXE in vb6... and i have to create it again and needs to add some extra features in it... so is it posible the i can get the vb project of that exe again??? or can i attach new functionality to it directly without rewriting …

Member Avatar for debasisdas
0
98
Member Avatar for sanket044

is it possible to run one code on differet events of different controls like vb.net??? how???

Member Avatar for debasisdas
0
77
Member Avatar for sanket044

i want to add different javascript to different divs. Is it posible to set .js page's scope to specific <div> ?

Member Avatar for pzuurveen
0
164
Member Avatar for sanket044

I have created on form in vb6 to see the gmail's email, and when i am downloading and saving it it has many text and i am not able to understand that... can anyone help me for that?? it is also having one image in mail... thanx in advance...

0
53
Member Avatar for sanket044

I am downloading mails from gmail in vb6, and when i am saving it it has many text and i am not able to understand that... can anyone help me for that?? it is also having one image in mail... thanx in advance...

Member Avatar for M.Waqas Aslam
0
59
Member Avatar for sanket044

Private Sub Button_Click() Handles Button1.Click, Button2.Click, Button3.Click MsgBox() End Sub

Member Avatar for Reverend Jim
0
116
Member Avatar for sanket044

Private Sub Button_Click() Handles Button1.Click, Button2.Click, Button3.Click [INDENT]MsgBox()[/INDENT] End Sub Can anyone say me how can we print that which button is clicked?????

Member Avatar for Reverend Jim
0
629