 |

|
Why not? Is it maximized, do you have trouble using your mouse, what?
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
Hi,
We are looking for a .NET component which will do lookup tables (with interpolation). I've spent hours searching google/forums to no avail.
As the lookup table will be used frequently in a computationally intensive process, speed is of great importance. Ideally we would want to stay away from a database approach as we are not using database/tables anywhere else in the product.
We tried building a component ourselves but were struggling with speed. Our method came down to looping through every single element in the table and comparing it (calculating distance) to what we were trying to lookup. I should mention that we only are dealing with numbers and we have the need for higher dimensions in the table (ie. 1D, 2D, 3D, nD tables).
Can anyone recommend either an exisiting component or should we should try to optimize our algorithm and move to a native C++ implementation to gain speed?
Thx
Hento
|
|
|
|

|
HentoDeluxe wrote: As the lookup table will be used frequently in a computationally intensive process, speed is of great importance. Ideally we would want to stay away from a database approach as we are not using database/tables anywhere else in the product.
Meh, I was just about to recommend the TimesTen database.
HentoDeluxe wrote: Our method came down to looping through every single element in the table and comparing it (calculating distance) to what we were trying to lookup.
Does your lookup have a key that you're comparing to? If yes, try a Dictionary. You might also enjoy benefits from reading up on database-theory; if your data contains several fields that you do for the lookup, it might be a cute idea to have something similar to an index.
HentoDeluxe wrote: Can anyone recommend either an exisiting component or should we should try to optimize our algorithm and move to a native C++ implementation to gain speed?
You need to find the correct approach; changing language isn't going to help much.
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
Hello,
I would like to convert a decimal number (base10) into hexadecimal and then save it into an unsigned char array.
I have an integer whose value increments from 1024 to a max of 2047 in steps of 1 whenever the user clicks a button. At each step I need to convert it to a hexadecimal number and save it into an unsigned char array or 2 elements so that I can send it to a device via USB.
For example:
If I want to send 1955 decimal number I would like to have my unsigned char array as below
Out[0] = 0x07;
out[1] = 0xA3
then I can use my transferdata(out) function.
Can someone help me with this?
thanks in advance
PKNT
|
|
|
|

|
Something like ...
Out[0] = decimalNumber / 256;
Out[1] = decimalNumber % 256;
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
Thanks for your reply, it works perfect. Looks very simple, wonder why I didnt get that idea (I did many times before in similar ways). These days I have to start thinking from scratch.
PKNT
|
|
|
|

|
Kiran Satish wrote: These days I have to start thinking from scratch. Yeah, me too.
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
What is Common Type System (CTS) in .net framework? I'm beginner in .net platform so please define briefly.
|
|
|
|

|
In order to provide the ability to use many different languages in .net, and for components written in one language operate with components written in another, we need to use the same primitive types. These are supplied by the CTS.
|
|
|
|

|
As we develop application in different language so they have different way of defining variable so How CLR will understand this.So for this .net define CTS like in c# we have int in VB we have Integer when they complied they are converted to Sysyem.int32 which is common for both language.
|
|
|
|

|
In Microsoft's .NET Framework, the Common Type System (CTS) is a standard that specifies how Type definitions and specific values of Types are represented in computer memory. It is intended to allow programs written in different programming languages to easily share information.
|
|
|
|

|
* Common Language Runtime
* Dynamic Language Runtimes (DLR)
* .NET Framework Class Library
* Side-by-Side Execution
* Profiling
* Runtime Host
* Application Domains
* Common Type System
* Metadata and Self-Describing Components
* Cross-Language Interoperability
* .NET Framework Security
|
|
|
|

|
Okay..... Do you have a question or something?
"Any sort of work in VB6 is bound to provide several WTF moments." - Christian Graus
|
|
|
|

