|
remeber....never give up anything untill today....every thing fine.....don't worry about that....k
A S E L A
|
|
|
|
|
|
Drag Drop Bitween two imageLists in listViewBoxes using ImageIndex....
foreach(listViewItem each in listView1.SelectedItems)
{
imagelist1.Image.Add(listView1.ImageList.Images[each.ImageIndex]);
}
A S E L A
|
|
|
|
|
for a project i have to use a database and create a form with it. ive created the form and layed it all out. i have to do sort and then a search feature. the sort part i haev done using the catolougebinding..... the search bit has to bring a new form up. i am able to bring a new form up but do not understand what code to write in there.
here is a link to what i haev to do which is in a pdf format - http://www.megaupload.com/?d=B34ISOYE[^]
that will also explain what i have to do.
any help will be really helpful.
thanks
Alex
|
|
|
|
|
saunders1989 wrote: but do not understand what code to write in there.
this[^] might help
Yusuf
|
|
|
|
|
I dont know it its just me but that link just takes me to my pdf file i uploaded?
|
|
|
|
|
Hi..
I have a form which is like following:
Sup.Id: tbox1
S.Name:tbox6 ->When i select 1 it should populate the textbox6 with the proper name? how to do that?
Prod_Name: listbox1...It should only show product name once not twice how to do that?
Prod_Type: listbox2 -> How to view only product type e.g. F,H and T
CostPrice: tbox4 -> It should calculate from product table?
Prod.TradePrice:tbox5
Now as you see i have two tables Suppliers and Products..
In products table i have e.g.
p.name=prodA
p.type=F
p.Price=100
p.name=prodA
p.Type=H
p.Price=50
Suppliers Table:
S.id=1
S.Name=InStock
I will be very thankful to you pls help out...
|
|
|
|
|
Any help please...
|
|
|
|
|
I have many applications which are using a named instance of SQL Server. They all worked fine until the DBAs reinstalled the sql server. Now the apps can not create connection to the sql server. The exception does not really help--even googling. Exception is Instance Failure.
I tried everything but nothing seems to work. It is a C# app and the config file does not contain double slashes. Here it is:
connectionString="Data Source=MainServer\NamedInstance;Initial Catalog=Shipping;Integrated Security=True";
I replace the MainServer by the IP address as some people suggested but no luck. Any ideas? What causes this?
CodingYoshi
Visual Basic is for basic people, C# is for sharp people. Farid Tarin '07
|
|
|
|
|
I thought you needed \\ at the front to show it was a network path ? Can you connect to it in other ways ? Might the reinstalled SQL Server be rejecting remote connections ?
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
you are using a named instance of sql server. when the DBA reinstalled the sql server, what happen to your named instance? Does it still exist? The first test is to connect to your db through server manager. Can you connect to it using your old connection string? If not, I'd start there.
Yusuf
|
|
|
|
|
Last time I got that it was double-slash buggering things up.
Try flicking Integrated Security to SSPI and see if that helps.
|
|
|
|
|
Maybe they didn't start the server agent or whatever?
|
|
|
|
|
The weird thing is some applications work and some don't. Instance name exists and I can connect to it from management studio.
CodingYoshi
Visual Basic is for basic people, C# is for sharp people. Farid Tarin '07
|
|
|
|
|
Hi All,
Has anyone come across some nice simple (read: for stupid people) demo's using the MS SyncFramework? I'm looking through the MS demos at the moment but they don't seem particularly straight forward or particularly well documented.
Cheers,
James.
|
|
|
|
|
Jammer wrote: or particularly well documented.
So you find this lacking[^]?
Could you be more specific?
|
|
|
|
|
No, this is the problem, the demos are many and quite complex imo, I'm only really interested in a subset of the features basically.
I just need to retrieve a list of directories in a file system that have changes compared to the last time a replica was generated. The demos provided in the 101 tutorials provided on codeplex seem fairly "hands off" if that makes sense. Here is replica a, here is replica b, now go sync. Whereas I don't want to actually do any syncing as such, just find the differences.
|
|
|
|
|
|
|
hi,
does anyone can help me how to do the coding for "select all, copy the parents and nodes in treeview and paste the copied parents and nodes into listbox?"
I really hope and appreciate for any of you in the forum for reply
|
|
|
|
|
huh, smells like HW.
Here. First of all why do you want to "select all"?. You know your treeview, right? and you populated it with the parent/child nodes. Well start at the root parent, the traverse through all the nodes, get the name and put it in your listbox.
Even better, use the same/simialr code you use to populate your treeview, instead of writing to the treeview, populate your listbox.
Yusuf
|
|
|
|
|
I'd write a recursive function that traversed the original treeview building the nodes to be added to the destination treeview.
appSynergy.com - blur the boundaries of your devices
Capture public beta now open! Assisting our users to Get Things Done
Sign-up here
|
|
|
|
|
Hey everyone,
Can you recommend a free library that supports DSL interaction?? You know, counting bytes sent and received, connection duration... Etc.
Please advise.
All generalizations are wrong, including this one!
(\ /)
(O.o)
(><)
|
|
|
|
|
Hello,
How we can convert a pdf file to Picture format?
Thank you verry mutch
|
|
|
|
|
by picture format, I am assuming you meant, Image, right. Look at ImageMagick[^]. It is very good tool for image conversion. You will also gonna need GhostScript[^]
Here is a syntax I use to convert pdf to image format
"C:\ImageMagick\647Q8\convert" "e:\Objects\967793_Component Brochure.pdf"[0] +profile "*" "e:\Objects\967793_Component Brochure.jpg"
Yusuf
|
|
|
|