|
Well, I assume this means that a GUID takes up more room than the datatype in your original table. You're cloning the table, so you're going to have columns with the same size/type as you did before, unlike your SQL DB.
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
|
|
|
|
|
Hi Christian
i didn't understand what you saied. can u give me more explain ?
thanks
|
|
|
|
|
Change the column maxlength at dataset properties ...
I know nothing , I know nothing ...
|
|
|
|
|
Hi Stark
i tried this, but it didn't works.
|
|
|
|
|
guys helping here are having their personal work also,, i know that..
sorry to disturb you peoples here,,
actually i have a question in WPF, i have posted there but there is no help for 3 hours.
can any one help me please.. if i disturb you peoples sorruy
|
|
|
|
|
You shouldn't show your sorry because here everyone are free to post questions and all what you have to do is to try by yourself to figure out until you will get any answer from this forum.
Personaly, later when I wll have enought time I will look to hand you.
I Love T-SQL
"Don't torture yourself,let the life to do it for you."
If my post helps you kindly save my time by voting my post.
|
|
|
|
|
|
3 hours?? THAT'S ALL YOU'VE BEEN WAITING?? I was asleep 3 hours ago. Have some damn patience. After all, you're not PAYING for support.
|
|
|
|
|
I want add tableLayoutPanel control at form in the runtime and add clumnes then i want change clumnes size with MouseDownEvent on the cell border and drag cells to resize.
thanks.
|
|
|
|
|
|
Is this WPF code ? Where is your timeline associated with your media player ?
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
"! i don't exactly like or do programming and it only gives me a headache." - spotted in VB forums.
|
|
|
|
|
|
myventsi wrote: It's not WPF
It looks like WPF.
You are creating a MediaTimeline with repeat enabled but then you aren't using it.
|
|
|
|
|
|
Yes.
public class Program
{
static void Main(string[] args)
{
HTTPGet req = new HTTPGet();
req.Request("http://www.google.com");
Console.WriteLine(req.StatusLine);
Console.WriteLine(req.ResponseTime);
}
}
I know nothing , I know nothing ...
|
|
|
|
|
You could probably use the System.Net.WebRequest class[^], setting the Method property to "GET". There's a code snippet on the MSDN page I linked to which shows you roughly how to use it
Between the idea
And the reality
Between the motion
And the act
Falls the Shadow
|
|
|
|
|
do a search for HttpWebRequest and its counterpart HttpWebResponse
(thats one way, afaik HttpWebRequest is quite customisable)
'g'
|
|
|
|
|
In _keyDown I don't receive events for the arrows keys
|
|
|
|
|
a sample of your code would be greate ....
I know nothing , I know nothing ...
|
|
|
|
|
Just tried it on a form and it works for me:
public Form1()
{
InitializeComponent();
KeyPreview = true;
KeyDown += new KeyEventHandler(Form1_KeyDown);
}
void Form1_KeyDown(object sender, KeyEventArgs e)
{
Console.WriteLine(e.KeyData);
}
DaveBTW, in software, hope and pray is not a viable strategy. (Luc Pattyn) Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia) Why are you using VB6? Do you hate yourself? (Christian Graus)
|
|
|
|
|
I think he missing this one "KeyPreview = true;"
I know nothing , I know nothing ...
|
|
|
|
|
_PreviewKeyDown works for me
|
|
|
|
|
Hi dear all,
i have a RFID reader. in my project i have to read data from smart card and also write data in the card.
i attached the reader to com port "com 3".
and i am using ..
private SerialPort comport = new SerialPort();
for the communication.
i am using the object "comport" to read and write data..
the read is..
// Read all the data waiting in the buffer
string data = comport.ReadExisting();
and write is..
// Send the user's text straight out the port
comport.Write(txtSendData.Text);
<big><b>But i want to read data from a specific block of SMART CARD.</b></big>.
How it is possible...
any one can help me...
thanks!
|
|
|
|
|
usually theres a manual and/or SDK that comes with such a device - you could look to see if the manufacturer has a website where they post the details.
'g'
|
|
|
|
|
Dear All,
I am developing an application which communicates with database in web server.
my concern is followings
1. initate access from client or simply remote client.
2. execute a procedure which create an xml of select statement in server in a specific directory.
what i want is when the user initates access to web database, due to lack of internet connectivity the second phase has to be done offline.
What i have done yet, i have created a dll file, assembly and then created store procedure from that assembly which create xml file based on the select statement.
now i am searching for a method that the second option should be done offline, while the cient need to initiate access first.
Abdul Rahaman Hamidy
Database Developer
Kabul, Afghanistan
|
|
|
|