I dont fit in a nutshell
- Interests
- asp.net, vb.net, mssql
- PC Specs
- amd phenom II x6, 4 gb ram
30 Posted Topics
First of all, if I rotate a span in a td or th, it doesn't rotate. I have to make it either position absolute or display:block to rotate it. absolute position is not an option for me so I went ahead with display:block. here is my code : http://jsfiddle.net/bilalfazlani/95V5G/ I … | |
hi people.. I was wondering if u experts could help me with this. I have attached a screenshot of my form. This is an invoice system.. I have customers table for customer profiles.. I have Products table I have manufactures table I want to save all invoices so that these … | |
-webkit-transition:left .4s ease-in-out .1s; -ms-transition:left .4s ease-in-out .1s; transition:left .4s ease-in-out .1s; -moz-transition:left .4s ease-in-out .1s; can anyone please tell why is it working in browsewrs but not in IE ? what am i missing ? | |
hi, This is a bit complex.. I have 2 nested repeaters.. and 3 datasources(in markup) <asp:SqlDataSource ID=data1 runat=server ConnectionString="<%$connectionstrings:MainServer %>" SelectCommand="select MatrixRiskFactorId,Name,MaxWeight from Matrixriskfactor" ></asp:SqlDataSource> <asp:SqlDataSource ID=data2 runat=server ConnectionString="<%$connectionstrings:MainServer %>" SelectCommand="select * from MatrixQuestion" ></asp:SqlDataSource> <asp:SqlDataSource ID=data3 runat=server ConnectionString="<%$connectionstrings:MainServer %>" SelectCommand = "select MatrixRiskFactorId,Value,text from MatrixRiskFactorScore where MatrixRiskFactorId=2"> <repeater id=rep1 … | |
Re: m I not a programmer if i dont understand this code ? m starting to get worried now.. i have built simple database apps before ...but this looks like alien language to me :( | |
I using listview on an asp.net form.. It has item template and edit template... I want to add ajax slider in both the templates.. I just used on script manager as suggested my many people,, but for reason i can only see one single slider in the top row.. and … | |
I am creating an web application which uses abcpdf to convert an html page to pdf. the html page uses javascript to for some dynamic parts.. I have already tried setting the UseScript bool to true as follows : theDoc.HtmlOptions.UseScript = true; It renders static text and omits javascript content. … | |
#What do u think is wrong in this code???# ##no textbox is being affected :(## For Each ctrl As Control In Panel1.Controls If ctrl Is GetType(TextBox) Then CType(ctrl, TextBox).Text = "" End If Next | |
[ICODE]listbx.Items.Add(New _ ListItem(BorderStyle.None.ToString(), BorderStyle.None)) listbx.Items.Add(New _ ListItem(BorderStyle.Double.ToString(), BorderStyle.Double)) listbx.Items.Add(New _ ListItem(BorderStyle.Solid.ToString(), BorderStyle.Solid))[/ICODE] can anyone please tell me how to do this in asp code.. in vb.net it adds the borderstyle as value... when i try that in asp.net it just adds string value. [ICODE]<asp:ListItem Text=Solid Value=Solid></asp:ListItem>[/ICODE] do I have to … | |
Re: I found it interesting so worked on it. fill it with your report paths and see the result... its working here..lemme know [CODE]Imports CrystalDecisions Public Class Form1 'assuming you have three reports medical,science and chemistry Private mediflag As Boolean = False Private sciflag As Boolean = False Private chemflag As … | |
Re: [CODE] Dim sqlcon As New SqlConnection("put your connection string here") sqlcon.Open() Dim sqlcom As New SqlCommand(String.Format("select a.po_number,a.mr_number,b.item_code,c.item_desc,b.qty,b.rate from po_head a,po_detail b, item_master(c) where(a.mr_number = b.mr_number And b.item_code = c.item_code and po_number = {0}", combopo.Text, sqlcon)) Dim sqladapter As New SqlDataAdapter(sqlcom) Dim sqldt As New DataTable sqladapter.Fill(sqldt) Dim crystalreport As New … | |
I need help creating bootstapper for crystal reports runtime.. I want crystal reports runtime to be installed automatically with the application if its not installed on the target machine. I am using vs2010 anyone have any idea here ? | |
this is my query for displaying monthly business [CODE]select convert(varchar,dateadd(month,datediff(month,0,inv_date),0),101) as 'months with date format', sum(inv_amount) as 'business' from invoices inner join customers on customers.cust_id =invoices.cust_id where fname+' '+lname='lala fazlani' group by customers.cust_id,dateadd(month,datediff(month,0,inv_date),0) order by customers.cust_id,dateadd(month,datediff(month,0,inv_date),0) [/CODE] So when I execute this command, It gives me this result [url]http://img821.imageshack.us/img821/6492/sqle.jpg[/url] [url]http://img341.imageshack.us/img341/538/chartv.jpg[/url] … | |
Re: dude.. u can use threading to do that. and if u really want to make application with rich animation.. like sliding menus, shadow and blur effects.. u can use WPF | |
[B]I converted my project from .net 3.5 to .net 4.0 and here's what I got.[/B] [COLOR="Green"][URL="http://img43.imageshack.us/img43/5152/errorso.jpg"]http://img43.imageshack.us/img43/5152/errorso.jpg[/URL][/COLOR] I wanted to convert just because of charting controls available in .net 4.0 I have a backup of original .net 3.5 project. can anyone please tell me what to do to be able to … | |
Re: why dont you use an openfile dialog to browse to the file at application startup ? the openfile dialog will then have the path of the file..you can use that file then OR copy it to other directory. | |
Okay, So I have an application which uses MSSQL server as datasource. Is there anyways I can avoid using any database server and use a local file as datasource ? If yes , what are options. AND HOW ? PS: this is very important guys. please help. THANK YOU. | |
I saw the adobe pdf viewer control in vs2010 toolbox somewhere. and I thought it can be very useful. So I tried to add it. [url]http://img155.imageshack.us/img155/3349/choosetoolboxitems.jpg[/url] as I expected things are never simple for me, when I try to drag it to the form. there'a an error. [url]http://img214.imageshack.us/img214/8042/errorrp.jpg[/url] any idea … | |
Re: is reportviewer displaying report properly ? if it is, u cant use the easy way. [CODE]CrystalReportViewer1.PrintReport()[/CODE] | |
heres a form i have created. its a search form. [url]http://img266.imageshack.us/img266/722/paymentsh.jpg[/url] it searches and lists the results in list view. heres my mssql query : [CODE] select transactions.trans_id,transactions.cust_id,transactions.trans_amount," _ & "transactions.trans_date,customers.fname+' '+ customers.lname as customer from transactions inner join customers on transactions.cust_id=customers.cust_id " _ & "where trans_type='inv' and (trans_id= " … | |
I am making an invoice system. Please have a look at the images. [url]http://img32.imageshack.us/img32/9216/capture1iv.jpg[/url] [url]http://img839.imageshack.us/img839/1228/capture2cq.jpg[/url] as you can see, the place order button is creating an invoice. I have actually created a junk table and a junk column in it just to setup the invoice_id and load it when "invoice … | |
I am trying to create a a splash screen... I have attached the image file..please have a look.. the splash screen performs a diagnostic procedure and displayed the results in a multi-line label.. I have used another thread to write msgs as results in label.. and its working as it … | |
I have tried this : [CODE]update customers set customers.acc_balance = (select sum (invoices.inv_amount) from customers left join invoices on customers.cust_id=invoices.cust_id group by customers.cust_id)[/CODE] this [CODE]update customers set customers.acc_balance = (select sum (invoices.inv_amount) from customers inner join invoices on customers.cust_id=invoices.cust_id group by customers.cust_id)[/CODE] error is : Subquery returned more than 1 … | |
Re: hmmmm... if u have already tried using me.hide, then there are two ways that i can think of : 1st : using "form1.showdialog()" instead of "form1.show()" that will preserve values.. OR 2nd: store values in registry on the event "form1.closing" and read those values on formload event | |
Hi, I have visual studio 2010 ultimate and i have installed sap crystal reports for visual studio. its a free edition for visual studio 2010. while working on a project in which i wanted to create a report, it was giving errors.. but that's not a problem, now i don't … | |
i know crystal reports can access data stored database.. what I want is actually to create a report on the basis of a listview values..no database at all. how do I pass these listview items and subitems to crystal reports... please help guys.. | |
Re: [CODE] Dim mysqlcon As New SqlConnection("data source=bilal-pc\sqlexpress;initial catalog =erp;integrated security=true") mysqlcon.Open() Dim mysqlcom As New SqlCommand("select fname from customers", mysqlcon) Dim mysqlrdr As SqlDataReader mysqlrdr = mysqlcom.ExecuteReader While mysqlrdr.Read ComboBox1.Items.Add(mysqlrdr(0).ToString) myform2.ComboBox2.Items.Add(mysqlrdr(0).ToString) 'just make sure that myform.combobox2 is public and not private [/CODE] [CODE] 'or if u want to copy existing … | |
I am looking for the a simplest for of code where I can add some items to a listview. i have 4 text boxes and 4 columns in a listview.. what could be the code to put 4 values as a single row in list view.. i managed to put … | |
Re: yes it is... u have to use the "selected index change" event for ur combobox.. then you can disappear and reappear any image for example : [CODE] Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged if combobox1.selecteditem.tostring = "Computer" then picturebox1.visible=false else if combobox1.selecteditem.tostring = "Keyboard" … |
The End.