|
i have a drop down list which have three entry.when i select every entry of dropdownlist then the data show into the gridview...my code behind page is
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Net.Mail;
using System.IO;
using System.ComponentModel;
using System.Drawing;
using System.Web.SessionState;
namespace AccountManagement
{
public partial class Account : System.Web.UI.Page
{
SqlConnection con;
SqlDataAdapter da;
SqlDataReader dr;
DataTable dt;
SqlCommand cmd;
protected void Page_Load(object sender, EventArgs e)
{
string s = ConfigurationManager.ConnectionStrings["conn"].ConnectionString;
con = new SqlConnection(s);
con.Open();
}
public void bindgrid()
{
cmd=new SqlCommand ("select distinct Fname,Lname from Client_registration_tbl",con);
con.Open();
dr = cmd.ExecuteReader();
GridView1.DataSource = dr;
GridView1.DataBind();
GridView1.Visible = true;
con.Close();
}
public void bindlst()
{
da = new SqlDataAdapter("select distinct Fname,Lname from Client_registration_tbl", con);
dt = new DataTable();
da.Fill(dt);
DropDownList1.DataSource = dt;
DropDownList1.DataBind();
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
da = new SqlDataAdapter("select distinct Fname,Lname from Client_registration_tbl" + DropDownList1.SelectedItem.Text + "", con);
dt = new DataTable();
da.Fill(dt);
GridView1.DataSource = dt;
GridView1.DataBind();
bindgrid();
bindlst();
}
}
}
thanksss in advance
|
|
|
|

|
Firstly this is not the ASP.NET forum, which is here[^], and secondly, you forgot to ask a question.
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
my que is when i select the second entry of drop down list then the gridview show another entry from database.
|
|
|
|

|
You're awfully quick to univote there aren't you? Richard pointed out that the ASP.NET experts are in the ASP.NET forum - which would be a much more appropriate place to ask this question.
|
|
|
|

|
Thanks Pete, although I only got -2 for this one; I got a -16 in The Soapbox.
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
Countered that one as well, but I think I may soon be in for a barrage of downvotes there.
|
|
|
|

|
Strange isn't it? We all claim that we don't care about downvotes and yet continue to counter them when we feel they are unwarranted.
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
Rashid Choudhary wrote: another entry Not clear of this point. Can you please explain a little bit what you exactly mean by this ?
|
|
|
|

|
GridView is not a method that you can call it!
Meysam
|
|
|
|

|
Hi naveen karamchetti,
recently i read one of the artical(Singleton orchestraion in biztalk server) written by you.It is a very good artical.
in that artical you explain with one sample example.i need that sample code.please send to my mail id it is usefull to me.plz plz plz plz send me.
Thanks & regards
srinivas
srinu.reddy789@gmail.com
|
|
|
|

|
Who is naveen karamchetti, and why are you writing to him/her in this forum?
One of these days I'm going to think of a really clever signature.
|
|
|
|

|
Hi,
I want to create combobox dynamically accepting multiple column values from database n VB.Net..!
Want to create table like structure inside combobox.. Column values and Row values are dynamic..
Please help me..! Thanks in advance..!
|
|
|
|

|
What have you tried upto now? Where are the concrete problems?
Have you analysed the parts of a "common" combobox and their interactions yet?
After that, you'll have to replace that item which shows a simple list in the "common" combobox by an element which can show some kind of a table. It means, you have to construct that multi-column combobox from other elements.
|
|
|
|

|
It's amazing what you can find had you just typed your subject line into Google.
For instance, Multi-Column ComboBox[^] right here on CP.
|
|
|
|

|
If you use combo dreamviewer so that is easy. in the menubar you direct code of that. otheriwise you have coding.
asp.net development
|
|
|
|

|
Hi
I created crystal report and generated print receipt. While giving print i want to disable No of copies in Print Dialog.
If anybody knows, please reply me.
Thanks in advance.
|
|
|
|

|
That's not a standard option for the common PrintDialog[^], which makes sense; there's nothing preventing the user from hitting the print-button twice or making a xerox of the page - so there's little added value in hiding that option.
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
You can't disable it, but you can ignore it -just change the PrinterSettings.Copies yourself. If you want to get rid of this altogether, you are going to have to create your own printer dialog.
|
|
|
|

|
hai,i have to premine the association rules..am using the concept of weights.how can this be implemented..any idea??
|
|
|
|

