Search found 79 matches: brand

Return to advanced search

To Nages : Search on Xbrowse tree

... in my application I have an archive of warehouse items (products) where I would like to display a tree view for different fields (categories and brand) Xbrowse normal https://i.postimg.cc/4NTQspbs/normal.png xbrowse tree https://i.postimg.cc/4xP58ncZ/tree.png the ...
by Silvio.Falconi
Thu Feb 15, 2024 12:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages : Search on Xbrowse tree
Replies: 1
Views: 376

Re: Auto sort 2 columns in xbrowse?

Mr. Rao:

I apologize for not giving complete information, I use xBrowse with RecordSet,
so my idea is that by clicking on the brand column header, then clicking on the
product column header, they are sorted by product within each brand, just like excel does,
¿is it possible?

Best regards
by Armando
Sun Nov 06, 2022 7:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Auto sort 2 columns in xbrowse?
Replies: 2
Views: 204

Re: Auto sort 2 columns in xbrowse?

if it is DBF:
a) if you have an index on brand + code, assign that index tag name to oCol:cSortOrder
b) otherwise create a temporary index and assign that index tag name to oCol:cSortOrder and the index name to oCol:cOrdBag.

For Recordset, rowset, etc.
oCol:cSortOrder := "brand,code"
by nageswaragunupudi
Sun Nov 06, 2022 3:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Auto sort 2 columns in xbrowse?
Replies: 2
Views: 204

Auto sort 2 columns in xbrowse?

Mr. Rao:

In xBrowse is it possible to auto sort 2 or more columns? For example, I want to sort by product brand and then by product code, is it possible?

Best regards
by Armando
Sun Nov 06, 2022 2:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Auto sort 2 columns in xbrowse?
Replies: 2
Views: 204

Re: Installing on Paralles for Mac

Tim I Agree with you and understand your situation ... I now work for a Custom Computer and software shop .. We built and brand new computer for a customer and installed a nice 2 band (2g and 5g) USb Wireless device. Got a call from him this morning and he says he can not connect to ...
by Rick Lipkin
Mon Sep 05, 2022 3:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Installing on Paralles for Mac
Replies: 15
Views: 744

Re: Very strange problem - ideas needed

The .exe is not corrupted. I actually copied a brand new file to that machine remotely with the same result. Yesterday I copied their complete database set to my computer, ran the routine for the month that isn't working, and it performed perfectly. ...
by TimStone
Wed Aug 24, 2022 5:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Very strange problem - ideas needed
Replies: 17
Views: 1752

Re: MS Visual Studio

Dear Detlef,

Do yourself a favour: start using Harbour and install Microsoft Visual Studio Community 2022

You will feel like driving a brand new car... :-)
by Antonio Linares
Thu Jul 07, 2022 5:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MS Visual Studio
Replies: 23
Views: 1481

Re: Converting old Dos Clipper Application

... I have used dBsee 3, an excellent Italian CASE tool for Clipper Summer 87 ( years 90- 94) created by Isa software , Then Albalog bought back the brand making a release Visual for Alaska https://i.postimg.cc/t4Hk57RK/slide-4.jpg
by Silvio.Falconi
Thu Mar 03, 2022 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting old Dos Clipper Application
Replies: 11
Views: 734

Re: System info, Tips & Tricks, scharing project info

... options. Ok, the speed will process all data, but i wonder .... If I make a second solution for my other users (they just want info about a brand or so) Dbf = 10.000 records and I select a products brand, that will give me a result of 700 records. With the filter function I posted here, ...
by Marc Venken
Sun Jan 16, 2022 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: System info, Tips & Tricks, scharing project info
Replies: 20
Views: 1450

Re: System info, Tips & Tricks, scharing project info

... with speed and even freezing is this : I Use Xbrowse with many fields in the top (Barget function from Xbrowse). I fill data like : color : Red Brand : Nike sleeves : Short and hit the action button that calls : Marc_Setfilter() I know that Filters to work good should be optimised (from posts), ...
by Marc Venken
Sat Jan 15, 2022 4:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: System info, Tips & Tricks, scharing project info
Replies: 20
Views: 1450

Re: Problem with tdatabase

You need to use relational databases like this:

ITEMS.DBF
ITEMID <---primary key (auto incrementing)
DESCRIPTION
CATAGORYID
BRANDID

CATAGORY.DBF
CATAGORYID <--- primary key (auto incrementing)
CATAGORYNAME

BRAND.DBF
BRANDID <--- primary key (auto incrementing)
BRANDNAME
by James Bott
Sat Dec 18, 2021 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tdatabase
Replies: 14
Views: 1831

Re: Win10 IE problem?

Hello Richard, I tested with the attached code on my brand-new Surface. I have to check allow and then all is working. Interesting: I also tested with oIE := TActiveX():New( NIL, "Shell.Explorer.2",10,10,600,400 ) In this case, it seems that ...
by Otto
Fri Jul 30, 2021 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Win10 IE problem?
Replies: 9
Views: 985

Re: How to Curl for text messaging

Dear Reinaldo,
I'm brand new to WhatsApp. I only see that everyone here is using WhatsApp.
I thought it would be useful for our support, if I just have to say, take a picture of the screen. I then know exactly where the user is clicking, etc.

Best regards,
Otto
by Otto
Fri Jul 16, 2021 1:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to Curl for text messaging
Replies: 17
Views: 2241

Strange result with Xbrowse and oBrw:toexcel

... filter to nofoto->selected  oBrw:refresh()  oBrw:ToExcel( NIL,NIL, { oBrw:oCol( "Id" ), oBrw:oCol( "Brandid" ), oBrw:oCol( "Benaming" ) } )  //METHOD ToExcel( bProgress, nGroupBy, aCols, lShow, cPDF, bPrePDF ) CLASS ...
by Marc Venken
Tue Jul 06, 2021 9:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Strange result with Xbrowse and oBrw:toexcel
Replies: 2
Views: 351

Re: xImage - problem with < MOVE >

... overlay in one of the for corner's or 2 of them.. like you see here : https://www.maveco-webshop.be/outlet/bovenkleding/ I would also combine a brand label or a out of stock label .... You have a working option for this?
by Marc Venken
Sun Apr 04, 2021 4:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xImage - problem with < MOVE >
Replies: 5
Views: 965
Next

Return to advanced search