|
vinu Rajendran wrote: hai,i have to premine the association rules..
CodeProject has an article on the Apriori-algo. Don't know what you're exactly looking for, got a feeling that you don't know yet either.
Can you describe a use-case?
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
Hi i have created windows application in .net with c# and my application running perfectly in Windows XP and Windows 7 but when i try to execute that application in Windows Server 2003 then it getting error at opening connection of ms access database which is specify below:
The type initializer for 'System.Transactions.Diagnostics.DiagnosticTrace' threw an exception.
at System.Transactions.Transaction.get_Current()
at System.Data.Common.ADP.IsSysTxEqualSysEsTransaction()
at System.Data.Common.ADP.NeedManualEnlistment()
at System.Data.OleDb.OleDbConnection.Open()
at Com.Xpdite.CC.Utils.DbConnection.getConnection()
so can any one provide me the solutions for this problem.
Please help me to get out from this problem...
|
|
|
|

|
What does your connectionstring look like? Where is the physical database-file stored?
My guess is that you're running a webpage (you didn't mention whether it's a web-app, a phone-app or a WinForm app) and that your user (the internet-user under which the webserver runs) does not have the required permissions to access the file in that location.
If your app is a webpage with more than 10 users, I'd strongly recommend upgrading to Sql Server Express.
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
Hi, I need help if possible about an error I have when launching a software named NoClone (duplicate finder made by reasonable software company).
Support doesn't reply it's why I ask for help here. I think it's related to NET Frawework but I'm not sure 100%
I can't find log file so I only can post a screenshot of the error windows :
http://imagesia.com/capture-2-_1xto
[url=http://imagesia.com/capture-2-_1xto][img]http://img.imagesia.com/fichiers/1x/capture-2-_imagesia-com_1xto_large.JPG[/img][/url]
Thanks in advance for any help.
|
|
|
|

|
optiontips.in wrote: Support doesn't reply it's why I ask for help here.
It's a serialization-error, somewhere in a constructor. Without the source-code, there's little we can do to help.
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
Obtain Summary Values from Devexpress GridView Control in vb.Net???
Plz help me... Priyanka Jain
|
|
|
|

|
DevExpress has a forum and a (paid) helpdesk. You'll get an answer there faster than here.
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
In a DevExpress GridView to get the customized Summary of a Column we have to handle CustomSummaryCalculate event of the GridView. And we have to set the SummaryType property of that column to "Custom".
Below is an example of a GridView showing student details, in which we want to show the Customized Summary value of the Percentage Column.Here "gcPercentage" is the GridView's column name and PERCENTAGE is the FieldName of the column "gcPercentage".
Here is the code to set the SummaryType of the Column
gcPercentage.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Custom;
and for CustomSummaryCalculate event of the student GridView.
private void grdvStudents_CustomSummaryCalculate(object sender, DevExpress.Data.CustomSummaryEventArgs e)
{
if (((DevExpress.XtraGrid.GridSummaryItem)e.Item).FieldName.
CompareTo("PERCENTAGE") == 0)
{
double totalMarks =
Convert.ToDouble(gcTotalMarks.SummaryItem.SummaryValue);
double marksObtained =
Convert.ToDouble(gcMarksObtained.SummaryItem.SummaryValue);
if (totalMarks != 0)
{
e.TotalValue = marksObtained / totalMarks * 100;
}
else
{
e.TotalValue = 0;
}
}
}
|
|
|
|

|
I'm trying to serialize the colors of buttons on a Windows form in VB2010.net. It appears to serialize correctly into XML, but for some reason it won't deserialize correctly. I've read various confusing blog articles, some of which say that you can't XML serialize the color propperty and others that seem to find a way to do so. It seems like it should be straight forward, but something is not being accepted by .net although it doesn't complain about my code. Does anyone have an idea why this won't work?
The following is my serializing segment:
xmlSerialisedForm.WriteAttributeString("BtnForeColor", DirectCast(childCtrl, Button).ForeColor.ToArgb().ToString)
xmlSerialisedForm.WriteAttributeString("BtnBackColor", DirectCast(childCtrl, Button).BackColor.ToArgb().ToString)
It yields the following XML:
="1.0" ="Windows-1252"
<ChildForm>
<Control Type="System.Windows.Forms.Button" Name="btnConfigForm" ForeColor="Color [ControlText]" BakColor="Color [Control]" BtnForeColor="-16777216" BtnBackColor="-986896">
<Visible>True</Visible>
</Control>
<Control Type="System.Windows.Forms.Button" Name="btn30" ForeColor="Color [Black]" BakColor="Color [Yellow]" BtnForeColor="-16777216" BtnBackColor="-256">
<Visible>True</Visible>
</Control>
<Control Type="System.Windows.Forms.Button" Name="btn32" ForeColor="Color [White]" BakColor="Color [Green]" BtnForeColor="-1" BtnBackColor="-16744448">
<Visible>True</Visible>
</Control>
<Control Type="System.Windows.Forms.Button" Name="btn33" ForeColor="Color [White]" BakColor="Color [Black]" BtnForeColor="-1" BtnBackColor="-16777216">
<Visible>True</Visible>
</Control>
<Control Type="System.Windows.Forms.Button" Name="btn41" ForeColor="Color [Black]" BakColor="Color [Red]" BtnForeColor="-16777216" BtnBackColor="-65536">
<Visible>True</Visible>
</Control>
<Control Type="System.Windows.Forms.PictureBox" Name="pbxFloorPlan" ForeColor="Color [ControlText]" BakColor="Color [Control]">
<Visible>True</Visible>
</Control>
</ChildForm>
This following is my deserialize code that yields a white color for each button:
DirectCast(ctrlToSet, System.Windows.Forms.Button).ForeColor = Color.FromArgb(CInt(Val("BtnForeColor")))
DirectCast
(ctrlToSet, System.Windows.Forms.Button).BackColor = Color.FromArgb(CInt(Val("BtnBackColor")))
|
|
|
|

|
Dan Orr wrote: DirectCast
(ctrlToSet, System.Windows.Forms.Button).BackColor = Color.FromArgb(CInt(Val("BtnBackColor")))
Too many instructions on a single line.
Dim ControlToSet As Button = DirectCast(..
Dim TheColor As Color = Color.FromArgb(Cint(Val(..
That way you can put a breakpoint on an instruction and see what is happening. Further, I'd recommend using the Color.FromName[^] method.
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
Hi,
Anyone can refer any stuff to understand .Net Framework in brief.
Thanks
|
|
|
|

|
Tanajee Vaghmare wrote: Anyone can refer any stuff to understand .Net Framework in brief.
You cannot understand it in "brief". Start here[^] if you don't know where to begin. The library would be a good place to visit too.
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
Dears,
i have implemented a custom tool that generates a new class inherited from component class. i want to force the DesignerSerializer to run after the custom tool finish to add new properties to initialize component function.
something like this
Class DerivedComponenet
inherits BaseComponent
....
sub InitializeComponent()
end sub
....
end Class
_
class BaseComponent
inehrits Componenet
_
public property DynamicProp1 ()
...
end prop
_
public property DynamicProp2()
...
end property
the classes DerivedComponent and baseComponent are generated by custom tool, and DynamicProp1 and DynamicProp2 generated by custom tool too based on criteria
when i set properties of DerivedComponent for dynamicProp1, the serializer writes it on the initializeComponent, which is fine, but if the custom tool runs again and according to the generation criterias, it decided to remove these properites and create another, then the initialize component is not updated by removing DynamicProp1 and DynamicProp2 and add let say DynamicProp3 and DynamicProp4.
the desinger does not update the file until i change anything in the DerivedComponent designer, then it serialize and regenerate the code again.
what i want is to force the designer to be regenerated again after the custom tool finished
Any Idea... and thanks
|
|
|
|

|
from my practise of mvc using razor engine, i found out that razor is more slower than the classic aspx engine,,
anybody having any idea about the internal processes of razor engine
|
|
|
|

|
albarhami wrote: anybody having any idea about the internal processes of razor engine
People using a tool will not always look inside that tool to analyze it. Please don't repost the same question, and try this forum[^].
Bastard Programmer from Hell
if you can't read my code, try converting it here[^]
|
|
|
|

|
You're not making a ground breaking discovery here. That little fact has already been documented, here[^].
|
|
|
|

|
from my practise of mvc using razor engine, i found out that razor is more slower than the classic aspx engine,,
anybody having any idea about the internal processes of razor engine
|
|
|
|

|
how to create database with sql connection in vb.net
|
|
|
|
 |